/* ==========================================================================
   Touch Technology  global stylesheet
   Brand: deep navy #125496 + warm gold. Modern, premium, enterprise SaaS.
   ========================================================================== */

/* ------------------------------ Design tokens ---------------------------- */
:root {
    --blue-900: #0b3057;
    --blue-800: #0e4076;
    --blue-700: #125496;   /* brand primary */
    --blue-600: #1866b3;
    --blue-500: #1e7fd6;   /* bright accent */
    --blue-100: #e8f1fa;
    --blue-50:  #f2f7fc;

    --gold-600: #b7841f;
    --gold-500: #d29b2a;   /* warm accent */
    --gold-100: #f7ecd2;

    --ink:      #0f1b2d;
    --ink-70:   #40506690;
    --slate:    #4a5a70;
    --slate-40: #8695a8;
    --line:     #e4ecf4;
    --white:    #ffffff;

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 27, 45, .05), 0 4px 12px rgba(15, 27, 45, .05);
    --shadow:    0 4px 12px rgba(15, 27, 45, .06), 0 18px 40px rgba(15, 27, 45, .08);
    --shadow-lg: 0 12px 28px rgba(15, 27, 45, .10), 0 30px 60px rgba(14, 64, 118, .14);
    --shadow-blue: 0 14px 30px rgba(18, 84, 150, .28);

    --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --container: 1180px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------ Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }

:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--blue-700); color: #fff; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--blue-700); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ------------------------------ Layout ----------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .container { padding-inline: 2rem; } }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-tint { background: var(--blue-50); }
.bg-tint-2 { background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-head); font-weight: 700; font-size: .74rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }

.section-head { max-width: 640px; }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); margin-top: .85rem; }
.section-head p { margin-top: 1rem; color: var(--slate); font-size: 1.08rem; }
.section-head--center .eyebrow::after { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }

.lead { color: var(--slate); font-size: 1.15rem; }

