/* =========================================================
   Chat2p.com - Stylesheet
   Paleta: tons de Laranja + Azul
========================================================= */

:root {
    /* Laranjas */
    --orange-50:  #FFF4EC;
    --orange-100: #FFE4D1;
    --orange-200: #FFD3B5;
    --orange-300: #FFA559;
    --orange-400: #FF8C42;
    --orange-500: #FF6B35;
    --orange-600: #E25420;
    --orange-700: #B83F12;

    /* Azuis */
    --blue-50:  #EFF5FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #60A5FA;
    --blue-400: #3B82F6;
    --blue-500: #2563EB;
    --blue-600: #1E3A8A;
    --blue-700: #19376D;
    --blue-800: #0B2447;

    /* Neutros */
    --white: #FFFFFF;
    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Tema */
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --bg-dark: var(--blue-800);
    --text: var(--gray-800);
    --text-muted: var(--gray-600);
    --text-light: var(--gray-400);
    --border: var(--gray-200);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow:    0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, .12);
    --shadow-orange: 0 12px 32px rgba(255, 107, 53, .28);

    --gradient-warm: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
    --gradient-cool: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-400) 100%);
    --gradient-brand: linear-gradient(135deg, var(--orange-500) 0%, var(--blue-500) 100%);
    --gradient-hero: linear-gradient(135deg, #0B2447 0%, #19376D 45%, #2563EB 100%);

    --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);

    --container: 1180px;
    --header-h: 76px;

    --transition: .25s ease;
}

/* Reset básico */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-500); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-500); }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--blue-800);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }

p { color: var(--text-muted); }
strong { color: var(--text); }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--orange-500);
    color: #fff;
    padding: 12px 18px;
    z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; color: #fff; }

/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-800);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.02em;
}
.brand:hover { color: var(--blue-800); }
.brand-logo {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-shadow: var(--shadow-orange);
    border-radius: 12px;
}
.brand-accent {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    padding: 6px 0;
}
.site-nav a:hover { color: var(--orange-500); }
.site-nav a.active { color: var(--blue-600); }
.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--gradient-warm);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--blue-800);
    border-radius: 4px;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 26px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 40px rgba(255,107,53,.4); }

.btn-secondary {
    background: var(--blue-600);
    color: #fff;
}
.btn-secondary:hover { background: var(--blue-500); color: #fff; }

.btn-outline {
    background: transparent;
    color: var(--blue-800);
    border: 2px solid var(--blue-200);
}
.btn-outline:hover { border-color: var(--orange-400); color: var(--orange-500); }

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}
.btn-ghost:hover { color: var(--orange-500); background: var(--orange-50); }

.btn-block { width: 100%; }

/* =========================================================
   SECTIONS / UTILITIES
========================================================= */
.section {
    padding: 96px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--gradient-hero); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head .eyebrow {
    display: inline-block;
    color: var(--orange-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .8rem;
    margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--orange-50);
    color: var(--orange-600);
    font-weight: 600;
    font-size: .82rem;
}
.badge-blue { background: var(--blue-50); color: var(--blue-600); }
.badge-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px currentColor;
    opacity: .25;
}

