/* ===========================================================================
   STASEO 
   =========================================================================== */

/* --- Font ----------------------------------------------------------------- */
@font-face {
    font-family: 'Assistant';
    src: url('/assets/fonts/Assistant.ttf') format('truetype-variations');
    font-weight: 200 800;
    font-display: swap;
    font-style: normal;
}

/* --- Design tokens -------------------------------------------------------- */
:root {
    --navy-900: #0b1f3a;
    --navy-800: #112a4d;
    --navy-700: #1b3a66;
    --ink: #16263b;
    --slate: #51647d;
    --muted: #6b7a8d;
    --line: #e3e9f0;
    --bg: #ffffff;
    --bg-soft: #f5f8fc;
    --bg-tint: #eef4fb;
    --accent: #0aa4e6;       /* STASEO cyan */
    --accent-600: #0688c2;
    --accent-700: #056b99;
    --accent-soft: #e2f4fc;
    --green: #1faa6c;
    --white: #ffffff;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(11, 31, 58, .06), 0 2px 8px rgba(11, 31, 58, .05);
    --shadow-md: 0 10px 30px rgba(11, 31, 58, .10);
    --shadow-lg: 0 24px 60px rgba(11, 31, 58, .16);

    --container: 1140px;
    --gap: clamp(1rem, 2.5vw, 2rem);
    --section-y: clamp(3.5rem, 7vw, 6rem);

    --font: 'Assistant', system-ui, -apple-system, 'Segoe UI', 'Arial Hebrew', Arial, sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-700); text-decoration: none; }
a:hover { color: var(--accent-600); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy-900); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }
h2 + p, h2 + .lead { margin-top: .85rem; }
.split p + p, .prose p + p { margin-top: 1rem; }
strong { color: var(--ink); font-weight: 700; }

.skip-link {
    position: absolute; inset-inline-start: 0; top: 0; transform: translateY(-150%);
    background: var(--navy-900); color: #fff; padding: .6rem 1rem; z-index: 200;
    border-radius: 0 0 8px 0; transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* --- Layout helpers ------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy-900); color: #cfe0f2; }
