* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #0052cc;
--secondary-color: #0747a6;
--accent-color: #00b8d9;
--success-color: #36b37e;
--text-dark: #172b4d;
--text-light: #5e6c84;
--bg-light: #f4f5f7;
--bg-white: #ffffff;
--border-color: #dfe1e6;
--shadow: 0 2px 8px rgba(0,0,0,0.1);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-dark);
font-size: 15px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 15px 0;
position: relative;
box-shadow: var(--shadow);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 20px;
font-weight: 700;
color: var(--bg-white);
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
color: var(--bg-white);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: opacity 0.3s;
}

.nav a:hover {
opacity: 0.8;
}

.nav-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.nav-toggle span {
width: 22px;
height: 2px;
background: var(--bg-white);
margin: 3px 0;
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
color: var(--bg-white);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.hero-grid {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-content {
z-index: 2;
}

.hero-badge {
background: rgba(255,255,255,0.2);
color: var(--bg-white);
padding: 8px 18px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
display: inline-block;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero h1 {
font-size: 42px;
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.hero p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--bg-white);
padding: 12px 28px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: 2px solid var(--bg-white);
}

.btn-outline:hover {
background: var(--bg-white);
color: var(--primary-color);
}

.hero-stats {
display: flex;
gap: 30px;
flex-wrap: wrap;
}

.hero-stat {
display: flex;
flex-direction: column;
}

.stat-value {
font-size: 28px;
font-weight: 700;
margin-bottom: 5px;
}

.stat-text {
font-size: 13px;
opacity: 0.9;
}

.hero-visual {
position: relative;
height: 400px;
}

.hero-card {
position: absolute;
background: var(--bg-white);
color: var(--text-dark);
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow-lg);
animation: float 6s ease-in-out infinite;
}

.hero-card.card-1 {
top: 0;
left: 0;
animation-delay: 0s;
}

.hero-card.card-2 {
top: 120px;
right: 40px;
animation-delay: 2s;
}

.hero-card.card-3 {
bottom: 40px;
left: 60px;
animation-delay: 4s;
}

.card-icon {
font-size: 32px;
margin-bottom: 10px;
}

.card-text {
font-size: 14px;
font-weight: 600;
color: var(--text-dark);
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

.page-hero {
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
color: var(--bg-white);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-size: 32px;
margin-bottom: 12px;
font-weight: 700;
}

.page-hero p {
font-size: 17px;
opacity: 0.95;
}

.btn-primary {
display: inline-block;
background: var(--bg-white);
color: var(--primary-color);
padding: 12px 28px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
display: inline-block;
background: var(--primary-color);
color: var(--bg-white);
padding: 10px 22px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
}

.btn-secondary:hover {
background: var(--secondary-color);
}

.services {
padding: 50px 0;
background: var(--bg-white);
}

.services h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.service-card {
background: var(--bg-light);
padding: 28px;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.service-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.service-card p {
color: var(--text-light);
margin-bottom: 15px;
font-size: 14px;
}

.about {
padding: 50px 0;
background: var(--bg-light);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.about-text h2 {
font-size: 28px;
margin-bottom: 18px;
color: var(--text-dark);
}

.about-text p {
color: var(--text-light);
margin-bottom: 15px;
font-size: 15px;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: var(--shadow);
}

.features {
padding: 50px 0;
background: var(--bg-white);
}

.features h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

.feature-item {
text-align: center;
padding: 25px;
}

.feature-item h3 {
font-size: 19px;
margin-bottom: 10px;
color: var(--primary-color);
}

.feature-item p {
color: var(--text-light);
font-size: 14px;
}

.products {
padding: 50px 0;
background: var(--bg-light);
}

.products h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.product-card {
background: var(--bg-white);
padding: 30px;
border-radius: 8px;
text-align: center;
border: 2px solid var(--border-color);
transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
border-color: var(--primary-color);
}

.product-card.featured {
border-color: var(--primary-color);
position: relative;
}

.product-card h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--text-dark);
}

.product-card p {
color: var(--text-light);
margin-bottom: 18px;
font-size: 14px;
}

.product-card ul {
list-style: none;
margin-bottom: 20px;
text-align: left;
}

.product-card ul li {
padding: 8px 0;
color: var(--text-light);
font-size: 14px;
border-bottom: 1px solid var(--border-color);
}

.product-card ul li:last-child {
border-bottom: none;
}

.price {
font-size: 28px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}

.technologies {
padding: 50px 0;
background: var(--bg-white);
text-align: center;
}

.technologies h2 {
font-size: 30px;
margin-bottom: 15px;
color: var(--text-dark);
}

.technologies p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.tech-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.tech-list span {
background: var(--bg-light);
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
}

.stats {
padding: 50px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 38px;
font-weight: 700;
margin-bottom: 8px;
}

.stat-label {
font-size: 15px;
opacity: 0.9;
}

.testimonials {
padding: 60px 0;
background: var(--bg-light);
}

.testimonials h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: var(--text-dark);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--bg-white);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
color: var(--text-dark);
font-size: 15px;
display: block;
margin-bottom: 5px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.industry-solutions {
padding: 60px 0;
background: var(--bg-white);
}

.industry-solutions h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: var(--text-dark);
}

