/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6A86EA;
    --primary-hover: #4F6FE6;
    --primary-active: #3158E2;
    --secondary-color: #9095A0;
    --secondary-hover: #EAECEF;
    --secondary-active: #DEE1E6;
    --text-dark: #323842;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 12px -2px rgba(0, 0, 0, 0.1);
    --btn-gradient-bg: linear-gradient(135deg,#3b82f6,#1d4ed8 25%,#7c3aed 75%,#8b5cf6);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.highlight-text {
    background:  linear-gradient(135deg,#3b82f6,#8b5cf6,#ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bold-text{ 
    font-weight: bold;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  font-size: clamp(28px, 2vw + 20px, 40px); /* 28px -> 40px */
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw + 1rem, 4rem); /* 24px -> 64px */
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: clamp(0.8rem, 1vw + 0.5rem, 1.2rem) 0; /* 12.8px -> 19.2px */
}

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

.logo h2 {
    color: var(--primary-color);
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem); /* 19.2px -> 24px */
    font-weight: 700;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.6rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Buttons */
a {
    text-decoration: none;
}

.btn {
    padding: 0 clamp(16px, 2vw + 8px, 24px);
    height: clamp(32px, 2vw + 24px, 36px);
    min-width: clamp(100px, 15vw + 60px, 120px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(13px, 0.5vw + 11px, 15px); /* 13px -> 15px */
    line-height: 1.4;
    font-weight: 500;
    border: none;
    border-radius: clamp(16px, 1vw + 12px, 18px);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    opacity: 1;
    margin: 0;
}

.btn-gradient {
    color: var(--white);
    background: var(--btn-gradient-bg);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    font-weight: 600;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

.btn-primary:active {
    background: var(--primary-active);
}

.btn-gradient:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

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

.btn-secondary:active {
    background: var(--primary-hover);
    color: var(--white);
    border-color: var(--primary-hover);
}

.btn-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: transparent;
    /* background: #F2F4FD; */
    padding: clamp(3rem, 6vw + 2rem, 6rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    /* Fluid font size: min 36px, preferred based on viewport, max 72px */
    font-size: clamp(2.25rem, 1rem + 2.5vw, 4.5rem); /* 36px -> 72px */
    /* Fluid line height to match font size scaling */
    line-height: clamp(3.15rem, 1.5rem + 3.25vw, 6.3rem); /* 50.4px -> 100.8px (1.4x font size) */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.125rem, 0.9rem + 0.7vw, 1.375rem); /* 18px -> 22px */
    line-height: clamp(1.5rem, 1.2rem + 0.9vw, 1.8125rem); /* 24px -> 29px */
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 0.75rem + 0.35vw, 1.125rem); /* 14px -> 18px */
    line-height: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem); /* 22.4px -> 28.8px (1.6x font size) */
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.6rem;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.75rem, 1vw + 0.5rem, 1.25rem); /* 12px -> 20px */
}

.placeholder-image {
    background: rgba(255, 255, 255, 0.5);
    border-radius: clamp(10px, 1vw + 6px, 16px); /* 10px -> 16px */
    padding: clamp(2rem, 3vw + 1.5rem, 4rem) clamp(1.5rem, 2vw + 1rem, 2.5rem); /* Vertical: 32px -> 64px, Horizontal: 24px -> 40px */
    text-align: center;
    border: 2px dashed rgba(106, 134, 234, 0.3);
    font-size: 1.6rem;
    color: var(--text-dark);
}

.hero-app-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: clamp(4rem, 8vw + 2rem, 8rem) 0; /* 64px -> 128px */
}

.section-header {
    margin-bottom: clamp(2rem, 2vw + 1.5rem, 3rem); /* 32px -> 48px */
}