/* ------------------------------ Icons ------------------------------------ */
.icon { width: 24px; height: 24px; flex: none; }
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 15px; height: 15px; }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    padding: .85rem 1.5rem; border-radius: var(--radius-pill); border: 2px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
    min-height: 48px; white-space: nowrap;
}
.btn--sm { padding: .6rem 1.1rem; min-height: 42px; font-size: .88rem; }
.btn .icon { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18,84,150,.34); }
.btn--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #23180a; box-shadow: 0 12px 26px rgba(210,155,42,.34); }
.btn--gold:hover { transform: translateY(-2px); }
.btn--secondary { background: #fff; color: var(--blue-700); border-color: var(--line); }
.btn--secondary:hover { border-color: var(--blue-500); background: var(--blue-50); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--light { background: #fff; color: var(--blue-700); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--block { width: 100%; }

/* ------------------------------ Ribbon ----------------------------------- */
.ribbon {
    background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
    color: #dbe9f8; font-size: .82rem;
}
.ribbon__inner { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .5rem 1rem; text-align: center; }
.ribbon__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(210,155,42,.25); }

/* ------------------------------ Header / nav ----------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(15,27,45,.07); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; }
.brand__logo-full { height: 38px; width: auto; object-fit: contain; display: block; }
@media (min-width: 640px) { .brand__logo-full { height: 44px; } }
.brand--footer .brand__logo-full { height: 46px; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; color: var(--ink); }
.brand__name span { color: var(--blue-700); }

.nav__list { display: none; align-items: center; gap: .25rem; }
.nav__link { display: inline-block; padding: .55rem .8rem; border-radius: 10px; font-weight: 600; font-size: .92rem; color: var(--slate); transition: color .2s, background .2s; }
.nav__link:hover { color: var(--blue-700); background: var(--blue-50); }
.nav__link.is-active { color: var(--blue-700); }
.nav__link.is-active { position: relative; }
.nav__link.is-active::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .1rem; height: 2px; background: var(--gold-500); border-radius: 2px; }

.site-header__actions { display: flex; align-items: center; gap: .7rem; }
/* On narrow phones the header CTA is hidden (still in the mobile menu) to give
   the hamburger room and prevent horizontal overflow. */
@media (max-width: 600px) { .site-header__actions .btn--primary { display: none; } }

.nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.mobile-nav { border-top: 1px solid var(--line); background: #fff; }
.mobile-nav__list { padding: .75rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav__link { display: block; padding: .85rem 1rem; border-radius: 12px; font-weight: 600; color: var(--ink); }
.mobile-nav__link:hover, .mobile-nav__link.is-active { background: var(--blue-50); color: var(--blue-700); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: .6rem; margin-top: .6rem; padding-top: .9rem; border-top: 1px solid var(--line); }

@media (min-width: 980px) {
    .nav__list { display: flex; }
    .nav-toggle { display: none; }
}

/* ------------------------------ Hero ------------------------------------- */
.hero { position: relative; overflow: hidden; isolation: isolate;
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 62%); }

/* Layered background: soft grid + drifting colour orbs */
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero__grid { position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(18,84,150,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,84,150,.055) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(1000px 520px at 72% 0%, #000, transparent 72%);
            mask-image: radial-gradient(1000px 520px at 72% 0%, #000, transparent 72%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; }
.hero__orb--1 { width: 520px; height: 520px; top: -190px; right: -120px;
    background: radial-gradient(circle, var(--blue-100), transparent 70%);
    animation: hero-orb 15s var(--ease) infinite alternate; }
.hero__orb--2 { width: 460px; height: 460px; bottom: -230px; left: -150px;
    background: radial-gradient(circle, #eaf2fb, transparent 70%);
    animation: hero-orb 19s var(--ease) infinite alternate-reverse; }
@keyframes hero-orb { to { transform: translate3d(32px, 26px, 0) scale(1.09); } }

.hero__inner { display: grid; gap: 2.5rem; align-items: center; padding-block: clamp(2.5rem, 6vw, 4.75rem); }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }

.hero__badge {
    display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .9rem;
    background: rgba(255,255,255,.75); backdrop-filter: blur(6px);
    border: 1px solid var(--line); border-radius: var(--radius-pill);
    font-size: .8rem; font-weight: 600; color: var(--blue-700); box-shadow: var(--shadow-sm);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22b573;
    box-shadow: 0 0 0 0 rgba(34,181,115,.55); animation: pulse-dot 2.4s infinite; }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 6px rgba(34,181,115,0); } 100% { box-shadow: 0 0 0 0 rgba(34,181,115,0); } }

.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); margin-top: 1.15rem; }
.hero h1 .hl {
    color: var(--blue-700);
    background-image: linear-gradient(90deg, rgba(210,155,42,.55), rgba(210,155,42,.18));
    background-repeat: no-repeat; background-position: 0 92%; background-size: 100% .24em;
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero__sub { margin-top: 1.35rem; max-width: 34rem; font-size: 1.12rem; color: var(--slate); }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* Social-proof cluster: avatar stack + rating */
.hero__proof { margin-top: 1.75rem; display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff;
    display: grid; place-items: center; margin-left: -12px; box-shadow: var(--shadow-sm);
    font-family: var(--font-head); font-weight: 700; font-size: .78rem; color: #fff; }
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars-more { background: var(--blue-50); color: var(--blue-700) !important; }
.hero__proof-txt { display: flex; flex-direction: column; }
.hero__stars { color: var(--gold-500); font-size: .98rem; letter-spacing: 2px; line-height: 1; }
.hero__proof-txt small { margin-top: .25rem; color: var(--slate); font-size: .85rem; max-width: 22rem; }

.hero__assure { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .9rem; color: var(--slate); }
.hero__assure span { display: inline-flex; align-items: center; gap: .35rem; }
.hero__assure .icon { color: #22b573; }

/* Media column */
.hero__media { position: relative; }
.hero__img-frame {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); transition: transform .6s var(--ease);
}
.hero__media:hover .hero__img-frame { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero__img-frame img { aspect-ratio: 4/3.2; object-fit: cover; width: 100%; }
.hero__img-frame::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11,48,87,.42)); pointer-events: none; }

.hero__live { position: absolute; left: 14px; bottom: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(11,48,87,.66); backdrop-filter: blur(6px); color: #fff;
    font-size: .78rem; font-weight: 600; padding: .45rem .8rem; border-radius: var(--radius-pill); }
.hero__live .pulse { width: 8px; height: 8px; border-radius: 50%; background: #34d17f;
    box-shadow: 0 0 0 0 rgba(52,209,127,.6); animation: pulse-dot 2s infinite; }

.hero__glass {
    position: absolute; left: -14px; bottom: -18px; display: flex; align-items: center; gap: .7rem;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border: 1px solid var(--line);
    border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--shadow);
    animation: hero-bob 7s ease-in-out infinite reverse;
}
.hero__glass .ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--blue-50); color: var(--blue-700); }
.hero__glass strong { display: block; font-size: .84rem; color: var(--ink); font-family: var(--font-head); }
.hero__glass small { color: var(--slate); font-size: .76rem; }