.section-navy h2, .section-navy h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.3rem; color: var(--slate); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.eyebrow {
    display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .08em;
    color: var(--accent-700); background: var(--accent-soft);
    padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: inherit; font-weight: 700; font-size: 1.05rem; cursor: pointer;
    padding: .8rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    line-height: 1;
}
.btn-lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(10, 164, 230, .3); }
.btn-primary:hover { background: var(--accent-600); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10, 164, 230, .38); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-outline { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-700); transform: translateY(-2px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
.footer-logo { height: 54px; }
.brand-mark { font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; color: var(--navy-900); }
.brand-accent { color: var(--accent); }
.brand-sub { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .12em; }
.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav > ul { display: flex; align-items: center; gap: 1.4rem; }
.primary-nav a { color: var(--ink); font-weight: 600; font-size: 1.04rem; padding: .4rem 0; position: relative; }
.primary-nav a:hover { color: var(--accent-700); }
.primary-nav a[aria-current="page"] { color: var(--accent-700); }
.primary-nav a[aria-current="page"]::after {
    content: ''; position: absolute; inset-inline: 0; bottom: -2px; height: 2px; background: var(--accent); border-radius: 2px;
}
.primary-nav .nav-cta {
    flex: none; white-space: nowrap;
    padding: .58rem 1.35rem; font-size: 1rem; font-weight: 700; border-radius: var(--radius-sm);
    background: var(--accent); color: #fff; box-shadow: none; border: 0;
}
.primary-nav .nav-cta:hover { background: var(--navy-900); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(10, 164, 230, .32); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: .2s; }

/* --- Nav dropdown --------------------------------------------------------- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: .3rem; }
.dropdown-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 0; padding: .2rem; margin-inline-start: .15rem; cursor: pointer;
    color: var(--slate); border-radius: 6px;
}
.dropdown-toggle svg { transition: transform .2s ease; }
.dropdown {
    position: absolute; inset-inline-end: 0; top: calc(100% + .5rem); z-index: 120;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.1rem;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown.mega { display: grid; grid-template-columns: repeat(3, minmax(170px, 1fr)); gap: .4rem 1.6rem; }
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover > .dropdown-toggle svg,
.has-dropdown:focus-within > .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-heading {
    font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--muted); margin: .3rem .8rem .5rem; padding-bottom: .4rem; border-bottom: 1px solid var(--line);
}
.dropdown-group ul { display: grid; gap: .05rem; }
.dropdown-subheading { margin-top: .4rem; padding-top: .45rem; border-top: 1px solid var(--line); }
.dropdown-subheading span { font-size: .72rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); padding-inline: .55rem; }
.dropdown a {
    display: block; padding: .5rem .8rem; border-radius: 8px;
    font-size: 1rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-tint); color: var(--accent-700); }
.dropdown a[aria-current="page"] { color: var(--accent-700); background: var(--accent-soft); }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #dce8f6; padding-block: clamp(3.5rem, 8vw, 6.5rem); background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%); }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 90% 0%, rgba(10, 164, 230, .25), transparent 60%);
    pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { color: #b9cbe2; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; color: #9fb4cf; font-size: 1rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { color: var(--accent); flex: none; }

.hero-card {
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg); padding: 1.6rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric {
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm); padding: 1rem;
    animation: metricSpot 8s ease-in-out infinite;
    will-change: background-color, border-color, transform;
}
/* Sequential spotlight: only one tile pulses at a time (1 -> 2 -> 3 -> 4). */
.metric:nth-child(1) { animation-delay: 0s; }
.metric:nth-child(2) { animation-delay: 2s; }
.metric:nth-child(3) { animation-delay: 4s; }
.metric:nth-child(4) { animation-delay: 6s; }
.metric b { display: block; color: #fff; font-size: 1.6rem; font-weight: 800; }
.metric span { color: #9fb4cf; font-size: .82rem; }
.metric.up b { color: #4fd6a0; }

@keyframes metricSpot {
    0%, 25%, 100% {
        background-color: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1);
        box-shadow: none; transform: none;
    }
    12.5% {
        background-color: rgba(79, 214, 160, .14); border-color: rgba(79, 214, 160, .5);
        box-shadow: 0 0 0 1px rgba(79, 214, 160, .25), 0 10px 26px rgba(79, 214, 160, .16);
        transform: translateY(-2px) scale(1.035);
    }
}
@media (prefers-reduced-motion: reduce) {
    .metric { animation: none; }
}

/* --- Inner page hero ------------------------------------------------------ */
.hero-inner { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero-inner h1 { color: #fff; max-width: 18ch; margin-bottom: 1.1rem; }
.hero-inner .lead { color: #b9cbe2; max-width: 64ch; margin-bottom: 1.8rem; }
.hero-inner .breadcrumb { color: #7e96b6; padding-top: 0; }
.hero-inner .breadcrumb a { color: #9fb4cf; }
.hero-inner.has-visual h1 { max-width: 16ch; }
.hero-inner.has-visual .lead { max-width: 46ch; }

/* --- Hero visuals (per-page hero animations) ------------------------------ */
/* Short caption under each hero animation. */
.hv-cap {
    margin-top: 1.2rem;
    text-align: center; color: #cdddf0; font-size: .9rem; font-weight: 600; letter-spacing: .01em;
}

/* B2B: organic growth chart */
.biz-chart { display: flex; align-items: flex-end; gap: .55rem; height: 140px; padding-bottom: .1rem; }
.biz-bar {
    flex: 1; height: 100%; border-radius: 8px 8px 4px 4px;
    transform-origin: bottom; transform: scaleY(var(--a, .4));
    background: linear-gradient(180deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .07));
    animation: bizGrow 6s ease-in-out infinite;
    will-change: transform;
}
.biz-bar.is-goal {
    background: linear-gradient(180deg, var(--accent), #28b487);
    box-shadow: 0 0 18px rgba(79, 214, 160, .35);
}
.biz-bar:nth-child(1) { animation-delay: 0s; }
.biz-bar:nth-child(2) { animation-delay: .5s; }
.biz-bar:nth-child(3) { animation-delay: 1s; }
.biz-bar:nth-child(4) { animation-delay: 1.5s; }
.biz-bar:nth-child(5) { animation-delay: 2s; }
@keyframes bizGrow {
    0%, 100% { transform: scaleY(var(--a, .4)); }
    50%      { transform: scaleY(var(--b, .5)); }
}
.biz-points { display: grid; gap: .55rem; margin-top: 1.3rem; }
.biz-points li {
    position: relative; padding-inline-start: 1.55rem;
    color: #cdddf0; font-size: .92rem; line-height: 1.4; list-style: none;
}
.biz-points li::before {
    content: ''; position: absolute; inset-inline-start: 0; top: .3em;
    width: .7rem; height: .7rem; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 3px rgba(79, 214, 160, .15);
}
@media (prefers-reduced-motion: reduce) {
    .biz-bar { animation: none; transform: scaleY(var(--b, .5)); }
}

/* SEO: organic-traffic growth line (progress -> traffic -> leads) */
.seo-chart { margin-bottom: .3rem; }
.seo-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.seo-line {
    fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 340; animation: seoDraw 11s ease-in-out infinite;
}
.seo-area { fill: url(#seoFill); animation: seoArea 11s ease-in-out infinite; }
.seo-dot { fill: #fff; animation: seoDot 11s ease-in-out infinite; }
@keyframes seoDraw {
    0%        { stroke-dashoffset: 340; opacity: 0; }
    12%       { opacity: 1; }
    60%, 86%  { stroke-dashoffset: 0; opacity: 1; }
    100%      { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes seoArea { 0%, 12% { opacity: 0; } 60%, 86% { opacity: 1; } 100% { opacity: 0; } }
@keyframes seoDot {
    0%, 55% { opacity: 0; }
    62%     { opacity: 1; }
    86%     { opacity: 1; }
    100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .seo-line { animation: none; stroke-dashoffset: 0; }
    .seo-area, .seo-dot { animation: none; opacity: 1; }
}

/* GEO: getting cited inside AI answers */
.geo-ai { display: grid; gap: .7rem; }
.geo-q { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px 12px 12px 4px; padding: .55rem .8rem; color: #cdddf0; font-size: .88rem; justify-self: start; max-width: 85%; }
.geo-a { background: rgba(79, 214, 160, .1); border: 1px solid rgba(79, 214, 160, .32); border-radius: 12px 12px 4px 12px; padding: .75rem .8rem; justify-self: end; max-width: 92%; display: grid; gap: .5rem; }
.geo-a .ln { height: .55rem; border-radius: 99px; background: rgba(255, 255, 255, .2); width: 0; animation: geoType 12s ease-in-out infinite; }
.geo-a .ln.l2 { --w: 60%; animation-delay: .9s; }
.geo-cite { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; color: #cdddf0; opacity: 0; animation: geoCite 12s ease-in-out infinite; }
.geo-cite b { color: #06231a; background: var(--accent); font-weight: 800; padding: .12rem .5rem; border-radius: 99px; }
@keyframes geoType { 0% { width: 0; } 14% { width: var(--w, 88%); } 78% { width: var(--w, 88%); } 88%, 100% { width: 0; } }
@keyframes geoCite { 0%, 26% { opacity: 0; transform: translateY(5px); } 36%, 78% { opacity: 1; transform: none; } 88%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .geo-a .ln { width: var(--w, 88%); animation: none; } .geo-cite { opacity: 1; animation: none; } }

/* International: a slowly rotating globe */
.intl-globe { width: 210px; margin: .2rem auto .1rem; }
.intl-globe svg { width: 100%; height: auto; display: block; overflow: visible; }
.globe-line { fill: none; stroke: rgba(79, 214, 160, .4); stroke-width: 1.2; }
.globe-merid { transform-box: fill-box; transform-origin: center; animation: globeSpin 16s linear infinite; }
@keyframes globeSpin { from { transform: scaleX(1); } to { transform: scaleX(-1); } }
.globe-pin { fill: var(--accent); animation: globePin 3.2s ease-in-out infinite; }
@keyframes globePin { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .globe-merid { animation: none; } .globe-pin { animation: none; opacity: .85; } }

/* Google Ads: a click that turns into conversions */
.serp { position: relative; display: grid; gap: .55rem; width: 100%; max-width: 300px; margin-inline: auto; padding: .4rem 0; }
.serp-row { position: relative; background: rgba(255, 255, 255, .06); border-radius: 10px; padding: .65rem .75rem; display: grid; gap: .4rem; }
.serp-row.is-ad {
    background: rgba(79, 214, 160, .12); border: 1px solid rgba(79, 214, 160, .45);
    box-shadow: 0 8px 22px rgba(79, 214, 160, .18); animation: adsPulse 4.5s ease-in-out infinite;
}
.serp-tag { justify-self: start; font-size: .62rem; font-weight: 800; letter-spacing: .02em; color: #06231a; background: var(--accent); padding: .12rem .45rem; border-radius: 5px; }
.serp-url { font-size: .68rem; color: #9fb4cf; }
.serp-title { font-size: .82rem; font-weight: 700; line-height: 1.3; color: #cfe9dd; }
.serp-line { height: .4rem; border-radius: 99px; background: rgba(255, 255, 255, .16); }
.serp-line.s { width: 72%; }
.serp-line.t { width: 56%; height: .52rem; background: rgba(255, 255, 255, .3); }
.serp-cursor { position: absolute; inset-inline-start: 1.6rem; inset-block-end: -.5rem; width: 20px; color: #fff; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35)); animation: adsPoint 4.5s ease-in-out infinite; }
@keyframes adsPulse { 0%, 100% { box-shadow: 0 8px 22px rgba(79, 214, 160, .12); } 50% { box-shadow: 0 12px 28px rgba(79, 214, 160, .32); } }
@keyframes adsPoint { 0%, 100% { transform: translate(0, 0); } 45%, 55% { transform: translate(-3px, -4px); } }

@media (prefers-reduced-motion: reduce) { .serp-row.is-ad, .serp-cursor { animation: none; } }

/* Maintenance: a marker that keeps climbing the steps (ongoing growth) */
.mnt-rise { margin: .2rem auto .1rem; }
.mnt-rise svg { width: 100%; height: auto; display: block; overflow: visible; }
.mnt-steps { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.mnt-area { fill: rgba(79, 214, 160, .12); }
.mnt-rider {
    fill: #fff; filter: drop-shadow(0 0 6px rgba(79, 214, 160, .85));
    offset-path: path('M185 118 L150 118 L150 96 L115 96 L115 74 L80 74 L80 52 L45 52 L45 30 L20 30');
    offset-rotate: 0deg; animation: mntRide 6.5s ease-in-out infinite;
}
@keyframes mntRide {
    0%   { offset-distance: 0%; opacity: 0; }
    7%   { opacity: 1; }
    78%  { offset-distance: 100%; opacity: 1; }
    90%  { offset-distance: 100%; opacity: 0; }
    100% { offset-distance: 0%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .mnt-rider { offset-distance: 100%; animation: none; } }

/* Store: ecommerce tiles + cart filling */
.store-top { display: flex; align-items: center; justify-content: flex-end; margin-bottom: .8rem; }
.store-cart { display: inline-flex; align-items: center; gap: .45rem; color: #cdddf0; font-size: .85rem; }
.store-cart svg { width: 1.3rem; height: 1.3rem; color: #fff; }
.store-cart b { background: var(--accent); color: #06231a; font-weight: 800; font-size: .72rem; padding: .1rem .45rem; border-radius: 99px; animation: storeBadge 6s ease-in-out infinite; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.store-tile { display: flex; flex-direction: column; gap: .35rem; padding: .45rem; border-radius: 10px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); animation: storeSpot 12s ease-in-out infinite; }
.store-thumb { aspect-ratio: 4 / 3; border-radius: 6px; background: linear-gradient(135deg, #6aa9ff, #3f6fd6); }
.store-line { height: 5px; width: 78%; border-radius: 99px; background: rgba(255, 255, 255, .28); }
.store-tag { height: 8px; width: 40%; border-radius: 99px; background: var(--accent); opacity: .9; }
.store-tile:nth-child(1) .store-thumb { background: linear-gradient(135deg, #6aa9ff, #3f6fd6); }
.store-tile:nth-child(2) .store-thumb { background: linear-gradient(135deg, #ffb36a, #e0823f); }
.store-tile:nth-child(3) .store-thumb { background: linear-gradient(135deg, #7fe0b0, #36b483); }
.store-tile:nth-child(4) .store-thumb { background: linear-gradient(135deg, #c79bff, #8a5bd6); }
.store-tile:nth-child(5) .store-thumb { background: linear-gradient(135deg, #ff8fa3, #e0546f); }
.store-tile:nth-child(6) .store-thumb { background: linear-gradient(135deg, #ffd56a, #e0ad2f); }
.store-tile:nth-child(2) { animation-delay: 2s; }
.store-tile:nth-child(3) { animation-delay: 4s; }
.store-tile:nth-child(4) { animation-delay: 6s; }
.store-tile:nth-child(5) { animation-delay: 8s; }
.store-tile:nth-child(6) { animation-delay: 10s; }
@keyframes storeSpot { 0%, 10%, 100% { border-color: rgba(255, 255, 255, .12); transform: none; box-shadow: none; } 5% { border-color: rgba(79, 214, 160, .55); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, .25); } }
@keyframes storeBadge { 0%, 100% { transform: none; box-shadow: 0 0 0 rgba(79, 214, 160, 0); } 50% { transform: scale(1.12); box-shadow: 0 0 12px rgba(79, 214, 160, .4); } }
@media (prefers-reduced-motion: reduce) { .store-tile, .store-cart b { animation: none; } }

/* CRO: conversion funnel flowing down */
.cro-funnel { display: grid; gap: .5rem; }
.cro-step {
    height: 2.5rem; border-radius: 8px; display: flex; align-items: center; padding-inline: .85rem;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12);
    color: #cdddf0; font-size: .85rem; margin-inline: auto; width: var(--w, 100%);
    animation: croFlow 7s ease-in-out infinite;
}
.cro-step:nth-child(1) { animation-delay: 0s; }
.cro-step:nth-child(2) { animation-delay: .4s; }
.cro-step:nth-child(3) { animation-delay: .8s; }
.cro-step:nth-child(4) { animation-delay: 1.2s; }
.cro-step.is-conv { background: rgba(79, 214, 160, .16); border-color: rgba(79, 214, 160, .5); color: #fff; font-weight: 700; }
@keyframes croFlow { 0%, 6% { opacity: .25; transform: translateY(-5px); } 18%, 86% { opacity: 1; transform: none; } 100% { opacity: .25; transform: translateY(-5px); } }
@media (prefers-reduced-motion: reduce) { .cro-step { animation: none; opacity: 1; } }

/* Brands: reach rings radiating from the brand */
.brand-radar { position: relative; height: 180px; display: grid; place-items: center; margin-bottom: .4rem; }
.brand-core { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #06231a; display: grid; place-items: center; font-weight: 800; font-size: .8rem; box-shadow: 0 0 26px rgba(79, 214, 160, .45); }
.brand-radar .ring { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(79, 214, 160, .5); animation: brandRing 5s ease-out infinite; }
.brand-radar .ring:nth-child(2) { animation-delay: 1.25s; }
.brand-radar .ring:nth-child(3) { animation-delay: 2.5s; }
.brand-radar .ring:nth-child(4) { animation-delay: 3.75s; }
@keyframes brandRing { 0% { transform: scale(1); opacity: .55; } 80% { opacity: 0; } 100% { transform: scale(4.3); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .brand-radar .ring { animation: none; opacity: .25; } }

/* Business: reputation / rating building up */
.biz-rate { display: flex; align-items: center; gap: .6rem; margin-bottom: .2rem; }
.biz-stars { display: inline-flex; gap: .3rem; }
.biz-stars svg { width: 1.6rem; height: 1.6rem; color: rgba(255, 255, 255, .18); animation: starFill 8s ease-in-out infinite; }
.biz-stars svg:nth-child(1) { animation-delay: 0s; }
.biz-stars svg:nth-child(2) { animation-delay: .45s; }
.biz-stars svg:nth-child(3) { animation-delay: .9s; }
.biz-stars svg:nth-child(4) { animation-delay: 1.35s; }
.biz-stars svg:nth-child(5) { animation-delay: 1.8s; }
.biz-score { color: #fff; font-weight: 800; font-size: 1.25rem; }
@keyframes starFill { 0%, 8% { color: rgba(255, 255, 255, .18); transform: none; } 16% { color: #ffc24b; transform: scale(1.18); } 24%, 86% { color: #ffc24b; transform: none; } 100% { color: rgba(255, 255, 255, .18); } }
@media (prefers-reduced-motion: reduce) { .biz-stars svg { color: #ffc24b; animation: none; } }

/* Website: building blocks assembling a page */
.web-frame { display: grid; gap: .45rem; padding: .6rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .04); }
.web-row { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.wb { border-radius: 6px; background: rgba(255, 255, 255, .12); opacity: 0; transform: translateY(8px); animation: webIn 7s ease-in-out var(--d, 0s) infinite; }
@keyframes webIn { 0%, 6% { opacity: 0; transform: translateY(8px); } 16%, 86% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .wb { opacity: 1; transform: none; animation: none; } }

/* Sales: landing page + converting CTA */
.sales-lp { display: grid; gap: .65rem; padding: .8rem; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.sales-lp .h { height: 1rem; width: 68%; border-radius: 99px; background: rgba(255, 255, 255, .22); }
.sales-lp .p { height: .55rem; border-radius: 99px; background: rgba(255, 255, 255, .12); }
.sales-lp .p.s { width: 80%; }
.sales-cta { position: relative; justify-self: start; margin-top: .3rem; background: var(--accent); color: #06231a; font-weight: 800; font-size: .85rem; padding: .55rem .95rem; border-radius: 8px; animation: adsPulse 4s ease-in-out infinite; }
.sales-cta::after { content: ''; position: absolute; inset: -2px; border-radius: 10px; border: 2px solid var(--accent); opacity: 0; animation: adsRipple 4s ease-out infinite; }
@media (prefers-reduced-motion: reduce) { .sales-cta, .sales-cta::after { animation: none; } }

/* Hosting: servers online + uptime */
.host-rack { display: grid; gap: .6rem; }
.host-row { display: flex; align-items: center; gap: .7rem; padding: .6rem .75rem; border-radius: 10px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: #cdddf0; font-size: .88rem; }
.host-dot { flex: none; width: .7rem; height: .7rem; border-radius: 50%; background: var(--accent); animation: hostPing 3.2s ease-out infinite; }
.host-row:nth-child(2) .host-dot { animation-delay: 1s; }
.host-row:nth-child(3) .host-dot { animation-delay: 2s; }
.host-up { margin-inline-start: auto; color: #9fb4cf; font-size: .8rem; font-weight: 700; }
@keyframes hostPing { 0% { box-shadow: 0 0 0 0 rgba(79, 214, 160, .5); } 70%, 100% { box-shadow: 0 0 0 9px rgba(79, 214, 160, 0); } }
@media (prefers-reduced-motion: reduce) { .host-dot { animation: none; } }

/* Price: plan tiers, recommended one highlighted */
.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; align-items: end; }
.price-tier { border-radius: 10px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); padding: .8rem .5rem; text-align: center; display: grid; gap: .45rem; }
.price-tier .lbl { color: #9fb4cf; font-size: .72rem; font-weight: 700; }
.price-tier .amt { color: #fff; font-weight: 800; font-size: 1.05rem; }
.price-tier .bar { height: .4rem; border-radius: 99px; background: rgba(255, 255, 255, .15); }
.price-tier.pop { background: rgba(79, 214, 160, .14); border-color: rgba(79, 214, 160, .5); transform: translateY(-8px); animation: pricePop 4.5s ease-in-out infinite; }
.price-tier.pop .amt { color: #fff; }
.price-tier.pop .bar { background: var(--accent); }
@keyframes pricePop { 0%, 100% { box-shadow: 0 0 0 rgba(79, 214, 160, 0); } 50% { box-shadow: 0 12px 26px rgba(79, 214, 160, .24); } }
@media (prefers-reduced-motion: reduce) { .price-tier.pop { animation: none; } }

/* Bing: searching and surfacing results */
.bing-search { display: grid; gap: .6rem; }
.bing-bar { display: flex; align-items: center; gap: .55rem; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); border-radius: 99px; padding: .55rem .85rem; }
.bing-bar .q { height: .55rem; border-radius: 99px; background: rgba(255, 255, 255, .28); width: 0; animation: bingType 7s ease-in-out infinite; }
.bing-bar svg { flex: none; margin-inline-start: auto; width: 1.1rem; height: 1.1rem; color: #35a3e0; }
.bing-res { display: grid; gap: .55rem; }
.bing-res .r { height: .55rem; border-radius: 99px; background: rgba(255, 255, 255, .12); opacity: 0; animation: bingRes 7s ease-in-out infinite; }
.bing-res .r.top { background: rgba(53, 163, 224, .35); width: 80%; }
.bing-res .r:nth-child(1) { animation-delay: 0s; }
.bing-res .r:nth-child(2) { animation-delay: .25s; }
.bing-res .r:nth-child(3) { animation-delay: .5s; }
@keyframes bingType { 0% { width: 0; } 28% { width: 72%; } 80% { width: 72%; } 90%, 100% { width: 0; } }
@keyframes bingRes { 0%, 32% { opacity: 0; transform: translateY(4px); } 42%, 85% { opacity: 1; transform: none; } 95%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .bing-bar .q { width: 72%; animation: none; } .bing-res .r { opacity: 1; animation: none; } }

/* WordPress: performance gauge */
.wp-gauge { width: 180px; margin: .4rem auto .6rem; }
.wp-gauge svg { width: 100%; height: auto; display: block; }
.wp-arc { stroke-dasharray: 251; stroke-dashoffset: 251; animation: wpArc 6s ease-in-out infinite; }
.wp-needle { transform-origin: 100px 100px; animation: wpNeedle 6s ease-in-out infinite; }
@keyframes wpNeedle { 0%, 100% { transform: rotate(-78deg); } 50% { transform: rotate(66deg); } }
@keyframes wpArc { 0%, 100% { stroke-dashoffset: 251; } 50% { stroke-dashoffset: 70; } }
@media (prefers-reduced-motion: reduce) { .wp-needle { transform: rotate(40deg); animation: none; } .wp-arc { stroke-dashoffset: 90; animation: none; } }

/* Wix: a webpage built from colored Tetris-like blocks; one part pulses at a time */
.wix-page { display: flex; flex-direction: column; gap: .45rem; width: min(100%, 340px); margin: .2rem auto .1rem; padding: .6rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .04); }
.wix-cols { display: grid; grid-template-columns: 1.7fr 1fr; gap: .45rem; }
.wix-side { display: flex; flex-direction: column; gap: .45rem; }
.wix-bar { display: flex; align-items: center; gap: .32rem; direction: ltr; padding: .35rem .55rem; border-radius: 6px; background: rgba(255, 255, 255, .08); }
.wix-dot { width: .42rem; height: .42rem; border-radius: 50%; flex: none; background: rgba(255, 255, 255, .3); }
.wix-dot:nth-child(1) { background: #ff5f57; }
.wix-dot:nth-child(2) { background: #febc2e; }
.wix-dot:nth-child(3) { background: #28c840; }
.wix-url { flex: 1; margin-inline-start: .45rem; padding: .12rem .5rem; border-radius: 4px; background: rgba(255, 255, 255, .07); text-align: center; font-size: .62rem; font-weight: 600; letter-spacing: .03em; color: rgba(255, 255, 255, .65); }
.wxb { display: block; border-radius: 6px; animation: wixShift 9s ease-in-out infinite; animation-delay: calc(var(--i) * 1.8s); }
.wxb.hero { height: 2.2rem; background: #7c5cff; }
.wxb.main { height: 2.6rem; background: #23c197; }
.wxb.s1   { height: 1.05rem; background: #ffb454; }
.wxb.s2   { height: 1.05rem; background: #ff5c8a; }
.wxb.foot { height: .6rem;  background: #4bd0ff; }
@keyframes wixShift {
    0%, 100% { transform: translate(0, 0); }
    6%       { transform: translate(var(--mx, 0), var(--my, 0)); }
    14%      { transform: translate(var(--mx, 0), var(--my, 0)); }
    20%      { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) { .wxb { transform: none; animation: none; } }

/* Services: dashboard tiles spotlight */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.svc-tile { aspect-ratio: 1.35; border-radius: 10px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); display: grid; place-items: center; padding: .4rem; color: #cdddf0; font-size: .72rem; font-weight: 600; text-align: center; animation: svcSpot 9s ease-in-out infinite; }
.svc-tile:nth-child(2) { animation-delay: 1.5s; }
.svc-tile:nth-child(3) { animation-delay: 3s; }
.svc-tile:nth-child(4) { animation-delay: 4.5s; }
.svc-tile:nth-child(5) { animation-delay: 6s; }
.svc-tile:nth-child(6) { animation-delay: 7.5s; }
@keyframes svcSpot { 0%, 20%, 100% { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); color: #cdddf0; transform: none; } 10% { background: rgba(79, 214, 160, .14); border-color: rgba(79, 214, 160, .5); color: #fff; transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .svc-tile { animation: none; } }

/* About: milestones since 2009 */
.climb { position: relative; display: grid; gap: .6rem; width: 100%; max-width: 260px; margin-inline: auto; padding: .4rem 0; }
.climb-bar { height: 2.1rem; border-radius: 10px; background: rgba(255, 255, 255, .08); }
.climb-you {
    position: absolute; inset-inline: 0; top: 0; height: 2.1rem; border-radius: 10px;
    display: flex; align-items: center; justify-content: flex-end; gap: .4rem; padding-inline: .85rem;
    font-weight: 800; font-size: .85rem; color: #06231a;
    background: linear-gradient(180deg, var(--accent), #28b487);
    box-shadow: 0 8px 22px rgba(79, 214, 160, .35);
    animation: climbUp 6s cubic-bezier(.7, 0, .3, 1) infinite;
}
.climb-you svg { width: 14px; height: 14px; }
@keyframes climbUp {
    0%, 15%   { transform: translateY(8.1rem); }
    28%, 43%  { transform: translateY(5.4rem); }
    56%, 71%  { transform: translateY(2.7rem); }
    84%, 100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .climb-you { animation: none; transform: translateY(0); } }
.about-photo { margin: 0; align-self: start; }
.about-photo img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 18px 40px rgba(11, 22, 41, .18); }
.about-photo figcaption { margin-top: .8rem; text-align: center; font-size: .92rem; color: var(--muted, #5b6b82); font-weight: 600; }

/* --- Logos / trust bar ---------------------------------------------------- */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.6rem; padding-block: 1.3rem; }
.trustbar span { color: var(--muted); font-weight: 600; font-size: 1.02rem; }

/* --- Cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0f2; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: 1.05rem; }
.card-icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent-700); margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; margin-top: 1rem; }
.card-link::after { content: '›'; font-size: 1.2em; line-height: 1; }

.card-feature { display: flex; gap: 1rem; align-items: flex-start; }
.card-feature .card-icon { flex: none; margin-bottom: 0; }

/* --- Process steps -------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(4, 1fr); }
.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 880px; margin-inline: auto; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); }
.step::before {
    counter-increment: step; content: counter(step, decimal-leading-zero);
    font-weight: 800; font-size: 1.1rem; color: var(--accent); background: var(--accent-soft);
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: 1.02rem; }

/* --- Feature list / checks ------------------------------------------------ */
.checklist { display: grid; gap: .8rem; }
.checklist li { position: relative; padding-inline-start: 2.1rem; color: var(--slate); line-height: 1.6; }
.checklist li strong { font-weight: 700; }
.checklist li::before {
    content: '✓'; position: absolute; inset-inline-start: 0; top: .15rem;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-700); display: grid; place-items: center;
    font-weight: 800; font-size: .85rem;
}
.checklist.on-navy li { color: #cfe0f2; }
.checklist.on-navy li::before { background: rgba(10,164,230,.2); color: #6fd3f5; }

/* --- Split / media sections ----------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse { direction: ltr; }
.split.reverse > * { direction: rtl; }

/* --- Stats band ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat b { display: block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; }
.stat span { color: #9fb4cf; font-size: .95rem; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--accent-700), var(--accent)); color: #fff; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.cta-copy { max-width: 46ch; }
.cta-copy h2 { color: #fff; margin-bottom: .5rem; }
.cta-copy p { color: rgba(255, 255, 255, .9); }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-band .btn-primary { background: #fff; color: var(--accent-700); box-shadow: var(--shadow-md); }
.cta-band .btn-primary:hover { background: #f1faff; color: var(--accent-700); }
.cta-direct { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.cta-link { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; }
.cta-link:hover { color: #eaffff; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.faq summary {
    cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 700; color: var(--navy-900);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.5rem; font-weight: 400; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; font-size: 1.05rem; }

/* --- Forms ---------------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.5rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .4rem; font-size: 1rem; }
.field input, .field textarea, .field select {
    width: 100%; font-family: inherit; font-size: 1.05rem; color: var(--ink);
    padding: .85rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.field-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; color: var(--muted); }
.form-consent input { width: auto; margin-top: .25rem; }
.form-note { font-size: .92rem; color: var(--muted); margin-top: 1rem; }
.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-weight: 600; }
.alert-success { background: #e6f8ef; color: #15683f; border: 1px solid #b7e6cd; }
.alert-error { background: #fdeaea; color: #9c2626; border: 1px solid #f3c6c6; }

/* --- Platform logo -------------------------------------------------------- */
.platform-logo { width: auto; height: 42px; margin-bottom: 1.2rem; }

/* --- Wix partner badge ---------------------------------------------------- */
.wix-partner-head { display: flex; align-items: center; gap: 2rem; max-width: none; }
.wix-partner-head > div { flex: 1 1 auto; max-width: 72ch; }
.wix-partner-head .eyebrow { margin-bottom: .7rem; }
.wix-partner-badge { flex: none; width: 150px; height: 150px; }
@media (max-width: 560px) {
    .wix-partner-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .wix-partner-badge { width: 120px; height: 120px; }
}

/* --- Article / prose ------------------------------------------------------ */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: .5rem; font-size: 1.3rem; }
.prose p, .prose li { color: var(--ink); }
.prose ul { display: grid; gap: .5rem; margin: 1rem 0; }
.prose ul li { position: relative; padding-inline-start: 1.4rem; }
.prose ul li::before { content: '•'; color: var(--accent); position: absolute; inset-inline-start: 0; font-weight: 800; }
.prose ol { display: grid; gap: .6rem; margin: 1rem 0; padding-inline-start: 1.4rem; list-style: decimal; }
.prose ol li { padding-inline-start: .3rem; }
.prose ol li::marker { color: var(--accent); font-weight: 800; }
.prose a { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 1.02rem; }
.prose thead th { background: var(--navy-900); color: #fff; font-weight: 700; text-align: start; }
.prose th, .prose td { padding: .75rem .9rem; border-bottom: 1px solid var(--line); text-align: start; vertical-align: top; }
.prose tbody tr:nth-child(even) { background: var(--bg-soft); }
.prose tbody tr:hover { background: var(--bg-tint); }
.prose .price-note { font-size: .9rem; color: var(--muted); margin-top: -.4rem; }
.article-head { background: var(--navy-900); color: #cfe0f2; padding-block: clamp(2.5rem, 6vw, 4rem); }
.article-head h1 { color: #fff; max-width: 20ch; }
.article-meta { color: #9fb4cf; font-size: .98rem; margin-bottom: 1rem; }
.post-list { display: grid; gap: 1.3rem; grid-template-columns: repeat(2, 1fr); }
.post-card { display: flex; flex-direction: column; }
.post-card .tag { font-size: .78rem; font-weight: 700; color: var(--accent-700); letter-spacing: .05em; text-transform: uppercase; }
.post-card h3 { margin: .5rem 0; }

/* --- Breadcrumb ----------------------------------------------------------- */
.breadcrumb { font-size: .95rem; color: var(--muted); padding-top: 1.4rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-700); }

/* --- Floating WhatsApp ---------------------------------------------------- */
.floating-whatsapp {
    position: fixed; inset-block-end: 20px; inset-inline-end: 20px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
    display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
    transition: transform .15s;
}
.floating-whatsapp:hover { transform: scale(1.07); color: #fff; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #9fb4cf; padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand p { color: #8ea4c0; margin-top: .8rem; font-size: 1rem; max-width: 34ch; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: #9fb4cf; font-size: 1rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-block: 1.3rem; font-size: .88rem; color: #7b91ad; }
.footer-bottom a { color: #7b91ad; }
.footer-bottom a:hover { color: #fff; }

/* --- Utilities ------------------------------------------------------------ */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.maxw { max-width: 60ch; } .center .maxw { margin-inline: auto; }

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { order: 1; max-width: 460px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .header-inner { flex-direction: row-reverse; }
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column;
        align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.25rem; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .25s ease; max-height: calc(100vh - 72px); overflow: auto;
    }
    .primary-nav.open { transform: translateY(0); }
    .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .primary-nav > ul li { border-bottom: 1px solid var(--line); }
    .primary-nav a { display: block; padding: .9rem 0; }
    .nav-cta { margin-top: 1rem; text-align: center; }
    .grid-2, .grid-3, .grid-4, .split, .post-list { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-actions { width: 100%; }
    .floating-whatsapp { inset-block-end: 20px; }

    /* Dropdown becomes an inline accordion on mobile */
    .has-dropdown { position: relative; }
    .dropdown-toggle { position: absolute; inset-inline-start: 0; top: .55rem; padding: .5rem; color: var(--navy-900); }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; border-radius: 0; padding: 0 0 .5rem; display: none;
    }
    .dropdown.mega { grid-template-columns: 1fr; gap: 0; }
    .has-dropdown.open > .dropdown { display: block; }
    .has-dropdown.open > .dropdown-toggle svg { transform: rotate(180deg); }
    .dropdown-heading { margin: .8rem .25rem .3rem; }
    .dropdown-group ul { padding-inline-start: .6rem; }
    .dropdown a { padding: .6rem .4rem; }
    .primary-nav .dropdown a[aria-current="page"] { background: var(--accent-soft); }
}
@media (max-width: 460px) {
    .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}

/* Accessibility (negishim widget) – stack toggle above the WhatsApp button */
.btn_accessibility {
    top: auto !important;
    right: auto !important;
    left: 20px !important;
    bottom: 92px !important; /* whatsapp: 20px bottom + 56px height + 16px gap */
}
@media (max-width: 760px) {
    .btn_accessibility {
        bottom: 92px !important; /* whatsapp on mobile: 20px bottom + 56px + 16px gap */
    }
}