.section-title {
    font-size: clamp(1.6rem, 0.7rem + 2.2vw, 2.75rem); /* 25.6px -> 44px */
    line-height: clamp(2rem, 1rem + 2.5vw, 3.3rem); /* 32px -> 52.8px (1.2x) */
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: left;
    color: var(--text-light);
    font-size: clamp(0.875rem, 0.75rem + 0.3vw, 1rem); /* 14px -> 16px */
    line-height: 1.6;
}

/* Features Section */
.features {
    /* background: var(--bg-light); */
}

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

.feature-card {
    background: var(--white);
    padding: clamp(1.5rem, 2vw + 1rem, 2.5rem); /* 24px -> 40px */
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #6A86EA, #4F6FE6);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #48D4B6, #3AB89E);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #6AD291, #52B877);
}

.feature-card:nth-child(1):hover {
    box-shadow: 0 12px 24px rgba(106, 134, 234, 0.2);
}

.feature-card:nth-child(2):hover {
    box-shadow: 0 12px 24px rgba(72, 212, 182, 0.2);
}

.feature-card:nth-child(3):hover {
    box-shadow: 0 12px 24px rgba(106, 210, 145, 0.2);
}

.feature-icon {
    margin-bottom: clamp(1rem, 0.5vw + 0.75rem, 1.5rem); /* 16px -> 24px */
    width: clamp(3.5rem, 2vw + 2.5rem, 4.5rem); /* 56px -> 72px */
    height: clamp(3.5rem, 2vw + 2.5rem, 4.5rem); /* 56px -> 72px */
    border-radius: 50%;
    box-shadow: 0px 6px 12px rgba(23, 26, 31, 0.12), 0px 2px 4px rgba(23, 26, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0px 8px 16px rgba(23, 26, 31, 0.16), 0px 4px 6px rgba(23, 26, 31, 0.1);
}

.divider {
    border-radius: 5px;
    width: 100%;
    height: clamp(0.2rem, 0.15vw + 0.15rem, 0.25rem); /* 3.2px -> 4px */
    margin: clamp(0.75rem, 0.5vw + 0.5rem, 1rem) 0 clamp(1.25rem, 1vw + 0.75rem, 1.75rem); /* 12px -> 16px (top), 20px -> 28px (bottom) */
    opacity: 0.8;
}

#track-icon-container, #track-icon-container-divider {
     background: linear-gradient(135deg, #6A86EA, #4F6FE6);
}

#split-icon-container, #split-icon-container-divider {
     background: linear-gradient(135deg, #48D4B6, #3AB89E);
}

#learn-icon-container, #learn-icon-container-divider {
     background: linear-gradient(135deg, #6AD291, #52B877);
}

.feature-card h3 {
    margin-bottom: clamp(0.75rem, 0.5vw + 0.5rem, 1rem); /* 12px -> 16px */
    color: var(--text-dark);
    font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem); /* 18.4px -> 21.6px */
    font-weight: 700;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px */
    line-height: 1.7;
}

.feature-points {
    list-style: none;
    padding-left: 0;
    color: var(--text-light);
}

.feature-points li {
    position: relative;
    padding-left: 1.75em;
    margin-bottom: 1em;
    line-height: 1.7;
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px - matches paragraph */
}

.feature-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.25em;
    height: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85em;
}

.feature-card:nth-child(1) .feature-points li::before {
    color: #6A86EA;
}

.feature-card:nth-child(2) .feature-points li::before {
    color: #48D4B6;
}

.feature-card:nth-child(3) .feature-points li::before {
    color: #6AD291;
}

/* AI Copilot Section */
.copilot {
    background: var(--white);
}

.copilot .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 2vw + 1rem, 3rem); /* 24px -> 48px - only between image and cards */
    row-gap: 0; /* No gap between rows */
    align-items: center;
}

.copilot .section-header {
    grid-column: 1 / -1;
    margin-bottom: clamp(1.5rem, 1vw + 1rem, 2rem); /* 24px -> 32px - reduced gap to content */
}