.hero__float {
    position: absolute; right: -14px; top: 26px; display: flex; align-items: center; gap: .7rem;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .7rem .95rem;
    box-shadow: var(--shadow); animation: hero-bob 6s ease-in-out infinite;
}
.hero__float-num { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; line-height: 1; color: var(--blue-700); }
.hero__float-num .suffix { color: var(--gold-500); }
.hero__float-label { font-size: .72rem; line-height: 1.15; color: var(--slate); }
@keyframes hero-bob { 50% { transform: translateY(-8px); } }
@media (max-width: 560px) { .hero__float { display: none; } }

/* Hero trust strip */
.trust-strip { border-top: 1px solid var(--line); background: rgba(255,255,255,.5); }
.trustbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1.4rem; padding: .95rem 0; font-size: .86rem; font-weight: 500; color: var(--slate); }
.trustbar li { display: inline-flex; align-items: center; gap: .4rem; }
.trustbar .icon { color: var(--blue-600); }

/* ------------------------------ Stats ------------------------------------ */
.stats { background: linear-gradient(180deg, var(--blue-900), var(--blue-700)); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 820px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; position: relative; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -.03em; background: linear-gradient(180deg, #fff, #cfe0f2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__num .suffix { color: var(--gold-500); -webkit-text-fill-color: var(--gold-500); }
.stat__label { margin-top: .6rem; font-size: .9rem; color: #bcd3ec; }

/* ------------------------------ Generic cards ---------------------------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; height: 100%; }
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(24,102,179,.3); }

.card-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--blue-50); color: var(--blue-700); }
.card-ic--gold { background: var(--gold-100); color: var(--gold-600); }

.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3,1fr); } .grid--4 { grid-template-columns: repeat(4,1fr); } }

/* Service card */
.service-card h3 { font-size: 1.15rem; margin-top: 1.1rem; }
.service-card p { margin-top: .55rem; color: var(--slate); font-size: .95rem; }
.service-card .best { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); font-size: .9rem; }
.service-card .best b { color: var(--blue-700); }

/* Product card */
.product-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card--hover:hover .product-card__media img { transform: scale(1.06); }
.product-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,48,87,.5)); }
.product-card__tag { position: absolute; left: 1rem; top: 1rem; z-index: 1; background: rgba(255,255,255,.92); color: var(--blue-700); font-family: var(--font-head); font-weight: 700; font-size: .82rem; padding: .3rem .7rem; border-radius: var(--radius-pill); }
.product-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product-card__pos { color: var(--gold-600); font-weight: 600; font-size: .9rem; }
.product-card__body p { margin-top: .6rem; color: var(--slate); font-size: .95rem; flex: 1; }
.product-card__foot { margin-top: 1.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.1rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue-700); }
.link-arrow .icon { transition: transform .2s; width: 18px; height: 18px; }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-ext { font-size: .85rem; color: var(--slate-40); }
.link-ext:hover { color: var(--blue-700); }