/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background:
        radial-gradient(ellipse at top right, rgba(255,165,89,.18), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(96,165,250,.16), transparent 55%),
        linear-gradient(180deg, #FFFFFF 0%, #FFFBF7 100%);
}
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: .35;
    pointer-events: none;
}
.hero::before { width: 320px; height: 320px; background: radial-gradient(circle, var(--orange-300) 0%, transparent 70%); top: -120px; right: -80px; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, var(--blue-300) 0%, transparent 70%); bottom: -160px; left: -120px; }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}
.hero-content .badge { margin-bottom: 22px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 .accent {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-content .lead {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.hero-stats .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--blue-700);
    font-weight: 800;
}
.hero-stats .stat span {
    font-size: .82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Mockup do app */
.hero-mockup {
    position: relative;
    justify-self: center;
    display: flex;
    justify-content: center;
}
.phone {
    width: 320px;
    height: 640px;
    background: linear-gradient(180deg, #0B2447 0%, #19376D 100%);
    border-radius: 44px;
    padding: 16px;
    box-shadow: 0 32px 80px rgba(11,36,71,.35), inset 0 0 0 2px rgba(255,255,255,.08);
    position: relative;
}
.phone::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF4EC 0%, #FFFFFF 50%, #EFF5FF 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.phone-topbar {
    background: var(--gradient-hero);
    color: #fff;
    padding: 36px 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color:#fff;
    font-size: .9rem;
}
.phone-topbar .name { font-weight: 600; font-size: .95rem; }
.phone-topbar .status { font-size: .72rem; opacity: .8; display: flex; align-items: center; gap: 5px; }
.phone-topbar .status::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
}

.phone-messages {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.bubble {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: .82rem;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(15,23,42,.06);
    animation: fadeIn .6s ease both;
}
.bubble.in {
    background: #fff;
    color: var(--gray-800);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.bubble.out {
    background: var(--gradient-warm);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.bubble.out::after {
    content: '✓✓';
    display: block;
    text-align: right;
    font-size: .65rem;
    opacity: .85;
    margin-top: 2px;
}
.bubble.system {
    align-self: center;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: .7rem;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: none;
    font-weight: 600;
}

.phone-input {
    padding: 14px 18px 22px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.phone-input .field {
    flex: 1;
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--gray-400);
    font-size: .8rem;
    border: 1px solid var(--gray-200);
}
.phone-input .send {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating cards near phone */
.float-card {
    position: absolute;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: var(--gray-700);
    font-weight: 600;
    animation: floaty 5s ease-in-out infinite;
}
.float-card.f1 { top: 60px; left: -40px; }
.float-card.f2 { bottom: 80px; right: -50px; animation-delay: 1.5s; }
.float-card .ic {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.float-card.f1 .ic { background: var(--gradient-warm); }
.float-card.f2 .ic { background: var(--gradient-cool); }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =========================================================
   FEATURES GRID
========================================================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature:hover::before { transform: scaleX(1); }
.feature .icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature.blue .icon { background: var(--blue-50); color: var(--blue-500); }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .95rem; }

/* =========================================================
   PILLARS / SECURITY
========================================================= */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.pillar {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}
.pillar .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    line-height: 1;
}
.pillar h3 { color: #fff; margin: 14px 0 10px; }
.pillar p { color: rgba(255,255,255,.75); font-size: .94rem; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-300), var(--blue-300));
    z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step .circle {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--orange-200);
    color: var(--orange-500);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1.6rem;
}
.step:nth-child(even) .circle { border-color: var(--blue-200); color: var(--blue-500); }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: .92rem; }

/* =========================================================
   COMPARISON TABLE
========================================================= */
.compare {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
}
.compare-table th,
.compare-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .96rem;
}
.compare-table thead th {
    background: var(--blue-800);
    color: #fff;
    font-weight: 700;
}
.compare-table thead th.us {
    background: var(--gradient-warm);
}
.compare-table tbody tr:hover { background: var(--orange-50); }
.compare-table td.us { color: var(--orange-600); font-weight: 600; background: var(--orange-50); }
.compare-table td.icon-cell { text-align: center; font-size: 1.1rem; }
.compare-table .yes { color: #16A34A; font-weight: 700; }
.compare-table .no { color: #DC2626; font-weight: 700; }

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 64px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: .4;
}
.cta-banner::before { width: 280px; height: 280px; background: radial-gradient(circle, var(--orange-500) 0%, transparent 70%); top: -80px; right: -50px; }
.cta-banner::after { width: 280px; height: 280px; background: radial-gradient(circle, var(--blue-300) 0%, transparent 70%); bottom: -80px; left: -50px; }
.cta-banner * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 16px auto 28px; }

/* =========================================================
   DOWNLOAD BUTTONS
========================================================= */
.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #0B2447;
    color: #fff;
    border-radius: 14px;
    min-width: 200px;
    transition: var(--transition);
}
.store-btn:hover { background: var(--orange-500); color: #fff; transform: translateY(-2px); }
.store-btn .svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn .lbl small { display: block; font-size: .7rem; opacity: .8; }
.store-btn .lbl strong { font-size: 1.05rem; font-weight: 700; }

/* =========================================================
   CONTENT (about / privacy / terms)
========================================================= */
.page-hero {
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at top right, rgba(255,165,89,.18), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(96,165,250,.18), transparent 55%),
        linear-gradient(180deg, #FFFBF7, #fff);
    text-align: center;
}
.page-hero .badge { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 14px; max-width: 760px; margin-inline: auto; }
.page-hero p { font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

.prose {
    max-width: 780px;
    margin: 0 auto;
}
.prose h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.6rem; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; font-size: 1rem; }
.prose ul { margin: 0 0 20px 22px; }
.prose ul li {
    list-style: disc;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.prose ul li::marker { color: var(--orange-500); }
.prose strong { color: var(--blue-800); }
.prose a { color: var(--orange-500); text-decoration: underline; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

.toc {
    background: var(--blue-50);
    border-left: 4px solid var(--blue-500);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}
.toc h4 { color: var(--blue-700); margin-bottom: 10px; }
.toc ul { margin-left: 18px; }
.toc ul li { color: var(--blue-700); margin-bottom: 4px; list-style: disc; }
.toc a { color: var(--blue-700); }

/* =========================================================
   ABOUT - team / values
========================================================= */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.value {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.value .ic {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--gradient-warm);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.value:nth-child(even) .ic { background: var(--gradient-cool); }
.value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { font-size: .94rem; }

/* =========================================================
   FORM
========================================================= */
.form-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}
.form-info h3 { margin-bottom: 12px; }
.form-info p { margin-bottom: 24px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--orange-300); transform: translateX(4px); }
.contact-card .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card:nth-child(2) .ic { background: var(--blue-50); color: var(--blue-500); }
.contact-card strong { display: block; color: var(--blue-800); margin-bottom: 2px; }
.contact-card span { font-size: .9rem; color: var(--text-muted); }

.form {
    background: #fff;
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.form h3 { margin-bottom: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--blue-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    background: #fff;
    color: var(--gray-800);
    font-family: var(--font-sans);
    font-size: .95rem;
    transition: var(--transition);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.form-check {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 18px;
}
.form-check input { margin-top: 4px; accent-color: var(--orange-500); }
.form-check label { font-size: .88rem; color: var(--text-muted); }

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: .92rem;
    font-weight: 600;
}
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* =========================================================
   FAQ
========================================================= */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: var(--orange-300);
    box-shadow: var(--shadow);
}
.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    color: var(--blue-800);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--orange-500);
    transition: transform .25s ease;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
    padding: 0 26px 22px;
    color: var(--text-muted);
    font-size: .96rem;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    background: var(--blue-800);
    color: rgba(255,255,255,.75);
    padding: 80px 0 28px;
    margin-top: 0;
}
.brand--footer { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.brand--footer:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-tagline {
    color: rgba(255,255,255,.7);
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: .94rem;
    max-width: 320px;
}
.footer-contact a { color: var(--orange-300); font-weight: 600; }
.footer-contact a:hover { color: var(--orange-400); }
.footer-col h4 {
    color: #fff;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col a:hover { color: var(--orange-300); }
.footer-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .85rem;
}
.footer-bottom p { color: rgba(255,255,255,.55); margin: 0; }
.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-300) !important;
    background: rgba(255,165,89,.08);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
}

