/* ===== Fytlix — product website ===== */
:root {
    /* Brand colors sampled from icon.svg */
    --orange:   #fc6018;
    --orange-2: #f04818;
    --red:      #d82418;
    --accent:   #d12718; /* readable accent on light background */

    /* Plus tier accent (matches the app manual's Plus badge) */
    --plus:      #6b3fb0;
    --plus-soft: #efe3ff;

    --bg:      #fffaf6;
    --bg-2:    #ffeede;
    --surface: #ffffff;
    --surface-2: #fff6ef;
    --border:  rgba(60, 32, 14, 0.12);
    --border-strong: rgba(60, 32, 14, 0.2);
    --text:    #211711;
    --muted:   #6f655c;
    --shadow:  0 6px 22px rgba(60, 30, 10, 0.07);
    --shadow-lg: 0 24px 60px rgba(60, 30, 10, 0.14);

    --grad: linear-gradient(120deg, var(--orange), var(--orange-2) 50%, var(--red));
    --radius: 18px;
    --radius-lg: 26px;
    --maxw: 1120px;
    --nav-h: 74px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: radial-gradient(120% 120% at 50% 0%, var(--bg-2), var(--bg) 60%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

/* Background glow */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}
.bg-glow--one { top: -180px; left: -120px; width: 520px; height: 520px;
    background: radial-gradient(circle, var(--orange), transparent 70%); }
.bg-glow--two { bottom: -200px; right: -140px; width: 560px; height: 560px;
    background: radial-gradient(circle, var(--red), transparent 70%); }

/* Layout wrappers */
main, .footer__inner { position: relative; z-index: 1; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }

/* Section pill / eyebrow */
.eyebrow {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    background: #fff1e8;
    border: 1px solid rgba(240, 72, 24, 0.25);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

/* ===== Sticky header / nav ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 246, 0.82);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    min-height: var(--nav-h);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { display: block; }
.brand__name { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav a {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted);
    transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--accent); background: var(--surface-2); }

.header-cta {
    margin-left: 6px;
    background: var(--grad);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 22px rgba(240, 72, 24, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(216, 36, 24, 0.36); }
/* Keep the CTA white on its gradient (outranks the .nav a link colors). */
.nav a.header-cta { color: #fff; }
.nav a.header-cta:hover { color: #fff; background: var(--grad); }

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px; height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font-size: 1.15rem;
    cursor: pointer;
}

/* ===== Buttons ===== */
.cta-primary {
    display: inline-block;
    background: var(--grad);
    color: #ffffff;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 999px;
    font-size: 1.02rem;
    box-shadow: 0 10px 30px rgba(240, 72, 24, 0.32);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(216, 36, 24, 0.4); }
.cta-ghost {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.02rem;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.cta-ghost:hover { border-color: var(--orange); color: var(--accent); transform: translateY(-2px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Hero ===== */
.hero {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 72px 24px 40px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero__copy { text-align: left; }
.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); font-weight: 600; margin-bottom: 14px; }
.hero__desc { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 0 28px; }
.hero .cta-row { justify-content: flex-start; }
.hero__note { margin-top: 18px; color: var(--muted); font-size: 0.95rem; }
.hero__note a { color: var(--accent); font-weight: 600; }

/* Hero SVG illustration */
.hero-illustration { width: 100%; height: auto; display: block; overflow: visible; }

/* Hero app-window mockup (pure CSS, no image needed) */
.mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.mock__bar {
    display: flex; align-items: center; gap: 7px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.mock__dot:nth-child(1) { background: #fca5a5; }
.mock__dot:nth-child(2) { background: #fcd34d; }
.mock__dot:nth-child(3) { background: #86efac; }
.mock__title { margin-left: 10px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.mock__body { padding: 20px; display: grid; gap: 14px; }
.mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock__stat {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}
.mock__stat b { display: block; font-size: 1.35rem; letter-spacing: -0.02em; }
.mock__stat span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.mock__row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.mock__pill {
    width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto;
    display: grid; place-items: center; color: #fff; font-size: 1rem;
    background: var(--grad);
}
.mock__pill--alt { background: linear-gradient(135deg, #7c9cff, #5b6ef0); }
.mock__pill--green { background: linear-gradient(135deg, #34d399, #10b981); }
.mock__lines { flex: 1; display: grid; gap: 6px; }
.mock__line { height: 9px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); }
.mock__line--short { width: 45%; }
.mock__line--mid { width: 70%; }
.mock__tag {
    margin-left: auto; font-size: 0.72rem; font-weight: 700; color: var(--accent);
    background: #fff1e8; border: 1px solid rgba(240,72,24,0.22);
    padding: 4px 10px; border-radius: 999px; flex: 0 0 auto;
}

/* ===== Trust / stat strip ===== */
.strip {
    max-width: var(--maxw);
    margin: 20px auto 0;
    padding: 0 24px;
}
.strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 20px;
    text-align: center;
}
.strip__item b {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.strip__item span { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* ===== Section head ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 24px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ===== Features grid ===== */
.features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.feature {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 24px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(240, 72, 24, 0.45); box-shadow: 0 12px 30px rgba(60, 30, 10, 0.12); }
.feature__icon {
    font-size: 1.5rem;
    color: var(--accent);
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(252,96,24,0.18), rgba(216,36,24,0.18));
    margin-bottom: 16px;
}
.feature__title { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.feature__desc { color: var(--muted); font-size: 0.96rem; }
.feature__desc a { color: var(--accent); font-weight: 600; }

/* Plus badge */
.badge-plus {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--plus);
    background: var(--plus-soft);
    border: 1px solid rgba(107, 63, 176, 0.25);
    padding: 3px 9px;
    border-radius: 999px;
    vertical-align: middle;
}
.badge-soon {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--accent);
    background: #fff1e8;
    border: 1px solid rgba(240, 72, 24, 0.25);
    padding: 3px 9px;
    border-radius: 999px;
    vertical-align: middle;
}

/* ===== Alternating detail sections ===== */
.detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0;
}
.detail + .detail { border-top: 1px solid var(--border); }
.detail__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.detail__title .badge-plus, .detail__title .badge-soon { margin-left: 8px; }
.detail__lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 20px; }
.detail__list { list-style: none; display: grid; gap: 12px; }
.detail__list li { position: relative; padding-left: 32px; font-size: 0.98rem; }
.detail__list li i {
    position: absolute; left: 0; top: 3px;
    color: var(--accent);
    width: 20px; text-align: center;
}
.detail--reverse .detail__media { order: -1; }

/* Illustrated SVG art / real image for detail sections */
.detail-art,
.detail-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--surface);
    overflow: hidden;
}

/* Media card for detail sections */
.media-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    display: grid;
    gap: 12px;
}
.media-card--plus { border-color: rgba(107, 63, 176, 0.28); }

/* Mini calendar */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal span {
    aspect-ratio: 1;
    border-radius: 9px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: grid; place-items: center;
    font-size: 0.72rem; font-weight: 600; color: var(--muted);
}
.cal span.on { color: #fff; border: none; background: var(--grad); }
.cal span.on--alt { background: linear-gradient(135deg, #7c9cff, #5b6ef0); }
.cal span.on--green { background: linear-gradient(135deg, #34d399, #10b981); }

/* Invoice-ish list */
.doc-line {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px;
}
.doc-line b { font-size: 0.92rem; }
.doc-line span { color: var(--muted); font-size: 0.82rem; }
.doc-line .amt { margin-left: auto; font-weight: 800; }

/* ===== Two apps ===== */
.apps__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.app-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 28px;
}
.app-card__icon {
    font-size: 1.5rem; color: var(--accent);
    width: 56px; height: 56px; display: grid; place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(252,96,24,0.18), rgba(216,36,24,0.18));
    margin-bottom: 16px;
}
.app-card h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: 6px; }
.app-card .who { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 12px; }
.app-card p { color: var(--muted); font-size: 0.98rem; }

/* ===== Intis banner ===== */
.intis {
    max-width: var(--maxw);
    margin: 76px auto 0;
    padding: 0 24px;
}
.intis__inner {
    background: linear-gradient(135deg, #241a2e, #3a2340);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 46px 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
}
.intis__inner .eyebrow {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #e9d8ff;
}
.intis h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.intis p { color: rgba(255,255,255,0.82); font-size: 1.02rem; }
.intis p + p { margin-top: 12px; }
.intis a { color: #e9d8ff; font-weight: 700; }
.intis__visual {
    display: grid; place-items: center;
}
.intis__scan {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 26px;
    text-align: center;
}
.intis__scan i { font-size: 3.2rem; color: #e9d8ff; }
.intis__scan b { display: block; margin-top: 14px; font-size: 1.05rem; }
.intis__scan span { display: block; margin-top: 4px; color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== Comparison table ===== */
.compare { padding-bottom: 0; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface); }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}
.compare-table th, .compare-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare-table thead th {
    font-size: 0.95rem;
    background: var(--surface-2);
    position: sticky; top: 0;
}
.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3),
.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) { text-align: center; width: 130px; }
.compare-table .tier { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.compare-table .tier b { font-size: 1.05rem; }
.compare-table .tier small { color: var(--muted); font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-table .grp td {
    font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--muted); background: var(--surface-2);
}
.compare-table .feat b { font-weight: 700; }
.compare-table .feat span { display: block; color: var(--muted); font-size: 0.85rem; }
.yes { color: #12a150; font-size: 1.05rem; }
.no  { color: var(--border-strong); font-size: 1.05rem; }
.compare-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* ===== Pricing ===== */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 22px;
    justify-content: center;
    align-items: stretch;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--grad);
}
.price-card--plus::before { background: linear-gradient(120deg, #8b5cf6, #6b3fb0); }
.price-card--plus { border-color: rgba(107, 63, 176, 0.3); }
.price-card__tier { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.price-card__tier .badge-plus { margin-left: 6px; }
.price-card__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.price-card__from { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.price-card__amount { display: flex; align-items: baseline; gap: 6px; margin: 4px 0 22px; }
.price-card__value {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.price-card--plus .price-card__value { background: linear-gradient(120deg, #8b5cf6, #6b3fb0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-card__period { color: var(--muted); font-weight: 600; font-size: 1rem; }
.price-card__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; text-align: left; }
.price-card__list li { position: relative; padding-left: 30px; font-size: 0.97rem; }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.price-card--plus .price-card__list li::before { color: var(--plus); }
.price-card .cta-primary, .price-card .cta-ghost { margin-top: auto; text-align: center; }
.price-card--plus .cta-primary { background: linear-gradient(120deg, #8b5cf6, #6b3fb0); box-shadow: 0 10px 30px rgba(107, 63, 176, 0.32); }

/* ===== Fiscalization ===== */
.fiscal-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px 36px;
    text-align: center;
}
.fiscal-card p { color: var(--muted); font-size: 1rem; }
.fiscal-card p + p { margin-top: 14px; }
.fiscal-card a { color: var(--accent); font-weight: 600; }

/* ===== Contact ===== */
.contact-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 42px 40px;
    text-align: center;
}
.contact-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.contact-card p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.contact-mails { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.mail-chip {
    display: flex; align-items: center; gap: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
}
.mail-chip:hover { border-color: var(--orange); transform: translateY(-2px); }
.mail-chip i { font-size: 1.2rem; color: var(--accent); }
.mail-chip b { display: block; font-size: 0.98rem; }
.mail-chip span { display: block; color: var(--muted); font-size: 0.82rem; }

/* ===== Footer ===== */
.site-footer { margin-top: 90px; border-top: 1px solid var(--border); padding: 48px 24px 30px; }
.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.2rem; }
.footer__company { display: flex; flex-direction: column; gap: 4px; font-size: 0.93rem; color: var(--muted); }
.footer__company strong { color: var(--text); font-size: 1rem; }
.footer__company a { color: var(--accent); }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links-title { color: var(--text); font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.footer__links a { color: var(--muted); font-weight: 600; font-size: 0.93rem; transition: color 0.2s; width: fit-content; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { max-width: var(--maxw); margin: 36px auto 0; text-align: center; color: var(--muted); font-size: 0.85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 48px; }
    .hero__copy { text-align: center; }
    .hero .cta-row { justify-content: center; }
    .hero__desc { margin-inline: auto; }
    .hero__media { max-width: 480px; margin: 0 auto; }
    .detail { grid-template-columns: 1fr; gap: 28px; }
    .detail--reverse .detail__media { order: 0; }
    .apps__grid { grid-template-columns: 1fr; }
    .intis__inner { grid-template-columns: 1fr; }
    .strip__inner { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav { display: none; }
    .nav-toggle { display: block; }
    .site-header.open .nav {
        display: flex;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px 16px 18px;
        background: rgba(255, 250, 246, 0.98);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .site-header.open .nav a { padding: 12px 14px; }
    .site-header.open .header-cta { text-align: center; margin: 6px 0 0; }
}

@media (max-width: 480px) {
    .strip__inner { grid-template-columns: 1fr; }
    .contact-mails { flex-direction: column; }
    .footer__inner { flex-direction: column; }
}
