@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap");

:root {
    --navy-950: #06162b;
    --navy-900: #0b2345;
    --navy-800: #102c54;
    --navy-700: #16345e;
    --gold-600: #b8862b;
    --gold-500: #c89b3c;
    --gold-400: #d4af57;
    --silver-100: #f5f7fa;
    --silver-200: #e9edf3;
    --silver-300: #d9e1ea;
    --white: #ffffff;
    --ink: #132033;
    --muted: #637086;
    --shadow: 0 22px 60px rgba(11, 35, 69, 0.14);
    --radius: 8px;
}

* { box-sizing: border-box; }
[x-cloak] { display: none !important; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}
body {
    margin: 0;
    font-family: "Sora", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}
body::selection { background: var(--gold-400); color: var(--navy-950); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 5.25rem); max-width: 960px; margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 4.3vw, 4rem); margin-bottom: 1rem; }
h3 { font-size: 1.06rem; margin-bottom: 0.7rem; }
p { color: var(--muted); }
section[id] { scroll-margin-top: 104px; }
.container { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.section-pad { padding: 104px 0; }
.surface-silver { background: linear-gradient(180deg, var(--silver-100), var(--white)); }
.surface-navy {
    background: radial-gradient(circle at 20% 10%, rgba(212, 175, 87, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: var(--white);
}
.surface-navy h2, .surface-navy h3, .surface-navy p { color: var(--white); }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 35px rgba(11, 35, 69, 0.1);
    border-color: rgba(11, 35, 69, 0.08);
    backdrop-filter: blur(14px);
}
.header-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo img { width: 164px; height: auto; border-radius: 6px; }
.desktop-nav { display: flex; align-items: center; gap: 22px; font-size: 0.86rem; font-weight: 700; color: var(--navy-800); }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width 0.2s ease;
}
.desktop-nav a:hover::after { width: 100%; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-950);
    box-shadow: 0 12px 26px rgba(200, 155, 60, 0.28);
}
.btn-secondary { background: rgba(255, 255, 255, 0.08); color: var(--navy-900); border-color: rgba(200, 155, 60, 0.42); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #1ca853); color: #0c2f1c; font-weight: 900; }
.btn-email { background: var(--navy-900); color: var(--white); border-color: rgba(212, 175, 87, 0.35); }
.surface-navy .btn-secondary, .final-cta .btn-secondary { color: var(--white); border-color: rgba(212, 175, 87, 0.55); }
.hero-section .btn-secondary {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(200, 155, 60, 0.52);
}

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius); border: 1px solid rgba(11, 35, 69, 0.14); background: var(--white); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--navy-900); margin: 4px auto; }
.mobile-panel {
    display: none;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    border: 1px solid var(--silver-200);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}
.mobile-panel a { display: block; padding: 10px 4px; font-weight: 800; color: var(--navy-900); }

.hero-section {
    min-height: 92vh;
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 82% 20%, rgba(212, 175, 87, 0.22), transparent 26%),
    linear-gradient(135deg, #f8fafc 0%, #e9edf3 45%, #ffffff 100%);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: linear-gradient(90deg, rgba(11, 35, 69, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(11, 35, 69, 0.12) 1px, transparent 1px);
    background-size: 56px 56px;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 175, 87, 0.24);
    border-radius: 20px;
    pointer-events: none;
}
.circuit-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.28), transparent);
    height: 2px;
    top: 30%;
    animation: glide 8s ease-in-out infinite;
}
@keyframes glide {
    0%, 100% { transform: translateX(-20%); opacity: 0.25; }
    50% { transform: translateX(20%); opacity: 0.65; }
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.hero-copy {
    min-height: auto;
}
.hero-visual {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    align-self: center;
    padding: 8px 0;
}
.hero-copy > p { font-size: 1.06rem; max-width: 760px; }
.hero-subtitle { color: var(--navy-800); font-size: 1.26rem !important; font-weight: 800; }
.hero-microcopy {
    margin: 14px 0 0;
    max-width: 700px;
    color: var(--navy-700);
    font-size: 0.92rem !important;
}
.eyebrow {
    display: inline-flex;
    width: fit-content;
    color: var(--gold-600);
    background: rgba(212, 175, 87, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.28);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.hero-actions .btn { min-width: 208px; }
.cred-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cred-row span {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(11, 35, 69, 0.1);
    border-radius: var(--radius);
    padding: 10px 12px;
    font-weight: 800;
    font-size: 0.86rem;
}
.flyer-preview {
    display: block;
    width: min(100%, 760px);
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 14px 28px rgba(11, 35, 69, 0.14);
    opacity: 1;
    object-fit: contain;
}

.benefits-strip { padding: 76px 0; background: linear-gradient(180deg, var(--white), var(--silver-100)); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(200, 155, 60, 0.32);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.benefit-item { padding: 20px 14px; text-align: center; border-right: 1px solid rgba(200, 155, 60, 0.35); }
.benefit-item:last-child { border-right: 0; }
.benefit-item h3 { margin: 10px 0 7px; font-size: 1.03rem; }
.benefit-item p { margin: 0; font-size: 0.88rem; }
.benefit-icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-600);
    font-weight: 900;
    font-size: 0.78rem;
    border: 2px solid rgba(200, 155, 60, 0.45);
    box-shadow: inset 0 0 0 7px rgba(212, 175, 87, 0.12);
}

.section-header { text-align: center; max-width: 860px; margin: 0 auto 48px; }
.section-header-left { text-align: left; margin-left: 0; }
.section-header p { font-size: 1.01rem; }
.card-grid { display: grid; gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.problem-card, .solution-card, .feature-card, .resource-card, .package-card, .founder-card, .contact-panel, .diagnostic-form {
    background: var(--white);
    border: 1px solid var(--silver-200);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 34px rgba(11, 35, 69, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover, .solution-card:hover, .feature-card:hover, .resource-card:hover, .package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, 0.55);
    box-shadow: var(--shadow);
}
.card-index, .card-mark, .solution-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--gold-400);
    font-weight: 900;
    text-align: center;
    line-height: 36px;
}
.card-mark, .solution-icon { position: relative; }
.card-mark::after, .solution-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid var(--gold-400);
    border-radius: 50%;
}