/* ------------------------------ Split feature ---------------------------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .split--rev .split__media { order: 2; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split__media .badge-float { position: absolute; right: -10px; bottom: -14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .7rem .9rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; font-weight: 700; font-family: var(--font-head); font-size: .85rem; }
.split__media .badge-float .icon { color: var(--gold-500); }

.feature-list { margin-top: 1.6rem; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .8rem; }
.feature-list .fi { display: grid; place-items: center; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); margin-top: 2px; }
.feature-list b { color: var(--ink); font-family: var(--font-head); }
.feature-list span.t { color: var(--slate); font-size: .97rem; }

/* Pricing */
.pricing { margin-top: 1.6rem; background: var(--blue-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.pricing__grid { margin-top: .9rem; display: grid; gap: .7rem; grid-template-columns: repeat(3, 1fr); }
.pricing--single .pricing__grid { grid-template-columns: 1fr; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .9rem .6rem; text-align: center; }
.tier.is-featured { border-color: var(--blue-500); box-shadow: 0 0 0 2px rgba(30,127,214,.15); }
.tier__plan { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-40); font-weight: 600; }
.tier__price { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--blue-700); margin-top: .2rem; }
.tier__period { font-size: .75rem; color: var(--slate-40); }
.pricing__note { margin-top: .8rem; font-size: .82rem; color: var(--slate); }
.pricing__head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
/* Currency localisation: show one of the two figures based on the <html> class. */
.price__local, .price__usd { display: none; }
.cur-local .price__local { display: inline; }
.cur-usd .price__usd { display: inline; }
html:not(.cur-local):not(.cur-usd) .price__usd { display: inline; } /* JS-off / no class fallback */
.cur-toggle { background: none; border: 0; padding: 0; font: inherit; font-size: .72rem; font-weight: 600; color: var(--blue-500); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cur-toggle:hover { color: var(--blue-700); }
.callout-quote { margin-top: 1.4rem; background: #fff; border-left: 3px solid var(--gold-500); border-radius: 0 12px 12px 0; padding: .9rem 1.1rem; font-style: italic; color: var(--slate); font-size: .95rem; }
.closing-note { margin-top: 1.4rem; color: var(--blue-700); font-weight: 600; }

/* ------------------------------ Testimonials ----------------------------- */
.testi { display: flex; flex-direction: column; }
.testi__q { color: var(--gold-500); }
.testi blockquote { margin-top: .8rem; font-size: 1rem; color: var(--ink); flex: 1; }
.testi__by { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .8rem; }
.testi__av { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.testi__name { font-weight: 700; font-family: var(--font-head); font-size: .95rem; }
.testi__role { font-size: .82rem; color: var(--slate-40); }

/* Logo row */
.logo-row { margin-top: 2.5rem; }
.logo-row__label { text-align: center; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-40); font-weight: 600; }
.logo-row__grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 700px) { .logo-row__grid { grid-template-columns: repeat(4,1fr); } }
.logo-row__item { display: grid; place-items: center; height: 66px; border: 1px dashed var(--line); border-radius: 12px; background: #fff; color: var(--slate-40); font-weight: 600; font-size: .9rem; }

/* ------------------------------ Why / exec ------------------------------- */
.why-mini { margin-top: 1.8rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .why-mini { grid-template-columns: 1fr 1fr; } }
.why-mini li { display: flex; gap: .7rem; align-items: center; }
.why-mini .mi { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--blue-50); color: var(--blue-700); }
.why-mini b { font-family: var(--font-head); font-size: .95rem; }

.exec {
    background: linear-gradient(160deg, #fff, var(--blue-50));
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);
}
.exec ul { margin-top: 1.3rem; display: grid; gap: 1rem; }
.exec li { display: flex; gap: .8rem; }
.exec .ci { display: grid; place-items: center; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-700); color: #fff; }
.exec-chips { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .4rem .8rem; font-size: .8rem; font-weight: 600; color: var(--blue-700); }
.chip .icon { color: var(--blue-600); }

/* Pillars (why page) */
.pillar { position: relative; overflow: hidden; }
.pillar::before { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; background: radial-gradient(circle, var(--blue-50), transparent 70%); }
.pillar h3 { font-size: 1.25rem; margin-top: 1.2rem; }
.pillar p { margin-top: .7rem; color: var(--slate); }

/* ------------------------------ Steps ------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.step__n { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-700); color: #fff; font-family: var(--font-head); font-weight: 800; }
.step h3 { margin-top: 1rem; font-size: 1.05rem; }
.step p { margin-top: .5rem; color: var(--slate); font-size: .93rem; }

/* Services long list */
.svc { display: grid; gap: 1.4rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
@media (min-width: 760px) { .svc { grid-template-columns: 84px 1fr; padding: 2rem; gap: 2rem; } }
.svc__side { display: flex; align-items: center; gap: 1rem; }
@media (min-width: 760px) { .svc__side { flex-direction: column; align-items: flex-start; } }
.svc__num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--blue-100); }
.svc h2 { font-size: 1.5rem; }
.svc p { margin-top: .7rem; color: var(--slate); max-width: 46rem; }
.svc__best { margin-top: 1rem; display: inline-flex; background: var(--blue-50); border-radius: var(--radius-pill); padding: .45rem .9rem; font-size: .88rem; }
.svc__best b { color: var(--blue-700); }