/* =========================================================
   COOKIE BANNER
========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(11,36,71,.25);
    padding: 20px 24px;
    animation: cookieIn .45s ease-out;
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: var(--container);
    margin: 0 auto;
}
.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: .92rem;
    color: var(--gray-700);
}
.cookie-text strong { color: var(--blue-800); display: block; margin-bottom: 4px; }
.cookie-text a { color: var(--orange-500); text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
@keyframes cookieIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 960px) {
    .section { padding: 72px 0; }
    .hero { padding: 56px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .hero-content .lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .form-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .cta-banner { padding: 48px 28px; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .site-nav a {
        display: block;
        padding: 12px 6px;
        border-radius: 10px;
    }
    .site-nav a:hover { background: var(--orange-50); }
    .site-nav a.active::after { display: none; }
    .nav-cta { margin-top: 10px; text-align: center; }
    .float-card { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; }
    .cookie-actions { justify-content: flex-end; }
    .compare-table th, .compare-table td { padding: 12px; font-size: .88rem; }
    .cta-banner { padding: 40px 22px; border-radius: var(--radius-lg); }
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .steps { grid-template-columns: 1fr; }
    .phone { width: 280px; height: 560px; }
    .hero-stats { gap: 18px; }
    .hero-stats .stat strong { font-size: 1.3rem; }
}