.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.promise-section { background: var(--white); }
.promise-panel {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border: 1px solid rgba(212, 175, 87, 0.42);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}
.promise-panel h3 { color: var(--white); font-size: 1.22rem; }
.check-list-light li {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 87, 0.3);
    color: var(--white);
}
.audience-section { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.audience-section h2, .audience-section p { color: var(--white); }
.check-list { display: grid; gap: 12px; list-style: none; padding: 0; margin: 0; }
.check-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 87, 0.25);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-weight: 700;
}

.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.timeline-item { padding: 20px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(212, 175, 87, 0.25); }
.timeline-item span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--navy-950);
    font-weight: 900;
    margin-bottom: 14px;
}
.timeline-item p { font-size: 0.9rem; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.package-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; position: relative; }
.package-featured { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); border-color: rgba(212, 175, 87, 0.55); }
.package-featured h3, .package-featured p, .package-featured li { color: var(--white); }
.package-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--navy-950);
    background: var(--gold-400);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.74rem;
    font-weight: 900;
}
.package-time { color: var(--gold-600); font-weight: 900; font-size: 0.8rem; text-transform: uppercase; }
.package-card ul { padding: 0; margin: 22px 0; list-style: none; display: grid; gap: 10px; }
.package-card li { color: var(--muted); padding-left: 18px; position: relative; }
.package-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
}

.metrics-band { background: var(--navy-950); padding: 56px 0; color: var(--white); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric-item strong { display: block; color: var(--gold-400); font-size: clamp(1.8rem, 4vw, 3.3rem); line-height: 1; margin-bottom: 8px; }
.metric-item span { color: var(--silver-200); font-weight: 800; }

.founder-section { background: var(--white); }
.founder-card {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founder-card h3, .founder-card p { color: var(--white); }
.founder-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold-400);
    color: var(--navy-950);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.resources-section { background: linear-gradient(180deg, var(--white), var(--silver-100)); }
.resource-card span { color: var(--gold-600); font-weight: 900; text-transform: uppercase; font-size: 0.74rem; }
.resource-card a { color: var(--navy-900); font-weight: 900; border-bottom: 2px solid var(--gold-500); }

.cta-band {
    background: linear-gradient(180deg, var(--silver-100), var(--white));
}
.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 155, 60, 0.34);
    background: var(--white);
    box-shadow: var(--shadow);
}
.cta-band-inner h2 {
    max-width: 820px;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}