.industry-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.industry-card {
background: var(--bg-light);
padding: 30px;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.industry-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.industry-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}

.process-overview {
padding: 60px 0;
background: var(--bg-light);
}

.process-overview h2 {
text-align: center;
font-size: 32px;
margin-bottom: 50px;
color: var(--text-dark);
}

.timeline {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.timeline:before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 3px;
background: var(--accent-color);
}

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.timeline-marker {
width: 60px;
height: 60px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
flex-shrink: 0;
box-shadow: 0 0 0 6px var(--bg-light);
z-index: 2;
}

.timeline-content {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
box-shadow: var(--shadow);
flex: 1;
}

.timeline-content h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--text-dark);
}

.timeline-content p {
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}

.cta-modern {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--bg-white);
}

.cta-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.cta-text {
flex: 1;
min-width: 300px;
}

.cta-text h2 {
font-size: 32px;
margin-bottom: 12px;
color: var(--bg-white);
}

.cta-text p {
font-size: 17px;
opacity: 0.95;
}

.cta-action {
text-align: center;
}

.btn-primary-large {
display: inline-block;
background: var(--bg-white);
color: var(--primary-color);
padding: 16px 40px;
text-decoration: none;
border-radius: 6px;
font-weight: 700;
font-size: 16px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary-large:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.cta-note {
font-size: 13px;
margin-top: 12px;
opacity: 0.9;
}

.footer {
background: var(--text-dark);
color: var(--bg-white);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 17px;
margin-bottom: 15px;
color: var(--bg-white);
}

.footer-col p {
font-size: 13px;
color: #ccc;
margin-bottom: 8px;
line-height: 1.6;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col ul li a {
color: #ccc;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-col ul li a:hover {
color: var(--accent-color);
}

.footer-bottom {
border-top: 1px solid #444;
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
color: #ccc;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: #ccc;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--accent-color);
}

.content-section {
padding: 50px 0;
background: var(--bg-white);
}

.content-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.content-text h2 {
font-size: 28px;
margin-bottom: 18px;
color: var(--text-dark);
}

.content-text p {
color: var(--text-light);
margin-bottom: 15px;
font-size: 15px;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: var(--shadow);
}

.services-detail {
padding: 50px 0;
background: var(--bg-light);
}

.services-detail h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.detail-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.detail-card {
background: var(--bg-white);
padding: 25px;
border-radius: 8px;
box-shadow: var(--shadow);
}

.detail-card h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--primary-color);
}

.detail-card p {
color: var(--text-light);
font-size: 14px;
}

.benefits {
padding: 50px 0;
background: var(--bg-white);
}

.benefits h2 {
text-align: center;
font-size: 30px;
margin-bottom: 30px;
color: var(--text-dark);
}

.benefits-list {
max-width: 800px;
margin: 0 auto;
list-style: none;
}

.benefits-list li {
padding: 12px 0 12px 30px;
color: var(--text-light);
font-size: 15px;
position: relative;
}

.benefits-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--success-color);
font-weight: 700;
font-size: 18px;
}

.process {
padding: 50px 0;
background: var(--bg-light);
}

.process h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
}

.step {
text-align: center;
padding: 20px;
}

.step-number {
width: 50px;
height: 50px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
font-weight: 700;
margin: 0 auto 15px;
}