.copilot .section-title {
    text-align: left;
}

.copilot .copilot-features {
    order: 1;
}

.copilot .copilot-image {
    order: 2;
}

.copilot-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 1.5vw + 0.75rem, 2rem); /* 19.2px -> 32px */
}

.copilot-card {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.8rem, 1vw + 0.5rem, 1.25rem); /* 12.8px -> 20px */
    background: var(--bg-light);
    padding: clamp(1.2rem, 1.5vw + 0.75rem, 1.75rem); /* 19.2px -> 28px */
    border-radius: clamp(8px, 1vw + 4px, 12px); /* 8px -> 12px */
    transition: transform 0.3s, box-shadow 0.3s;
}

.copilot-icon {
    font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); /* 24px -> 32px */
    /* Vertically align the icon with the heading text */
    margin-top: 0.1em;
}

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

.copilot-card h3 {
    margin-bottom: clamp(0.5rem, 0.5vw + 0.25rem, 0.75rem); /* 8px -> 12px */
    color: var(--text-dark);
    font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem); /* 16px -> 18px */
    font-weight: 600;
    line-height: 1.4;
}

.copilot-card p {
    color: var(--text-light);
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px */
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    /* background: var(--bg-light); */
}

.faq .section-title {
    text-align: center;
}

.faq .section-subtitle {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 0.8rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: clamp(1rem, 1vw + 0.75rem, 1.5rem); /* 16px -> 24px */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.1rem); /* 15.2px -> 17.6px */
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 clamp(1rem, 1vw + 0.75rem, 1.5rem) clamp(1rem, 1vw + 0.75rem, 1.5rem); /* 16px -> 24px */
}

.faq-answer p {
    color: var(--text-light);
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px */
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: clamp(3rem, 6vw + 2rem, 6rem) 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.5rem, 1rem + 1.25vw, 2.25rem); /* 24px -> 36px */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.125rem); /* 15.2px -> 18px */
    line-height: 1.5;
    margin-bottom: 1.6rem;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    gap: clamp(0.6rem, 1.5vw + 0.3rem, 0.8rem); /* 9.6px -> 12.8px */
    justify-content: center;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.cta-email-input {
    flex: 1;
    min-width: 0;
    height: auto; /* Allow height to be determined by padding */
    padding: 16px clamp(12px, 2vw + 8px, 16px); /* Vertical + horizontal padding */
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1; /* Match button line-height for consistent height */
    border: none;
    border-radius: clamp(20px, 3vw + 16px, 24px); /* 20px -> 24px */
    background: var(--white);
    color: var(--text-dark);
    outline: none;
}

.cta-email-input::placeholder {
    color: #9095A0;
}

.cta-email-input:focus {
    box-shadow: 0 0 0 3px rgba(106, 134, 234, 0.3);
}

