* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}


/* =========================
   LOADER
========================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary);
}

.loader-line {
    width: 90px;
    height: 3px;
    margin: 15px auto 10px;
    background: var(--primary);
    animation: loaderAnimation 1s infinite ease-in-out;
}

.loader-content p {
    color: var(--muted);
    font-size: 0.75rem;
}

@keyframes loaderAnimation {
    0% {
        transform: scaleX(0.3);
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0.3);
    }
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 5%;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(15, 23, 42, 0.07);
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 70px;
    height: 38px;
    object-fit: contain;
}

.brand span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 11px 20px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 150px 8% 100px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #eff6ff 100%);
}

.hero-background-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 500px;
    height: 500px;
    right: -200px;
    top: -150px;
    background: rgba(37, 99, 235, 0.06);
}

.circle-two {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -100px;
    background: rgba(37, 99, 235, 0.04);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -4px;
    margin-bottom: 28px;
    color: var(--dark);
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.primary-button,
.secondary-button {
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.primary-button {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-button {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--dark);
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-audience {
    display: flex;
    align-items: center;
    gap: 25px;
}

.audience-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-mini span {
    font-size: 1.3rem;
}

.audience-mini small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================
   PHONE MOCKUP
========================= */

.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: relative;
    z-index: 2;
    width: 285px;
    height: 570px;
    padding: 9px;
    border-radius: 42px;
    background: #111827;
    box-shadow:
        0 35px 70px rgba(15, 23, 42, 0.22),
        0 10px 25px rgba(15, 23, 42, 0.1);
}

.phone-notch {
    position: absolute;
    z-index: 5;
    top: 16px;
    left: 50%;
    width: 90px;
    height: 23px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: #111827;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 34px;
    padding: 45px 18px 20px;
    background: #f8fafc;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-header small {
    display: block;
    color: #94a3b8;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.phone-header h3 {
    margin-top: 3px;
    color: var(--dark);
    font-size: 1.1rem;
}

.profile-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dbeafe;
    font-size: 0.85rem;
}

.phone-welcome {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
}

.phone-welcome span {
    color: #64748b;
    font-size: 0.65rem;
}

.phone-welcome strong {
    margin-top: 5px;
    color: #0f172a;
    font-size: 0.9rem;
    line-height: 1.4;
}

.phone-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.65rem;
}

.phone-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 12px;
}

.phone-section-title strong {
    font-size: 0.75rem;
}

.phone-section-title span {
    color: var(--primary);
    font-size: 0.58rem;
    font-weight: 600;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.resource-card {
    padding: 12px 9px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.resource-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #eff6ff;
    font-size: 0.75rem;
}

.resource-card strong {
    display: block;
    font-size: 0.63rem;
    color: #0f172a;
}

.resource-card small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 0.5rem;
}

.phone-progress {
    margin-top: 18px;
    padding: 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-header strong,
.progress-header span {
    font-size: 0.6rem;
}

.progress-header span {
    color: var(--primary);
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 20px;
    background: #e2e8f0;
}

.progress-fill {
    width: 72%;
    height: 100%;
    border-radius: 20px;
    background: var(--primary);
}

.phone-progress small {
    display: block;
    margin-top: 7px;
    color: #94a3b8;
    font-size: 0.48rem;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.floating-card > span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eff6ff;
}

.floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 0.7rem;
}

.floating-card small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 0.55rem;
}

.card-top {
    top: 100px;
    right: 0;
}

.card-bottom {
    left: 0;
    bottom: 100px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 120px 8%;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading h2 strong {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);
    line-height: 1.8;
}


/* =========================
   ABOUT
========================= */

.about-section {
    background: #ffffff;
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 13px;
    background: #eff6ff;
    color: var(--primary);
    font-size: 1.3rem;
}

.stat-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.stat-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================
   FEATURES
========================= */

.features-section {
    background: #f8fafc;
}

.features-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 32px 25px;
    min-height: 320px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #cbd5e1;
    font-size: 0.7rem;
    font-weight: 800;
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 15px;
    background: #eff6ff;
    font-size: 1.4rem;
}

.feature-card h3 {
    margin-bottom: 13px;
    font-size: 1.05rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}


/* =========================
   AUDIENCE
========================= */

.audience-section {
    background: #ffffff;
}

.audience-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.audience-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 35px;
    border-radius: 25px;
    background: #f8fafc;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-7px);
}

.audience-card .large-icon {
    font-size: 3rem;
    margin-bottom: 30px;
}

.audience-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.audience-card h3 {
    max-width: 280px;
    margin-bottom: 15px;
    font-size: 1.55rem;
    line-height: 1.25;
}

.audience-card p {
    max-width: 300px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 120px 8%;
    background: #f8fafc;
}

.contact-section .section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-section .section-heading > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-section .section-heading h2 {
    margin-bottom: 15px;
}

.contact-section .section-heading p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    padding: 35px 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eff6ff;
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.contact-card p {
    margin-bottom: 8px;
    color: var(--muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    font-weight: 700;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card strong {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
}

.contact-card small {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
}

.contact-note {
    max-width: 800px;
    margin: 35px auto 0;
    padding: 18px 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    background: var(--dark);
}

.cta-content {
    color: #ffffff;
}

.cta-content > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-content h2 {
    max-width: 550px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -3px;
}

.cta-content h2 strong {
    color: #60a5fa;
}

.cta-content p {
    max-width: 500px;
    color: #94a3b8;
    line-height: 1.8;
}

.lead-form {
    padding: 35px;
    border-radius: 22px;
    background: #ffffff;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: #f8fafc;
    color: var(--dark);
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: none;
    border-radius: 11px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s ease;
}

.form-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-button span {
    font-size: 1.1rem;
}

.privacy-note {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.68rem;
    line-height: 1.6;
    text-align: center;
}

.privacy-note a {
    color: var(--primary);
    font-weight: 600;
}


/* =========================
   SUCCESS MODAL
========================= */

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-box {
    position: relative;
    max-width: 430px;
    width: 100%;
    padding: 45px 35px;
    border-radius: 25px;
    background: #ffffff;
    text-align: center;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.success-modal.show .success-box {
    transform: translateY(0);
}

.close-success {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    font-size: 1.5rem;
}

.success-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
}

.success-box h2 {
    margin-bottom: 12px;
}

.success-box p {
    color: var(--muted);
    line-height: 1.7;
}

.success-button {
    margin-top: 25px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 45px 8% 25px;
    background: #020617;
    color: #ffffff;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 65px;
    height: 36px;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-brand p {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.7rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.75rem;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #475569;
    font-size: 0.65rem;
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        margin: auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-audience {
        justify-content: center;
    }

    .hero-visual {
        min-height: 620px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .navbar {
        padding: 15px 5%;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: 10px 15px;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero h1 {
        font-size: 3.4rem;
        letter-spacing: -2.5px;
    }

    .stats-grid,
    .audience-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }

    .hero-visual {
        min-height: 580px;
    }

    .card-top {
        right: 2%;
    }

    .card-bottom {
        left: 2%;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .section,
    .contact-section,
    .cta-section {
        padding: 80px 6%;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content > p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .hero-audience {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 520px;
    }

    .phone {
        width: 250px;
        height: 500px;
        border-radius: 36px;
    }

    .phone-screen {
        border-radius: 29px;
        padding: 40px 15px 15px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .card-top {
        top: 50px;
        right: -10px;
    }

    .card-bottom {
        bottom: 50px;
        left: -10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .lead-form {
        padding: 25px 20px;
    }

    .cta-content h2 {
        letter-spacing: -2px;
    }

    .footer-links {
        gap: 15px;
    }

}