:root {
    --blue: #1769c2;
    --blue-700: #0f4f98;
    --blue-900: #102f57;
    --cyan: #0e9fbc;
    --orange: #f05a24;
    --orange-700: #d94712;
    --green: #16a36b;
    --ink: #102033;
    --muted: #5f7187;
    --line: #d9e6f3;
    --panel: #ffffff;
    --bg: #f5f8fc;
    --soft: #eef6ff;
    --warm: #fff4ed;
    --shadow-sm: 0 14px 36px rgba(16, 32, 51, .08);
    --shadow-md: 0 24px 70px rgba(16, 32, 51, .14);
    --shadow-lg: 0 34px 90px rgba(16, 32, 51, .18);
    --radius: 18px;
    --radius-lg: 28px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at 16% 8%, rgba(23, 105, 194, .18), transparent 28rem),
        radial-gradient(circle at 88% 10%, rgba(14, 159, 188, .15), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 46%, #fbfdff 100%);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
    background-image:
        linear-gradient(rgba(16, 68, 126, .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 68, 126, .075) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.42) 56%, transparent 100%);
}

body > * { position: relative; z-index: 1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6.5vw, 82px); max-width: 920px; }
h2 { font-size: clamp(30px, 4.1vw, 54px); }
h3 { font-size: 22px; }

.skip-link {
    position: absolute;
    top: -70px;
    left: 14px;
    z-index: 50;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}