.btn-large {
    padding: 0 clamp(24px, 3vw + 12px, 32px);
    height: 48px; /* Fixed height to match email input */
    min-width: clamp(140px, 20vw + 80px, 180px);
    font-size: clamp(14px, 0.5vw + 12px, 16px); /* 14px -> 16px */
    line-height: 1; /* Override base .btn line-height to prevent extra height */
    border-radius: clamp(22px, 1.5vw + 18px, 24px);
    white-space: nowrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: clamp(2.5rem, 4vw + 1rem, 4rem) 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-section h3 {
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem); /* 19.2px -> 24px */
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-section h4 {
    font-size: clamp(1rem, 0.9rem + 0.25vw, 1.15rem); /* 16px -> 18.4px */
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px */
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
    font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem); /* 14px -> 16px */
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.8rem, 0.75rem + 0.15vw, 0.875rem); /* 12.8px -> 14px */
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .nav-wrapper {
        justify-content: center;
    }

    .nav-wrapper .cta-button {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-email-input {
        width: 100%;
        padding: 16px clamp(12px, 2vw + 8px, 16px); /* Match button visual height */
        font-size: 16px;
        line-height: 1; /* Ensure consistent height on mobile */
    }

    .cta-form .btn-large {
        width: 100%;
        height: 48px;
        line-height: 1; /* Ensure line-height matches input on mobile */
    }

    .features-grid,
    .copilot-features {
        grid-template-columns: 1fr;
    }

    .copilot .container {
        grid-template-columns: 1fr;
    }

    .copilot .section-header {
        order: 1;
    }

    .copilot .container {
        column-gap: 0; /* Single column on mobile, no column gap needed */
        row-gap: 0; /* Control spacing with margins instead */
    }

    .copilot .copilot-image {
        order: 2;
        margin-bottom: clamp(2rem, 3vw + 1.5rem, 3rem); /* 32px -> 48px */
    }

    .placeholder-image {
        padding: 2rem 1.5rem; /* 32px vertical, 24px horizontal - minimums from clamp */
        border-radius: 10px; /* Minimum from clamp */
    }

    .copilot .copilot-features {
        order: 3;
    }

    section {
        min-height: auto;
    }

    /* 
        set the font size and line height of the texts in all the sections as per mobile phones

    */
    .hero-title {
        font-size: 2.25rem; /* 36px - minimum from clamp */
        line-height: 3.15rem; /* 50.4px - 1.4x font size */
    }

    .hero-subtitle {
        font-size: 0.875rem; /* 14px - minimum from clamp, readable */
        line-height: 1.4rem; /* 22.4px - 1.6x font size */
    }

    .section-title {
        font-size: 1.6rem; /* 25.6px - minimum from clamp */
        line-height: 2rem; /* 32px */
    }

    .section-subtitle {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.6;
    }

    .feature-card h3 {
        font-size: 1.15rem; /* 18.4px - minimum from clamp */
        margin-bottom: 0.75rem; /* 12px - minimum from clamp */
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.7;
    }

    .feature-icon {
        width: 3.5rem; /* 56px - minimum from clamp */
        height: 3.5rem; /* 56px - minimum from clamp */
        margin-bottom: 1rem; /* 16px - minimum from clamp */
    }

    .material-symbols-outlined {
        font-size: 28px; /* Minimum from clamp */
    }

    .feature-points li {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.7;
    }

    .divider {
        height: 0.2rem; /* 3.2px - minimum from clamp */
        margin: 0.75rem 0 1.25rem; /* 12px (top), 20px (bottom) - minimums from clamp */
    }
    .faq-question h3 {
        font-size: 0.95rem; /* 15.2px - minimum from clamp */
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.7;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-section h3 {
        font-size: 1.2rem; /* 19.2px - minimum from clamp */
        line-height: 1.3;
        margin-bottom: 0.7rem;
    }

    .footer-section h4 {
        font-size: 1rem; /* 16px - minimum from clamp */
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .footer-section p {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.7;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.875rem; /* 14px - minimum from clamp */
    }

    .footer-bottom {
        font-size: 0.8rem; /* 12.8px - minimum from clamp */
        line-height: 1.6;
    }
    .copilot-features {
        gap: 1.2rem; /* 19.2px - minimum from clamp */
    }

    .copilot-icon {
        font-size: 1.5rem; /* 24px - minimum from clamp */
    }

    .copilot-card h3 {
        font-size: 1rem; /* 16px - minimum from clamp */
        margin-bottom: 0.5rem; /* 8px - minimum from clamp */
        line-height: 1.4;
    }

    .copilot-card p {
        font-size: 0.875rem; /* 14px - minimum from clamp */
        line-height: 1.6;
    }
    
    /* 
     also fix the final cta section
    */

    .cta-title {
        font-size: 1.5rem; /* 24px - minimum from clamp */
        font-weight: 700;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 0.95rem; /* 15.2px - minimum from clamp */
        line-height: 1.5;
    }

}