.step h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--text-dark);
}

.step p {
color: var(--text-light);
font-size: 14px;
}

.features-detail {
padding: 50px 0;
background: var(--bg-white);
}

.features-detail h2 {
text-align: center;
font-size: 30px;
margin-bottom: 35px;
color: var(--text-dark);
}

.features-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.feature-column h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.feature-column p {
color: var(--text-light);
font-size: 15px;
}

.recovery-plans {
padding: 50px 0;
background: var(--bg-light);
}

.recovery-plans h2 {
text-align: center;
font-size: 30px;
margin-bottom: 15px;
color: var(--text-dark);
}

.recovery-plans > p {
text-align: center;
color: var(--text-light);
margin-bottom: 35px;
font-size: 15px;
}

.plan-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

.plan-item {
background: var(--bg-white);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.plan-item h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--primary-color);
}

.plan-item p {
color: var(--text-light);
font-size: 14px;
}

.contact-section {
padding: 50px 0;
background: var(--bg-white);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.contact-info h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--text-dark);
}

.contact-info > p {
color: var(--text-light);
margin-bottom: 25px;
font-size: 15px;
}

.info-item {
margin-bottom: 20px;
}

.info-item h3 {
font-size: 17px;
margin-bottom: 8px;
color: var(--primary-color);
}

.info-item p {
color: var(--text-light);
font-size: 14px;
}

