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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #10b981;
--dark: #1e293b;
--text: #334155;
--light: #f1f5f9;
--white: #ffffff;
--border: #e2e8f0;
}

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

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

.header-unique {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.nav-menu a:hover {
opacity: 0.8;
}

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

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

.hero-modern {
position: relative;
background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
padding: 80px 0 60px;
overflow: hidden;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
}

.hero-content-wrapper {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.hero-text {
color: var(--white);
}

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

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

.hero-text p {
font-size: 17px;
opacity: 0.95;
margin-bottom: 30px;
line-height: 1.7;
}

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

.btn-primary {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 14px 30px;
text-decoration: none;
border-radius: 8px;
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 8px 20px rgba(0,0,0,0.2);
}

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

.btn-outline:hover {
background: rgba(255,255,255,0.1);
}

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

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

.stat-mini strong {
font-size: 24px;
font-weight: 700;
}

.stat-mini span {
font-size: 12px;
opacity: 0.8;
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

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

.page-hero p {
font-size: 17px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-label {
display: inline-block;
color: var(--primary);
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

section {
padding: 70px 0;
}

section h2 {
font-size: 32px;
color: var(--dark);
font-weight: 700;
margin-bottom: 15px;
}

.section-header p {
color: var(--text);
font-size: 16px;
max-width: 700px;
margin: 0 auto;
}

.btn-secondary {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 11px 26px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
border: none;
cursor: pointer;
}

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

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

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

.services-overview {
background: var(--light);
}

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

.service-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
border-top: 4px solid var(--primary);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card.card-blue {
border-top-color: var(--primary);
}

.service-card.card-purple {
border-top-color: var(--secondary);
}

.service-card.card-green {
border-top-color: var(--accent);
}

.service-card.card-orange {
border-top-color: #f59e0b;
}

.service-icon {
font-size: 36px;
margin-bottom: 15px;
}

.service-card h3 {
font-size: 21px;
margin-bottom: 15px;
color: var(--dark);
}

.service-card p {
color: var(--text);
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

.why-choose {
padding: 70px 0;
}

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

.why-text h2 {
text-align: left;
margin-bottom: 20px;
}

.why-text > p {
color: var(--text);
margin-bottom: 30px;
line-height: 1.7;
}

.features-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.feature-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-icon {
width: 28px;
height: 28px;
background: var(--accent);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
font-size: 14px;
}

.feature-item h3 {
font-size: 18px;
margin-bottom: 5px;
color: var(--dark);
}

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

.why-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.client-success {
background: var(--light);
}

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

.success-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.success-quote {
font-size: 15px;
line-height: 1.7;
color: var(--text);
margin-bottom: 20px;
font-style: italic;
}

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

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

.technology-stack {
padding: 70px 0;
}

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

.tech-category {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.tech-category h3 {
font-size: 19px;
color: var(--dark);
margin-bottom: 20px;
}

.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.tech-tags span {
background: var(--white);
color: var(--text);
padding: 8px 16px;
border-radius: 6px;
font-size: 13px;
font-weight: 500;
border: 1px solid var(--border);
}

.process {
background: var(--light);
}

.process-timeline {
display: flex;
flex-direction: column;
gap: 30px;
max-width: 900px;
margin: 0 auto;
}

.process-step {
display: flex;
gap: 25px;
align-items: flex-start;
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
flex-shrink: 0;
}

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

.step-content p {
color: var(--text);
font-size: 14px;
line-height: 1.7;
}

.industries {
padding: 70px 0;
}

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

.industry-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
border: 2px solid var(--border);
transition: border-color 0.3s, transform 0.3s;
}

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

.industry-card h4 {
font-size: 18px;
color: var(--dark);
margin-bottom: 10px;
}

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

.stats-modern {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: 70px 0;
}

.stats-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 50px;
align-items: center;
}

.stats-text h2 {
color: var(--white);
text-align: left;
margin-bottom: 15px;
}

.stats-text p {
opacity: 0.95;
line-height: 1.7;
}

.stats-grid-modern {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

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

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

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

.final-cta {
background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
color: var(--white);
padding: 70px 0;
}

.cta-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
}

.cta-text h2 {
color: var(--white);
font-size: 34px;
margin-bottom: 15px;
text-align: left;
}

.cta-text p {
font-size: 16px;
opacity: 0.95;
line-height: 1.7;
}

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

.cta-note {
margin-top: 15px;
font-size: 13px;
opacity: 0.8;
}

.service-intro {
padding: 70px 0;
}

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

.intro-text h2 {
text-align: left;
margin-bottom: 20px;
}

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

.intro-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-details {
background: var(--light);
}

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

.detail-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.detail-card:hover {
transform: translateY(-3px);
}

.detail-icon {
font-size: 32px;
margin-bottom: 15px;
}

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

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

.pricing-section {
padding: 70px 0;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}

.pricing-card {
background: var(--white);
padding: 0;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border: 2px solid var(--border);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}

.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pricing-card.featured {
border-color: var(--primary);
transform: scale(1.05);
}

.plan-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: var(--white);
padding: 5px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.plan-header {
background: var(--light);
padding: 30px;
text-align: center;
}

.plan-header h3 {
font-size: 24px;
color: var(--dark);
margin-bottom: 8px;
}

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

.price {
text-align: center;
padding: 25px 30px;
font-size: 48px;
font-weight: 700;
color: var(--primary);
}

.price span {
font-size: 16px;
font-weight: 400;
color: var(--text);
}

.pricing-card ul {
list-style: none;
padding: 0 30px 30px;
}

.pricing-card li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
color: var(--text);
}

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

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
margin: 0 30px 30px;
width: calc(100% - 60px);
text-align: center;
}

.benefits {
padding: 70px 0;
background: var(--light);
}

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

.benefit-item {
background: var(--white);
padding: 30px;
border-radius: 12px;
}

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

.benefit-item p {
color: var(--text);
font-size: 14px;
line-height: 1.7;
}

.support-details {
background: var(--light);
}

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

.support-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.support-icon {
font-size: 32px;
margin-bottom: 15px;
}

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

.support-card p {
color: var(--text);
font-size: 14px;
line-height: 1.7;
}

.support-coverage {
padding: 70px 0;
}

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

.coverage-category {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.coverage-category h3 {
font-size: 18px;
color: var(--dark);
margin-bottom: 15px;
}

.coverage-category ul {
list-style: none;
}

.coverage-category li {
padding: 8px 0;
font-size: 14px;
color: var(--text);
position: relative;
padding-left: 20px;
}

.coverage-category li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
}

.support-process {
background: var(--light);
padding: 70px 0;
}

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

.step-horizontal {
background: var(--white);
padding: 30px;
border-radius: 12px;
text-align: center;
}

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

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

.step-horizontal p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.contact-section {
padding: 70px 0;
}

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

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

.contact-info > p {
color: var(--text);
margin-bottom: 30px;
font-size: 15px;
line-height: 1.7;
}

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

.info-item h3 {
font-size: 16px;
margin-bottom: 8px;
color: var(--dark);
font-weight: 600;
}

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

.hours-note {
font-size: 13px;
color: var(--primary);
margin-top: 8px;
font-weight: 500;
}

.contact-form-wrapper {
background: var(--light);
padding: 35px;
border-radius: 12px;
}

.contact-form-wrapper h2 {
font-size: 26px;
margin-bottom: 25px;
text-align: left;
color: var(--dark);
}

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

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

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

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

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-weight: 400;
}

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

.checkbox-label span {
font-size: 13px;
color: var(--text);
}

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

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-content h1 {
font-size: 44px;
margin-bottom: 20px;
font-weight: 700;
}

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

.error-content h2 {
font-size: 30px;
margin-bottom: 15px;
color: var(--white);
}

.thankyou-content p,
.error-content p {
font-size: 17px;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

.policy-page {
padding: 70px 0;
}

.policy-page h1 {
font-size: 36px;
margin-bottom: 12px;
color: var(--dark);
}

.update-date {
color: var(--text);
font-size: 13px;
margin-bottom: 35px;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h2 {
font-size: 26px;
margin-top: 40px;
margin-bottom: 18px;
color: var(--dark);
text-align: left;
}

.policy-content h3 {
font-size: 20px;
margin-top: 28px;
margin-bottom: 14px;
color: var(--dark);
}

.policy-content p {
color: var(--text);
margin-bottom: 16px;
font-size: 14px;
line-height: 1.8;
text-align: left;
}

footer {
background: var(--dark);
color: var(--white);
padding: 50px 0 25px;
}

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

.footer-col h4 {
font-size: 17px;
margin-bottom: 18px;
font-weight: 600;
}

.footer-col p {
font-size: 13px;
color: rgba(255,255,255,0.8);
line-height: 1.7;
margin-bottom: 10px;
}

.footer-col a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 13px;
margin-bottom: 10px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--white);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 25px;
text-align: center;
}

.footer-bottom p {
font-size: 13px;
color: rgba(255,255,255,0.7);
}

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

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

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

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

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

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

@media (max-width: 968px) {
.hero-content-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text h1 {
font-size: 36px;
}

.why-content,
.intro-content,
.stats-content,
.cta-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

.pricing-card.featured {
transform: scale(1);
}
}

@media (max-width: 768px) {
.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--secondary);
flex-direction: column;
padding: 20px;
gap: 15px;
display: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-menu.active {
display: flex;
}

.menu-toggle {
display: flex;
}

.hero-modern {
padding: 50px 0 40px;
}

.hero-text h1 {
font-size: 30px;
}

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

.hero-buttons {
flex-direction: column;
}

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

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

section {
padding: 50px 0;
}

section h2 {
font-size: 26px;
}

.services-grid,
.details-grid,
.benefits-grid,
.support-grid,
.coverage-grid,
.process-steps-horizontal {
grid-template-columns: 1fr;
}

.stats-grid-modern {
grid-template-columns: 1fr;
gap: 20px;
}

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

.thankyou-content h1 {
font-size: 34px;
}

.error-content h1 {
font-size: 70px;
}

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

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

.hero-modern {
padding: 40px 0 30px;
}

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

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

.btn-primary,
.btn-outline {
padding: 12px 24px;
font-size: 13px;
width: 100%;
}

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

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

section {
padding: 40px 0;
}

section h2 {
font-size: 24px;
}

.service-card,
.detail-card,
.support-card,
.benefit-item {
padding: 25px;
}

.contact-form-wrapper {
padding: 25px;
}

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

.stat-modern .stat-number {
font-size: 36px;
}

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

.btn-primary-large {
padding: 14px 30px;
font-size: 15px;
width: 100%;
}
}

@media (min-width: 320px) and (max-width: 480px) {
body {
font-size: 14px;
}

.logo {
font-size: 18px;
}

.hero-text h1 {
font-size: 24px;
}

.service-icon,
.detail-icon,
.support-icon {
font-size: 28px;
}

.process-step {
flex-direction: column;
text-align: center;
}

.step-number {
margin: 0 auto 15px;
}
}