/* ============================================================
   SmileCare — Landing Page Draft
   Brand: teal/cyan (#0d9488) + red CTA accent (#e61739)
   Conversion-focused one-page redesign
   ============================================================ */

:root {
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --red:      #e61739;
    --red-dark: #a80a24;
    --amber:    #f59e0b;
    --green:    #16a34a;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
    --shadow-md: 0 4px 6px rgba(15,23,42,.05), 0 10px 20px rgba(15,23,42,.08);
    --shadow-lg: 0 10px 25px rgba(15,23,42,.10), 0 20px 40px rgba(15,23,42,.12);
    --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--slate-800);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.announce {
    background: var(--teal-900);
    color: var(--teal-100);
    text-align: center;
    font-size: 13px;
    padding: 9px 16px;
    font-weight: 500;
    letter-spacing: .2px;
}
.announce strong { color: #fff; }

/* ---------- Navbar ---------- */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 21px; color: var(--slate-900); }
.brand .logo { width: 34px; height: 34px; display: grid; place-items: center; font-size: 0; overflow: hidden; }
.brand .logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--slate-600); transition: color .15s; }
.nav-links a:hover { color: var(--teal-700); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    font-weight: 600; font-size: 14.5px; padding: 11px 22px; border-radius: 9px;
    border: none; cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--teal-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-300); }
.btn-ghost:hover { background: var(--teal-50); border-color: var(--teal-500); }
.btn-lg { padding: 14px 30px; font-size: 15.5px; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(1100px 500px at 80% -10%, var(--teal-100), transparent),
        linear-gradient(180deg, var(--teal-50), #fff);
    padding: 64px 0 80px;
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--teal-200);
    color: var(--teal-800); font-weight: 600; font-size: 13.5px;
    padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.hero h1 {
    font-size: 46px; line-height: 1.1; font-weight: 800; color: var(--slate-900);
    letter-spacing: -0.5px; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal-600); }
.hero .lede {
    font-size: 18.5px; color: var(--slate-600); max-width: 560px; margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
    display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--slate-500);
}
.hero-trust .stars { color: var(--amber); font-size: 16px; letter-spacing: 1px; }
.hero-trust strong { color: var(--slate-700); }