/* ------------------------------ Page header ------------------------------ */
.page-head { position: relative; overflow: hidden; background:
    radial-gradient(800px 380px at 90% -20%, var(--blue-100), transparent 60%), var(--blue-50);
    border-bottom: 1px solid var(--line); }
.page-head__inner { padding-block: clamp(3rem, 6vw, 4.5rem); max-width: 780px; }
.page-head h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-top: .9rem; }
.page-head p { margin-top: 1.1rem; font-size: 1.12rem; color: var(--slate); }
.breadcrumb { display: flex; gap: .4rem; font-size: .85rem; color: var(--slate-40); }
.breadcrumb a:hover { color: var(--blue-700); }

/* ------------------------------ CTA band --------------------------------- */
.cta {
    position: relative; overflow: hidden; color: #fff;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700) 55%, var(--blue-600));
}
.cta::before { content: ""; position: absolute; right: -80px; top: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(30,127,214,.55), transparent 60%); }
.cta::after { content: ""; position: absolute; left: 20%; bottom: -160px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(210,155,42,.35), transparent 60%); }
.cta__inner { position: relative; text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 40rem; margin-inline: auto; }
.cta p { margin-top: 1rem; color: #d6e6f7; font-size: 1.12rem; max-width: 34rem; margin-inline: auto; }
.cta__btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ------------------------------ Contact ---------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 3.5rem; } }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-item .ci { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); }
.contact-item .ci--wa { background: #e4f7ec; color: #128c4b; }
.contact-item h3 { font-size: .95rem; }
.contact-item a, .contact-item p { color: var(--slate); font-size: .93rem; }
.contact-item a:hover { color: var(--blue-700); }
.contact-item small { color: var(--slate-40); font-size: .8rem; }
.map-ph { margin-top: 1.6rem; display: grid; place-items: center; height: 190px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--blue-50); text-align: center; color: var(--slate-40); }
.map-ph .icon { color: var(--blue-500); }
.map-embed { margin-top: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { display: block; width: 100%; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow); }
@media (min-width: 640px) { .form-card { padding: 2.2rem; } }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .88rem; color: var(--ink); }
.field label .req { color: #d64545; }
.field input, .field select, .field textarea {
    font: inherit; font-size: .95rem; padding: .8rem .95rem; border: 1px solid var(--line);
    border-radius: 12px; background: #fff; color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(30,127,214,.14); }
.form-foot { grid-column: 1/-1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .3rem; }
.form-note { font-size: .82rem; color: var(--slate); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { grid-column: 1/-1; border-radius: 12px; padding: .9rem 1.1rem; font-size: .92rem; font-weight: 500; }
.alert--ok { background: #e4f7ec; color: #12693b; border: 1px solid #b9e6cb; }
.alert--err { background: #fdeaea; color: #a12626; border: 1px solid #f3c6c6; }

/* ------------------------------ FAQ / legal ------------------------------ */
.faq { max-width: 780px; margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--blue-700); transition: transform .25s; }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq__a { padding: 0 1.3rem 1.2rem; color: var(--slate); font-size: .95rem; }

.legal { max-width: 760px; }
.legal h2 { font-size: 1.25rem; margin-top: 1.8rem; }
.legal p { margin-top: .8rem; color: var(--slate); }
.legal a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.notice { border: 1px dashed var(--gold-500); background: var(--gold-100); border-radius: 12px; padding: .9rem 1.1rem; font-size: .9rem; color: #6a5010; }
.notice b { color: var(--gold-600); }

/* 404 */
.err { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.err__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 7rem); line-height: 1; color: var(--blue-700); letter-spacing: -.04em; }
.err h1 { margin-top: .5rem; font-size: 1.6rem; }
.err p { margin-top: .8rem; color: var(--slate); }
.err__btns { margin-top: 2rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ WhatsApp FAB ----------------------------- */
.whatsapp-fab {
    position: fixed; right: 18px; bottom: 18px; z-index: 90;
    display: inline-flex; align-items: center; background: #25d366; color: #fff;
    border-radius: var(--radius-pill); box-shadow: 0 10px 26px rgba(37,211,102,.4); overflow: hidden;
}
.whatsapp-fab > .icon { width: 56px; height: 56px; padding: 15px; }
.whatsapp-fab__label { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 700; font-family: var(--font-head); font-size: .9rem; transition: max-width .3s var(--ease), padding .3s var(--ease); }
.whatsapp-fab:hover .whatsapp-fab__label { max-width: 130px; padding-right: 18px; }

/* ------------------------------ Footer ----------------------------------- */
.footer { background: var(--blue-900); color: #c7d7ea; }
.footer__grid { display: grid; gap: 2.2rem; padding-block: 3.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.brand--footer .brand__name, .brand--footer .brand__name span { color: #fff; }
.footer__tagline { margin-top: 1rem; max-width: 20rem; font-size: .92rem; color: #9fb6d0; }
.footer__social { margin-top: 1.3rem; display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.07); color: #c7d7ea; transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--blue-700); color: #fff; }
.footer__heading { font-family: var(--font-head); font-size: .95rem; color: #fff; }
.footer__links, .footer__contact { margin-top: 1.1rem; display: grid; gap: .7rem; }
.footer__links a, .footer__contact a, .footer__contact span { color: #a9c0d8; font-size: .92rem; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__links-more { color: #7fb0e6 !important; font-weight: 600; }
.footer__contact li { display: flex; align-items: center; gap: .55rem; }
.footer__contact .icon { color: var(--blue-500); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.3rem; }
.trustbar--footer { padding: 0; justify-content: flex-start; color: #9fb6d0; gap: .5rem 1.2rem; }
.trustbar--footer .icon { color: var(--blue-500); }
.footer__copy { font-size: .82rem; color: #7f97b3; }

/* ------------------------------ Reveal animation ------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }
@media (prefers-reduced-motion: reduce) {
    .hero__orb, .hero__float, .hero__glass, .hero__badge .dot, .hero__live .pulse { animation: none !important; }
}

/* Utilities */
.mt-sm { margin-top: 1rem; }
.mt { margin-top: 1.6rem; }
.center { text-align: center; }
.flex-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.sticky-media { position: relative; }
@media (min-width: 900px) { .sticky-media { position: sticky; top: 96px; } }