.skip-link:focus { top: 14px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(217, 230, 243, .82);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 18px 42px rgba(16, 32, 51, .10); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; padding: 6px 0; }
.brand img { width: 182px; max-height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #425570;
    font-size: 14px;
    font-weight: 800;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.main-nav a:hover { color: var(--blue); background: var(--soft); transform: translateY(-1px); }
.main-nav .nav-cta { padding-inline: 18px; color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(23,105,194,.22); }
.main-nav .nav-cta:hover { color: #fff; background: var(--blue-900); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 99px; background: var(--ink); }

.hero { min-height: calc(100vh - 82px); display: flex; align-items: center; padding: 76px 0 84px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr); align-items: start; gap: 58px; }
.hero-copy .lead { max-width: 730px; margin-top: 22px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.microcopy { margin: 14px 0 0; color: #52657b; font-size: 14px; font-weight: 800; }
.eyebrow { width: fit-content; min-height: 30px; display: inline-flex; align-items: center; margin: 0 0 16px; padding: 0 12px; border-radius: 999px; background: var(--soft); color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(16,32,51,.16); }
.btn.primary { color: #fff; background: var(--orange); border-color: var(--orange); }
.btn.primary:hover { background: var(--orange-700); }
.btn.secondary { color: var(--blue); background: #fff; border-color: var(--line); }
.btn.full { width: 100%; }
.btn.small { min-height: 38px; padding: 0 16px; }
.hero-actions, .final-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.inline-actions { margin-top: 26px; }
.compact-actions { margin-top: 20px; }
.trust-row { max-width: 720px; display: grid; grid-template-columns: repeat(3, max-content); align-items: center; gap: 10px 12px; margin-top: 26px; }
.trust-row span { min-width: 0; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.9); color: #465c76; font-size: 14px; font-weight: 800; white-space: nowrap; }
.hero-product { min-height: auto; display: flex; align-items: flex-start; padding-top: 6px; }
.product-shell { position: relative; width: 100%; padding: 24px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-lg); overflow: hidden; }
.product-shell::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(23,105,194,.10), transparent 46%, rgba(240,90,36,.08)); }
.product-shell > * { position: relative; }
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.product-top span { color: var(--muted); font-weight: 800; }
.product-top strong { padding: 7px 12px; border-radius: 999px; background: var(--warm); color: var(--orange); font-size: 13px; }
.ribbon-preview { overflow: hidden; border: 1px solid #cfd9e8; border-radius: 16px; background: #2f3b4f; }
.ribbon-tabs { display: flex; gap: 3px; padding: 12px 12px 0; overflow-x: auto; color: #dfe8f5; font-size: 13px; }
.ribbon-tabs span { flex: 0 0 auto; padding: 10px 13px; border-radius: 9px 9px 0 0; }
.ribbon-tabs .active { background: #43546e; color: #fff; }
.ribbon-tools { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 16px; background: #43546e; }
.ribbon-tools div { min-width: 0; min-height: 122px; display: grid; align-content: center; justify-items: center; gap: 9px; padding: 13px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; color: #fff; background: rgba(255,255,255,.08); text-align: center; overflow: hidden; }
.ribbon-tools span { min-width: 42px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 900; }
.ribbon-tools strong { max-width: 100%; font-size: 12px; line-height: 1.18; overflow-wrap: anywhere; hyphens: auto; }
.product-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.product-metrics div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.product-metrics strong, .product-metrics span { display: block; }
.product-metrics strong { color: var(--blue); font-size: 25px; line-height: 1; }
.product-metrics span { margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 800; }
.product-note { margin-top: 14px; padding: 13px 15px; border-radius: 16px; color: #41556e; background: rgba(238,246,255,.82); font-size: 14px; font-weight: 800; }

.section-heading { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.section-heading .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading p:not(.eyebrow) { margin-top: 14px; color: var(--muted); font-size: 18px; }
.section-heading.narrow { max-width: 720px; }

.pain-section, .pricing { background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(245,248,252,.92)); }
.pain-grid, .comparison-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pain-grid article, .comparison-grid article, .flow-card, .template-panel, .authority-cards article, .price-card, .faq-list details, .final-card, .video-feature { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow-sm); }
.pain-grid article, .comparison-grid article { min-height: 236px; padding: 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.pain-grid article:hover, .comparison-grid article:hover, .flow-card:hover { transform: translateY(-3px); border-color: rgba(23,105,194,.34); box-shadow: var(--shadow-md); }
.pain-grid span, .comparison-grid span { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; background: var(--soft); color: var(--blue); font-size: 13px; font-weight: 900; }
.pain-grid h3, .comparison-grid h3 { font-size: 19px; }
.pain-grid p, .comparison-grid p, .flow-card li, .template-panel li, .authority-copy p, .authority-cards span, .price-card p, .faq-list p, .final-card p, .video-copy p { color: var(--muted); }
.solution-strip { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 20px; padding: 24px; border: 1px solid rgba(23,105,194,.22); border-radius: var(--radius); background: linear-gradient(135deg, #fff, #edf6ff); box-shadow: var(--shadow-sm); }
.solution-strip strong { max-width: 780px; font-size: 20px; line-height: 1.35; }

.flow-section { background: #fff; }
.flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.flow-card { display: flex; flex-direction: column; gap: 13px; padding: 24px; min-height: 300px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.flow-card span { display: inline-flex; align-self: flex-start; padding: 5px 9px; border-radius: 999px; color: var(--orange); background: var(--warm); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.flow-card h3 { font-size: 20px; line-height: 1.2; }
.flow-card ul, .check-list { display: grid; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none; }
.flow-card li { position: relative; padding-left: 20px; font-weight: 750; font-size: 14px; line-height: 1.5; }
.flow-card li::before { content: ""; position: absolute; left: 0; top: .66em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.flow-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.flow-card-feature { border-color: rgba(240,90,36,.30); background: linear-gradient(180deg, #fff, #fff8f3); }

.template-section { background: linear-gradient(135deg, #102f57, #1769c2); color: #fff; }
.template-grid, .authority-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.template-section h2, .template-section p { color: #fff; }
.template-section h2 { max-width: 780px; font-size: clamp(34px, 5vw, 64px); line-height: 1.06; }
.template-section [data-animate] > p:not(.eyebrow) { max-width: 760px; margin-top: 22px; font-size: clamp(16px, 1.55vw, 19px); line-height: 1.75; }
.template-section .eyebrow, .final-card .eyebrow { color: #fff; background: rgba(255,255,255,.16); }
.template-panel { padding: 28px; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.24); box-shadow: none; backdrop-filter: blur(12px); }
.template-panel .check-list li { color: #fff; }
.check-list li { position: relative; padding-left: 30px; color: #31465f; font-weight: 800; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--soft); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px; border: solid var(--blue); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.template-panel .check-list li::before { background: rgba(255,255,255,.18); }
.template-panel .check-list li::after { border-color: #fff; }
.check-list.compact { gap: 9px; margin-top: 18px; }

.authority-section { background: #fff; }
.authority-copy p { font-size: 18px; }
.authority-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.authority-cards article { min-height: 150px; padding: 22px; }
.authority-cards strong { display: block; margin-bottom: 10px; font-size: 19px; }
.authority-cards span { display: block; }

.video-section { background: linear-gradient(180deg, #f7fbff, #fff); }
.video-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 24px; padding: 22px; align-items: stretch; }
.video-hero { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; border-radius: 22px; overflow: hidden; color: #fff; background: var(--ink); }
.video-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,20,36,.10), rgba(8,20,36,.86)); }
.video-hero::after { content: ""; position: absolute; top: 50%; left: 50%; z-index: 2; width: 64px; height: 64px; border-radius: 50%; background: rgba(240,90,36,.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='white' d='M26 20v24l20-12z'/%3E%3C/svg%3E") center / 34px 34px no-repeat; transform: translate(-50%, -50%); box-shadow: 0 18px 42px rgba(8,20,36,.36); }
.video-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .24s ease; }
.video-hero:hover img { transform: scale(1.05); }
.video-hero span, .video-hero strong { position: relative; z-index: 3; }
.video-hero span { color: #cfe2ff; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.video-hero strong { margin-top: 8px; font-size: 26px; line-height: 1.16; }
.video-copy { align-self: center; padding: 20px; }
.video-copy h3 { font-size: 30px; }
.video-copy p { margin-top: 12px; }

.comparison-section { background: #fff; }
.comparison-grid article:nth-child(odd) span { color: var(--orange); background: var(--warm); }
.comparison-grid article:nth-child(even) span { color: var(--green); background: #e9fbf3; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 940px; margin: 0 auto; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px; overflow: hidden; }
.price-card.preferred { border-color: rgba(240,90,36,.42); background: linear-gradient(180deg, #fff, #fff6f0); }
.tag { min-height: 28px; display: inline-flex; align-items: center; width: fit-content; margin-bottom: 18px; padding: 0 10px; border-radius: 999px; background: var(--soft); color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.preferred .tag { color: var(--orange); background: var(--warm); }
.price { margin: 18px 0 12px; color: var(--blue); font-size: 48px; font-weight: 900; line-height: 1; }
.preferred .price { color: var(--orange); }
.payment-note { display: grid; gap: 4px; margin: 0 0 18px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(237,245,255,.72); }
.preferred .payment-note { border-color: rgba(240,90,36,.18); background: rgba(255,240,232,.72); }
.payment-note strong { color: var(--blue); font-size: 15px; line-height: 1.1; }
.preferred .payment-note strong { color: var(--orange); }
.payment-note span { color: var(--muted); font-size: 13px; font-weight: 800; line-height: 1.35; }
.plan-cta { margin-top: auto; transform: translateY(14px); }

.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-list details { padding: 18px 20px; }
.faq-list summary { cursor: pointer; color: var(--ink); font-weight: 900; }
.faq-list p { margin: 12px 0 0; }
.faq-list a { color: var(--blue); font-weight: 900; }

.final-cta { padding-top: 48px; }
.final-card { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 38px; color: #fff; background: linear-gradient(135deg, #102f57, #1769c2); }
.final-card h2, .final-card p { color: #fff; }
.final-card .btn.secondary { border-color: rgba(255,255,255,.32); }

.site-footer { padding: 56px 0 24px; color: #d8e6f6; background: #101d2f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
.footer-logo { width: 172px; margin-bottom: 16px; border-radius: 10px; background: #fff; }
.site-footer p { max-width: 420px; color: #b8c7da; }
.site-footer strong, .site-footer a { display: block; }
.site-footer strong { margin-bottom: 12px; color: #fff; }
.site-footer a { margin-bottom: 8px; color: #d8e6f6; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #a9bad0; }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 40; max-width: 720px; display: none; align-items: center; justify-content: space-between; gap: 18px; margin: 0 auto; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); }
.download-modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 22px; }
.download-modal.is-open { display: flex; }
.download-modal__backdrop { position: absolute; inset: 0; background: rgba(10,24,45,.58); backdrop-filter: blur(8px); }
.download-modal__dialog { position: relative; z-index: 1; width: min(100%, 520px); padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(240,247,255,.96)); box-shadow: 0 30px 90px rgba(14,32,60,.28); }
.download-modal__dialog h2 { margin: 6px 0 10px; font-size: clamp(28px, 4vw, 40px); line-height: .98; }
.download-modal__intro { margin: 0 0 22px; color: var(--muted); }
.download-modal__close { position: absolute; top: 18px; right: 18px; display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.download-form { display: grid; gap: 16px; }
.download-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
.download-form input[type="text"], .download-form input[type="email"] { width: 100%; min-height: 48px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #fff; font: inherit; outline: 0; }
.download-form input:focus { border-color: rgba(32,105,205,.62); box-shadow: 0 0 0 4px rgba(32,105,205,.12); }
.download-consent { grid-template-columns: 18px 1fr; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.72); color: var(--muted); font-size: 14px; line-height: 1.45; }
.download-consent input { width: 18px; height: 18px; margin-top: 2px; }
.download-consent a { color: var(--blue); font-weight: 900; }
.download-form__message { display: none; margin: 0; padding: 12px 14px; border-radius: 14px; font-weight: 800; }
.download-form__message.is-visible { display: block; }
.download-form__message.is-error { color: #9f1239; background: #ffe4e6; }
.download-form__message.is-success { color: #166534; background: #dcfce7; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 39; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: #fff; background: #16a34a; box-shadow: 0 18px 40px rgba(22,163,74,.30); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float span, .whatsapp-float strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.whatsapp-float:hover { transform: translateY(-3px); background: #12833d; box-shadow: 0 22px 48px rgba(22,163,74,.36); }

[data-animate] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    [data-animate] { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .container { width: min(100% - 30px, 900px); }
    .section { padding: 74px 0; }
    .menu-toggle { display: inline-flex; }
    .main-nav { position: fixed; top: 92px; left: 15px; right: 15px; display: none; flex-direction: column; align-items: stretch; gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-md); }
    .main-nav.is-open { display: flex; }
    .main-nav a { justify-content: center; }
    .hero { min-height: auto; padding-top: 56px; }
    .hero-grid, .template-grid, .authority-grid, .video-feature { grid-template-columns: 1fr; }
    .hero-product { min-height: auto; padding-top: 0; }
    .flow-grid, .pain-grid, .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 660px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 22px, 540px); }
    .header-inner { min-height: 74px; }
    .brand img { width: 154px; }
    h1 { font-size: clamp(38px, 12vw, 56px); }
    .hero-copy .lead { font-size: 18px; }
    .trust-row { grid-template-columns: 1fr; align-items: stretch; }
    .trust-row span { width: fit-content; max-width: 100%; white-space: normal; }
    .hero-actions, .final-actions, .inline-actions, .solution-strip, .final-card { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .product-shell { padding: 16px; border-radius: 20px; }
    .ribbon-tools, .product-metrics, .flow-grid, .pain-grid, .comparison-grid, .authority-cards, .footer-grid { grid-template-columns: 1fr; }
    .ribbon-tools strong { font-size: 15px; overflow-wrap: normal; }
    .pain-grid article, .comparison-grid article, .flow-card, .template-panel, .price-card, .final-card, .video-feature { padding: 22px; }
    .video-hero { min-height: 260px; padding: 22px; }
    .video-copy { padding: 0; }
    .video-copy h3 { font-size: 26px; }
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .download-modal { padding: 14px; }
    .download-modal__dialog { padding: 26px 20px 20px; border-radius: 22px; }
    .download-modal__close { top: 12px; right: 12px; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; }
    .whatsapp-float svg { width: 29px; height: 29px; }
}