/* hero visual */
.hero-visual { position: relative; }
.dashboard-mock {
    background: var(--slate-900); border-radius: 16px; box-shadow: var(--shadow-lg);
    overflow: hidden; border: 1px solid var(--slate-800);
    transform: perspective(1200px) rotateY(-4deg);
}
.mock-topbar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--slate-800); }
.mock-topbar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-topbar .d1 { background: #ff5f57; } .mock-topbar .d2 { background: #febc2e; } .mock-topbar .d3 { background: #28c840; }
.mock-topbar .url { margin-left: 14px; font-size: 12px; color: var(--slate-400); background: var(--slate-900); padding: 4px 14px; border-radius: 6px; }
.mock-body { display: grid; grid-template-columns: 150px 1fr; min-height: 320px; }
.mock-sidebar { background: var(--slate-800); padding: 16px 12px; border-right: 1px solid #243149; }
.mock-sidebar .s-item { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 7px; font-size: 12px; color: var(--slate-300); margin-bottom: 3px; }
.mock-sidebar .s-item.active { background: var(--teal-600); color: #fff; }
.mock-sidebar .s-ico { width: 15px; height: 15px; border-radius: 4px; background: var(--slate-500); }
.mock-sidebar .s-item.active .s-ico { background: rgba(255,255,255,.5); }
.mock-main { padding: 18px; background: #f3f6f9; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.mock-card { background: #fff; border-radius: 9px; padding: 11px 12px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.mock-card .mc-label { font-size: 9.5px; color: var(--slate-400); text-transform: uppercase; letter-spacing: .5px; }
.mock-card .mc-value { font-size: 17px; font-weight: 700; color: var(--slate-800); margin-top: 2px; }
.mock-card .mc-trend { font-size: 10px; color: var(--green); margin-top: 2px; }
.mock-card .mc-trend.down { color: var(--red); }
.mock-chart { background: #fff; border-radius: 9px; padding: 14px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.mock-chart .mc-title { font-size: 11px; font-weight: 600; color: var(--slate-600); margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 80px; }
.bars .bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--teal-400), var(--teal-600)); }

/* floating stat chips */
.float-chip {
    position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 12px 16px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--slate-200);
}
.float-chip .fc-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 19px; }
.float-chip .fc-label { font-size: 11px; color: var(--slate-400); font-weight: 500; }
.float-chip .fc-value { font-size: 15px; font-weight: 700; color: var(--slate-800); }
.chip-1 { top: 24px; left: -34px; }
.chip-1 .fc-ico { background: #dcfce7; }
.chip-2 { bottom: 36px; right: -28px; }
.chip-2 .fc-ico { background: #fef3c7; }

/* ---------- Positioning statement / punch line ---------- */
.positioning {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
    padding: 0;
    position: relative;
    overflow: hidden;
}
.positioning::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 200px at 15% 50%, rgba(255,255,255,.08), transparent),
        radial-gradient(500px 180px at 85% 50%, rgba(255,255,255,.06), transparent);
    pointer-events: none;
}
.positioning-inner {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    padding: 30px 24px; text-align: center; position: relative;
}
.positioning-icon {
    font-size: 26px; line-height: 1; flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.positioning-text {
    font-size: 21px; line-height: 1.5; font-weight: 500; color: #fff;
    max-width: 900px; margin: 0; letter-spacing: .2px;
}
.positioning-text strong { font-weight: 800; color: #fff; }
.positioning-text .accent-underline {
    font-weight: 700; color: var(--teal-100);
    background: linear-gradient(transparent 62%, rgba(230,23,57,.55) 62%);
    padding: 0 2px; white-space: nowrap;
}

/* ---------- Logo strip ---------- */
.logos { padding: 34px 0; border-bottom: 1px solid var(--slate-100); }
.logos .label { text-align: center; font-size: 12.5px; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; }
.logos-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: .7; }
.logos-row span { font-weight: 700; font-size: 17px; color: var(--slate-500); letter-spacing: .3px; }

/* ---------- Section base ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--teal-600); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.section h2 { font-size: 34px; font-weight: 800; color: var(--slate-900); letter-spacing: -.3px; line-height: 1.2; margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--slate-600); }

/* ---------- Pain -> Relief ---------- */
.pain { background: var(--slate-50); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pain-card {
    background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200); display: flex; gap: 18px; align-items: flex-start;
    transition: transform .2s, box-shadow .2s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-card .pc-ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; background: #fee2e2; }
.pain-card .pc-body h4 { font-size: 16px; font-weight: 700; color: var(--slate-800); margin-bottom: 5px; }
.pain-card .pc-pain { font-size: 13.5px; color: var(--red); margin-bottom: 6px; font-weight: 500; }
.pain-card .pc-relief { font-size: 14px; color: var(--slate-600); }
.pain-card .pc-relief strong { color: var(--teal-700); }

/* ---------- Features grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
    background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
    padding: 28px 24px; transition: all .2s; position: relative; overflow: hidden;
}
.feat-card:hover { border-color: var(--teal-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feat-card .fc-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--teal-50); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; border: 1px solid var(--teal-100); }
.feat-card h4 { font-size: 17.5px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--slate-600); }
.feat-card .fc-list { margin-top: 12px; }
.feat-card .fc-list li { font-size: 13px; color: var(--slate-500); padding: 3px 0 3px 20px; position: relative; }
.feat-card .fc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }

/* ---------- Stats band ---------- */
.stats-band {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
    color: #fff; padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.stat .num .plus { color: var(--teal-300); }
.stat .label { font-size: 14px; color: var(--teal-100); margin-top: 10px; font-weight: 500; }

/* ---------- How it works ---------- */
.how { background: var(--slate-50); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { text-align: center; position: relative; }
.step .step-num { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--teal-400); color: var(--teal-700); font-size: 20px; font-weight: 800; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-sm); }
.step h4 { font-size: 16px; font-weight: 700; color: var(--slate-800); margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--slate-500); }
.step:not(:last-child)::after { content: "→"; position: absolute; top: 22px; right: -16px; color: var(--teal-300); font-size: 22px; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.testi-card .stars { color: var(--amber); font-size: 17px; letter-spacing: 1.5px; margin-bottom: 14px; }
.testi-card .quote { font-size: 14.5px; color: var(--slate-700); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-100); color: var(--teal-800); font-weight: 700; display: grid; place-items: center; font-size: 15px; }
.testi-card .who .name { font-size: 14.5px; font-weight: 700; color: var(--slate-800); }
.testi-card .who .role { font-size: 12.5px; color: var(--slate-500); }

/* ---------- Pricing ---------- */
.pricing { background: var(--slate-50); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
    background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 32px 28px;
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all .2s; position: relative;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card.popular { border: 2px solid var(--teal-500); box-shadow: var(--shadow-md); }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal-600); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: .8px; }
.price-card .pc-tier { font-size: 15px; font-weight: 700; color: var(--teal-700); text-transform: uppercase; letter-spacing: 1px; }
.price-card .pc-price { font-size: 40px; font-weight: 800; color: var(--slate-900); margin: 12px 0 2px; letter-spacing: -1px; }
.price-card .pc-price .cur { font-size: 20px; vertical-align: top; color: var(--slate-500); }
.price-card .pc-period { font-size: 13.5px; color: var(--slate-500); margin-bottom: 20px; }
.price-card .pc-desc { font-size: 14px; color: var(--slate-600); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--slate-100); }
.price-card .pc-feats li { font-size: 13.5px; color: var(--slate-700); padding: 7px 0 7px 24px; position: relative; }
.price-card .pc-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }
.price-card .pc-feats li.muted { color: var(--slate-400); }
.price-card .pc-feats li.muted::before { color: var(--slate-300); }
.price-card .btn { margin-top: 24px; }
/* ---------- FAQ ---------- */
.faq {
    background: var(--slate-50);
    padding: 88px 0;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--teal-200);
}
.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--teal-300);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-800);
    text-align: left;
    transition: color .2s ease;
}
.faq-q:hover { color: var(--teal-700); }
.faq-item.open .faq-q { color: var(--teal-700); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-600);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--teal-600);
    color: #fff;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-a-inner {
    padding: 0 26px 24px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--slate-600);
}
.faq-a-inner a { color: var(--teal-600); font-weight: 600; }
.faq-a-inner a:hover { text-decoration: underline; }
.faq-cta {
    text-align: center;
    margin-top: 40px;
}
.faq-cta p {
    font-size: 16px;
    color: var(--slate-500);
    margin-bottom: 18px;
}
@media (max-width: 640px) {
    .faq { padding: 64px 0; }
    .faq-q { font-size: 15.5px; padding: 18px 20px; }
    .faq-a-inner { padding: 0 20px 20px; font-size: 14.5px; }
}


