/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;
    --deep-blue: #0F2B46;
    --deep-blue-dark: #0a1f33;
    --teal: #0EA5E9;
    --teal-dark: #0284C7;
    --teal-light: #7dd3fc;
    --teal-50: #f0f9ff;
    --green: #10b981;
    --yellow: #f59e0b;
    --red: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.12);
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-blue);
}

.logo-icon {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--deep-blue);
}

.btn-nav {
    background: var(--deep-blue) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 14px !important;
}

.btn-nav:hover {
    background: var(--deep-blue-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-blue);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--deep-blue);
    border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* ===== Section Basics ===== */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 16px;
}

.section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 560px;
    margin-bottom: 48px;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.08);
    color: var(--teal-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--deep-blue);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.hero-card.card-1 {
    top: 20px;
    left: 20px;
    width: 260px;
    animation: float 6s ease-in-out infinite;
}

.hero-card.card-2 {
    top: 140px;
    right: 10px;
    width: 220px;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-card.card-3 {
    bottom: 20px;
    left: 60px;
    width: 200px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mini-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mini-bar.short {
    width: 60%;
}

.mini-bar.flex {
    flex: 1;
    margin-bottom: 0;
}

.card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.green { background: var(--green); }
.dot.yellow { background: var(--yellow); }
.dot.blue { background: var(--teal); }
.dot.teal { background: var(--teal); }

.card-header-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-header-mini .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

.progress-bar {
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 3px;
}

/* ===== Problem Section ===== */
.problem-section {
    background: var(--white);
}

.problem-section h2 {
    max-width: 500px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.problem-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.problem-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    color: var(--red);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.problem-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Solution Section ===== */
.solution-section {
    background: var(--off-white);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    margin-bottom: 20px;
}

.solution-text > p {
    font-size: 17px;
    color: var(--gray-400);
    margin-bottom: 12px;
    line-height: 1.7;
}

.solution-highlight {
    font-weight: 600;
    color: var(--teal-dark) !important;
    margin-bottom: 28px !important;
}

.solution-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
}

.solution-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 280px;
    box-shadow: var(--shadow-md);
}

.solution-card.accent {
    border-color: var(--teal);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.15);
}

.solution-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-blue);
}

.team-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
}

.avatar.accent-bg {
    background: rgba(14, 165, 233, 0.1);
    color: var(--teal-dark);
}

.connector-line {
    margin: -4px 0;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    color: var(--teal);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Process Section ===== */
.process-section {
    background: var(--deep-blue);
    color: var(--white);
}

.process-section .section-label {
    color: var(--teal-light);
}

.process-section h2 {
    color: var(--white);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2);
}

.process-connector {
    width: 100%;
    flex: 1;
    height: 2px;
    background: rgba(14, 165, 233, 0.3);
    margin-top: 24px;
}

.step-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== Impact Section ===== */
.impact-section {
    background: var(--off-white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.metric-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.metric-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===== Who Section ===== */
.who-section {
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.who-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.who-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.who-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    color: var(--teal);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.who-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.who-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonial-section {
    background: var(--off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 24px;
}

.testimonial-quote svg {
    position: absolute;
    top: -8px;
    left: -4px;
    color: var(--teal);
}

.testimonial-quote p {
    font-size: 17px;
    font-weight: 500;
    color: var(--deep-blue);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--deep-blue);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ===== Engagement Section ===== */
.engagement-section {
    background: var(--white);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.engagement-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 44px 36px 36px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engagement-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.engagement-card.featured {
    border-color: var(--teal);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.12);
    position: relative;
    padding: 43px 35px 35px;
}

.engagement-tier {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 14px;
}

.engagement-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 14px;
}

.engagement-card > p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 260px;
}

.engagement-card ul {
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
    width: 100%;
    padding: 0 4px;
}

.engagement-card ul li {
    font-size: 14px;
    color: var(--gray-500);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-50);
    display: flex;
    align-items: center;
    gap: 10px;
}

.engagement-card ul li:last-child {
    border-bottom: none;
}

.engagement-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.engagement-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--off-white);
}

.faq-section h2 {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-item.active {
    border-color: var(--teal);
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-blue);
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-300);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #0d2440 50%, var(--deep-blue-dark) 100%);
    padding: 100px 0;
}

.cta-wrapper {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--teal);
    color: var(--white);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-section .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .solution-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .solution-visual {
        order: -1;
    }

    .process-timeline {
        flex-direction: column;
        gap: 0;
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 20px;
        padding: 0;
        margin-bottom: 8px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .process-connector {
        width: 2px;
        height: 32px;
        margin-left: 23px;
        margin-bottom: 8px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section h2 {
        font-size: 30px;
    }

    .hero {
        padding: 120px 0 72px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid,
    .who-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