.cta-band-inner p { max-width: 760px; margin-bottom: 0; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--silver-200); border-radius: var(--radius); overflow: hidden; }
.faq-item button {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--navy-900);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}
.faq-item div { padding: 0 20px 20px; }

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: radial-gradient(circle at 85% 40%, rgba(212, 175, 87, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(212, 175, 87, 0.42);
    border-radius: 16px;
}
.final-cta::after {
    content: "";
    position: absolute;
    right: 4%;
    bottom: 8%;
    width: 190px;
    height: 110px;
    background: url("/images/accelera-technologies-logo.png") no-repeat center/contain;
    opacity: 0.15;
    filter: saturate(0) brightness(1.7);
}
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; position: relative; z-index: 2; }
.final-cta-contact { color: var(--gold-400) !important; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 44px; align-items: start; }
.contact-panel { background: var(--navy-900); margin-top: 28px; }
.contact-panel strong, .contact-panel span { display: block; color: var(--white); }
.panel-link { display: block; margin-top: 8px; color: var(--gold-400); font-weight: 800; }
.contact-panel p { color: var(--silver-200); margin: 14px 0 0; }
.contact-panel-image {
    margin-top: 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.contact-panel-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

.diagnostic-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field span { color: var(--navy-900); font-weight: 900; font-size: 0.9rem; }
.form-field strong { color: var(--gold-600); }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--silver-300);
    border-radius: var(--radius);
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15); }
small { color: #b42318; font-weight: 700; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-actions p { margin: 0; font-size: 0.86rem; max-width: 480px; }

.site-footer { background: var(--navy-950); color: var(--white); padding: 60px 0 26px; }
.site-footer p, .site-footer a, .site-footer span { color: var(--silver-200); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 40px; align-items: start; }
.footer-claim { color: var(--gold-400) !important; font-weight: 900; margin: 18px 0 6px; }
.site-footer nav { display: grid; gap: 10px; }
.footer-contact { display: grid; gap: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 34px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #1ca853);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(28, 168, 83, 0.38);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.whatsapp-float-icon { width: 28px; height: 28px; display: block; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.page-simple { min-height: 70vh; padding-top: 180px; background: linear-gradient(180deg, var(--silver-100), var(--white)); }
.legal-copy p { font-size: 1.04rem; }

@media (max-width: 1080px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .mobile-panel { display: block; }
    .hero-grid, .split-grid, .contact-grid, .final-cta-inner, .cta-band-inner { grid-template-columns: 1fr; }
    .hero-grid { gap: 30px; }
    .hero-copy, .hero-visual { min-height: auto; }
    .hero-visual { order: 2; justify-content: center; }
    .flyer-preview { width: min(100%, 700px); max-width: 700px; }
    .card-grid.four, .card-grid.five { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-item:nth-child(2) { border-right: 0; }
    .benefit-item:nth-child(1), .benefit-item:nth-child(2) { border-bottom: 1px solid rgba(200, 155, 60, 0.35); }
}

@media (max-width: 760px) {
    html { scroll-padding-top: 88px; }
    section[id] { scroll-margin-top: 88px; }
    .container, .narrow { width: min(100% - 28px, 1280px); }
    .section-pad { padding: 76px 0; }
    .header-inner { height: 76px; }
    .brand-logo img { width: 126px; }
    .mobile-panel { top: 76px; }
    .hero-section { min-height: auto; padding: 104px 0 54px; }
    .hero-section::after { inset: 12px; border-radius: 14px; }
    h1 { font-size: clamp(2.05rem, 11vw, 3.55rem); }
    h2 { font-size: clamp(1.8rem, 9vw, 2.8rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-subtitle { font-size: 1.05rem !important; }
    .hero-microcopy { font-size: 0.88rem !important; }
    .button-row { gap: 10px; margin-top: 22px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 100%; min-width: 0; }
    .cred-row { margin-top: 20px; }
    .cred-row span { width: 100%; }
    .card-grid.three, .card-grid.four, .card-grid.five, .package-grid, .metrics-grid, .timeline, .diagnostic-form, .footer-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-item { border-right: 0; border-bottom: 1px solid rgba(200, 155, 60, 0.35); }
    .benefit-item:last-child { border-bottom: 0; }
    .package-card { min-height: auto; }
    .flyer-preview { width: min(100%, 640px); max-width: 640px; }
    .cta-band-inner { padding: 24px; }
    .cta-band-inner .button-row { align-items: stretch; }
    .cta-band-inner .btn { width: 100%; }
    .form-actions { align-items: stretch; }
    .form-actions .btn { width: 100%; }
    .footer-bottom { display: grid; }
    .whatsapp-float { bottom: max(14px, env(safe-area-inset-bottom)); right: max(14px, env(safe-area-inset-right)); width: 50px; height: 50px; }
    .whatsapp-float-icon { width: 24px; height: 24px; }
}

@media (max-width: 430px) {
    .section-pad { padding: 66px 0; }
    .hero-section { padding-top: 96px; }
    h1 { font-size: clamp(1.86rem, 10.6vw, 2.85rem); line-height: 1.08; }
    .hero-copy > p { font-size: 0.97rem; }
    .eyebrow { font-size: 0.7rem; }
    .btn { min-height: 44px; padding: 0 16px; font-size: 0.84rem; }
    .problem-card, .solution-card, .feature-card, .resource-card, .package-card, .founder-card, .contact-panel, .diagnostic-form, .promise-panel { padding: 18px; }
    .form-field span { font-size: 0.84rem; }
}

@media (max-width: 375px) {
    .container, .narrow { width: min(100% - 22px, 1280px); }
    .hero-section::after { inset: 8px; }
    h1 { font-size: clamp(1.72rem, 10.4vw, 2.55rem); }
    .whatsapp-float { width: 46px; height: 46px; }
    .whatsapp-float-icon { width: 22px; height: 22px; }
}