/* ---------- Final CTA ---------- */
.final-cta {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    color: #fff; text-align: center; padding: 80px 0;
}
.final-cta h2 { color: #fff; font-size: 34px; font-weight: 800; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: var(--teal-100); max-width: 560px; margin: 0 auto 32px; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta .btn-primary { background: #fff; color: var(--teal-700); }
.final-cta .btn-primary:hover { background: var(--teal-50); }
.final-cta .btn-red { background: var(--red); }
.final-cta .fineprint { font-size: 13px; color: var(--teal-200); margin-top: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--slate-800); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { font-size: 13.5px; line-height: 1.7; max-width: 300px; }
.footer h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer ul li { padding: 6px 0; font-size: 13.5px; }
.footer ul li a:hover { color: var(--teal-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid, .pain-grid, .feat-grid, .testi-grid, .price-grid, .steps, .stats-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 34px; }
    .nav-links { display: none; }
    .step:not(:last-child)::after { display: none; }
    .chip-1, .chip-2 { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .section { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
    .positioning-inner { flex-direction: column; gap: 12px; padding: 26px 20px; }
    .positioning-text { font-size: 18px; }
    .positioning-text .accent-underline { white-space: normal; }
}

/* ============================================================
   Contact Section + Form
   ============================================================ */
.contact-section { background: var(--slate-50); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }

/* Stack contact info above the form on tablets & phones */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Left: info column ---- */
.contact-info .eyebrow { display: block; margin-bottom: 8px; }
.contact-info h2 { font-size: 30px; font-weight: 800; color: var(--slate-900); letter-spacing: -.3px; margin-bottom: 14px; }
.contact-info > p { font-size: 15.5px; color: var(--slate-600); margin-bottom: 12px; }

.contact-list { margin: 28px 0; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--slate-200); }
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci-ico { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 11px; background: var(--teal-50); border: 1px solid var(--teal-100); display: grid; place-items: center; font-size: 19px; }
.contact-list .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--slate-400); font-weight: 600; margin-bottom: 2px; }
.contact-list a { color: var(--teal-700); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.contact-list div div:last-child { font-size: 14.5px; color: var(--slate-700); }

.contact-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.contact-trust span { font-size: 12.5px; font-weight: 600; color: var(--teal-800); background: #fff; border: 1px solid var(--teal-200); padding: 6px 12px; border-radius: 999px; }

/* ---- Right: form card ---- */
.contact-form-wrap {
    background: #fff; border: 1px solid var(--slate-200); border-radius: 16px;
    padding: 32px; box-shadow: var(--shadow-md); position: relative;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; font-family: inherit; font-size: 14.5px; color: var(--slate-800);
    padding: 11px 13px; border: 1.5px solid var(--slate-300); border-radius: 9px;
    background: #fff; transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(13,148,136,.14);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.contact-form .btn { margin-top: 6px; }
.form-fineprint { font-size: 11.5px; color: var(--slate-400); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ---- Success state ---- */
.form-success { text-align: center; padding: 36px 16px; }
.form-success .fs-icon { width: 64px; height: 64px; border-radius: 50%; background: #dcfce7; color: var(--green); font-size: 34px; font-weight: 800; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.form-success p { font-size: 14.5px; color: var(--slate-600); margin-bottom: 22px; }
.form-success a { color: var(--teal-700); font-weight: 600; }

/* ============================================================
   Intro Video Lightbox (lazy-loaded modal)
   ============================================================ */
.video-link {
    display: inline-flex; align-items: center; gap: 11px;
    background: none; border: none; cursor: pointer; padding: 4px 0;
    margin: 2px 0 24px; font-family: inherit;
    color: var(--slate-700); font-size: 15px; font-weight: 600;
    transition: color .2s ease;
}
.video-link:hover { color: var(--teal-700); }
.video-link-icon {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: var(--red); color: #fff; font-size: 14px;
    display: grid; place-items: center; padding-left: 3px;
    box-shadow: 0 4px 14px rgba(230,23,57,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.video-link:hover .video-link-icon { transform: scale(1.08); box-shadow: 0 6px 18px rgba(230,23,57,.45); }
.video-link-dur { color: var(--slate-400); font-weight: 500; }

.video-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(15,23,42,.78); backdrop-filter: blur(4px);
    animation: vmFade .25s ease;
}
.video-modal-box {
    position: relative; width: 100%; max-width: 920px;
    animation: vmPop .3s cubic-bezier(.2,.9,.3,1.2);
}
.video-modal-frame {
    position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */
    background: #000; border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.video-modal-frame iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-modal-close {
    position: absolute; top: -46px; right: -4px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
    font-size: 26px; line-height: 1; cursor: pointer;
    display: grid; place-items: center;
    transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

@keyframes vmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vmPop { from { opacity: 0; transform: scale(.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }

body.video-modal-open { overflow: hidden; }

@media (max-width: 640px) {
    .video-modal { padding: 14px; }
    .video-modal-close { top: -44px; right: 0; }
}