.contact-form-wrapper h2 {
font-size: 28px;
margin-bottom: 20px;
color: var(--text-dark);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 18px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 6px;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 5px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 8px;
cursor: pointer;
font-size: 13px;
color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.map-section {
padding: 50px 0;
background: var(--bg-light);
}

.map-section h2 {
text-align: center;
font-size: 30px;
margin-bottom: 30px;
color: var(--text-dark);
}

.map-wrapper {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.policy-page {
padding: 50px 0;
background: var(--bg-white);
}

.policy-page h1 {
font-size: 34px;
margin-bottom: 10px;
color: var(--text-dark);
}

.policy-date {
color: var(--text-light);
font-size: 14px;
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 24px;
margin-top: 30px;
margin-bottom: 15px;
color: var(--text-dark);
}

.policy-content h3 {
font-size: 19px;
margin-top: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.policy-content p {
color: var(--text-light);
margin-bottom: 15px;
font-size: 15px;
line-height: 1.7;
}

.policy-content ul {
margin-bottom: 15px;
padding-left: 25px;
}

.policy-content ul li {
color: var(--text-light);
margin-bottom: 8px;
font-size: 14px;
line-height: 1.6;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
padding: 20px;
}

.thankyou-content,
.error-content {
text-align: center;
color: var(--bg-white);
max-width: 600px;
}

.thankyou-icon {
font-size: 70px;
margin-bottom: 20px;
background: var(--bg-white);
color: var(--success-color);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
margin-right: auto;
}

.thankyou-content h1,
.error-content h2 {
font-size: 32px;
margin-bottom: 15px;
}

.thankyou-content p,
.error-content p {
font-size: 17px;
margin-bottom: 25px;
opacity: 0.95;
}

.error-code {
font-size: 90px;
font-weight: 700;
margin-bottom: 15px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 18px;
z-index: 1000;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
font-size: 13px;
margin: 0;
flex: 1;
min-width: 250px;
}

.btn-accept {
background: var(--primary-color);
color: var(--bg-white);
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

.btn-accept:hover {
background: var(--secondary-color);
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 0;
right: -100%;
width: 250px;
height: 100vh;
background: var(--secondary-color);
flex-direction: column;
padding: 80px 30px 30px;
transition: right 0.3s;
z-index: 999;
gap: 15px;
}

.nav.active {
right: 0;
}

.nav-toggle {
display: flex;
z-index: 1000;
}

.hero {
padding: 50px 0;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero h1 {
font-size: 32px;
}

.hero p {
font-size: 16px;
}

.hero-visual {
height: 300px;
}

.page-hero h1 {
font-size: 26px;
}

.page-hero p {
font-size: 15px;
}

.services h2,
.features h2,
.products h2,
.technologies h2,
.testimonials h2,
.industry-solutions h2,
.process-overview h2 {
font-size: 26px;
}

.about-content,
.content-layout,
.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.about-text h2,
.content-text h2,
.contact-info h2,
.contact-form-wrapper h2 {
font-size: 24px;
}

.services-grid,
.products-grid,
.detail-grid {
grid-template-columns: 1fr;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.stat-number {
font-size: 32px;
}

.testimonial-grid,
.industry-grid {
grid-template-columns: 1fr;
}

.timeline:before {
left: 20px;
}

.timeline-marker {
width: 40px;
height: 40px;
font-size: 18px;
}

.cta-modern {
padding: 40px 0;
}

.cta-content {
flex-direction: column;
text-align: center;
}

.cta-text h2 {
font-size: 26px;
}

.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

.process-steps {
grid-template-columns: 1fr;
}

.policy-page h1 {
font-size: 28px;
}

.policy-content h2 {
font-size: 20px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 26px;
}

.error-code {
font-size: 70px;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

.logo {
font-size: 17px;
}

.hero {
padding: 40px 0;
}

.hero h1 {
font-size: 26px;
}

.hero p {
font-size: 15px;
}

.hero-badge {
font-size: 12px;
padding: 6px 14px;
}

.hero-stats {
gap: 20px;
}

.stat-value {
font-size: 24px;
}

.stat-text {
font-size: 12px;
}

.hero-visual {
height: 250px;
}

.hero-card {
padding: 18px;
}

.card-icon {
font-size: 24px;
}

.card-text {
font-size: 12px;
}

.page-hero {
padding: 35px 0;
}

.page-hero h1 {
font-size: 22px;
}

.services,
.about,
.features,
.products,
.technologies,
.stats,
.content-section,
.services-detail,
.benefits,
.process,
.features-detail,
.recovery-plans,
.contact-section,
.map-section,
.policy-page,
.testimonials,
.industry-solutions,
.process-overview,
.cta-modern {
padding: 35px 0;
}

.services h2,
.features h2,
.products h2,
.technologies h2,
.services-detail h2,
.benefits h2,
.process h2,
.features-detail h2,
.recovery-plans h2,
.map-section h2,
.testimonials h2,
.industry-solutions h2,
.process-overview h2 {
font-size: 22px;
margin-bottom: 25px;
}

.service-card,
.detail-card,
.product-card,
.testimonial-card,
.industry-card {
padding: 20px;
}

.service-card h3,
.detail-card h3,
.feature-item h3 {
font-size: 18px;
}

.btn-primary {
padding: 10px 22px;
font-size: 13px;
}

.btn-secondary {
padding: 9px 18px;
font-size: 12px;
}

.btn-primary-large {
padding: 14px 32px;
font-size: 15px;
}

.btn-outline {
padding: 10px 22px;
font-size: 13px;
}

.stats-grid {
grid-template-columns: 1fr;
}

.tech-list {
gap: 10px;
}

.tech-list span {
padding: 8px 15px;
font-size: 13px;
}

.timeline-marker {
width: 35px;
height: 35px;
font-size: 16px;
}

.timeline-content {
padding: 18px;
}

.cta-text h2 {
font-size: 22px;
}

.cta-text p {
font-size: 15px;
}

.thankyou-icon {
font-size: 60px;
width: 85px;
height: 85px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 22px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
}

.error-code {
font-size: 60px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.policy-page h1 {
font-size: 24px;
}

.policy-content h2 {
font-size: 18px;
}

.policy-content h3 {
font-size: 17px;
}
}

@media (max-width: 360px) {
.logo {
font-size: 15px;
}

.hero h1 {
font-size: 23px;
}

.page-hero h1 {
font-size: 20px;
}

.services h2,
.features h2,
.products h2 {
font-size: 20px;
}

body {
font-size: 14px;
}

.btn-primary,
.btn-outline {
padding: 9px 18px;
font-size: 12px;
}

.btn-primary-large {
padding: 12px 28px;
font-size: 14px;
}
}

@media (max-width: 320px) {
.hero h1 {
font-size: 21px;
}

.hero p {
font-size: 14px;
}

.services h2,
.features h2 {
font-size: 19px;
}

.service-card,
.detail-card,
.product-card {
padding: 18px;
}

.cta-text h2 {
font-size: 20px;
}
}
