/* =====================================================================
   INGROS SALES — modern rebuild
   Design language inspired by 0xprocessing.com (bold grotesk, dark
   sections, electric accent, rounded cards, CTA bands) and
   atomicvest.com (off-white canvas, deep emerald, tracked micro-labels,
   pill buttons, generous whitespace). Self-contained, no frameworks.
   ===================================================================== */

/* ----------------------------------------------------------- tokens */
:root {
    /* 0xProcessing palette: near-black + light/white, lime + orange accents.
       Orange = loud/primary (CTAs, highlights); lime = small UI sparkles.
       (var names kept; --lime holds 0x lime, --mint/--lime-deep hold orange.) */
    --bg:        #F2F3F3;   /* cool light-grey canvas      */
    --bg-2:      #FFFFFF;   /* cards                       */
    --ink:       #141414;   /* 0x near-black               */
    --emerald:   #171717;   /* dark panels (hero/about)    */
    --emerald-2: #242424;
    --lime:      #C9FD5D;   /* 0x lime  (small accents)    */
    --orange:    #FF4911;   /* 0x orange (primary accent)  */
    --lime-deep: #FF4911;   /* orange — stars/marks on light */
    --mint:      #FF4911;   /* orange — eyebrows/links/focus on light */

    --text:      #141414;
    --muted:     #5E5E5E;
    --muted-2:   #8C8C8C;
    --on-dark:   #F4F4F4;
    --on-dark-mut: rgba(244,244,244,0.62);

    --line:      rgba(20,20,20,0.10);
    --line-dark: rgba(244,244,244,0.14);

    --r-sm: 12px;
    --r:    18px;
    --r-lg: 26px;
    --r-xl: 34px;

    --shadow-sm: 0 1px 2px rgba(11,15,13,.04), 0 10px 30px -16px rgba(11,15,13,.20);
    --shadow:    0 2px 6px rgba(11,15,13,.05), 0 34px 60px -30px rgba(11,15,13,.30);

    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-body:    "Inter", system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(.22,.61,.36,1);
    --maxw: 1200px;
    --pad:  clamp(22px, 4vw, 40px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 17px;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------------------------------------- layout */
.container { width: min(var(--maxw), 100% - var(--pad)*2); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

/* ------------------------------------------------------ typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.h-xl { font-size: clamp(2.6rem, 1.3rem + 5.2vw, 5.1rem); font-weight: 600; }
.h-lg { font-size: clamp(2.1rem, 1.2rem + 3.1vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.28rem); color: var(--muted); line-height: 1.62; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mint);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; display: inline-block; }
.eyebrow--lime { color: var(--lime-deep); }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--orange); }

.accent-lime { color: var(--mint); }
.serifless em { font-style: normal; }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head .lead { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------- buttons */
.btn {
    --bg: var(--ink); --fg: #fff;
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--bg); color: var(--fg);
    font-family: var(--font-body);
    font-weight: 550; font-size: 0.98rem; letter-spacing: -0.01em;
    padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: transform .3s var(--ease), background-color .3s var(--ease),
                color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }

.btn--lime  { --bg: var(--orange); --fg: #fff; box-shadow: 0 16px 34px -16px rgba(255,73,17,.55); }
.btn--lime:hover { --bg: #ff5c2e; }
.btn--dark  { --bg: var(--ink); --fg: #fff; }
.btn--dark:hover { --bg: var(--emerald); }
.btn--emerald { --bg: var(--emerald); --fg: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }
.on-dark .btn--ghost, .btn--ghost.on-dark { color: var(--on-dark); border-color: var(--line-dark); }
.on-dark .btn--ghost:hover { border-color: var(--on-dark); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.textlink {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 550; color: var(--ink);
}
.textlink svg { width: 16px; transition: transform .3s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }
.on-dark .textlink { color: var(--on-dark); }

/* ---------------------------------------------------------- header */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background-color .4s var(--ease), backdrop-filter .4s, border-color .4s, padding .4s;
    border-bottom: 1px solid transparent;
}
.site-header__inner {
    display: flex; align-items: center; gap: 28px;
    height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display);
    font-weight: 700; font-size: 1.32rem; letter-spacing: -0.03em; color: #fff; }
.brand__mark { width: auto; height: 31px; flex: none; object-fit: contain; }
.site-header.scrolled .brand { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav a {
    padding: 9px 15px; border-radius: 999px;
    font-weight: 500; font-size: 0.97rem; color: rgba(255,255,255,0.82);
    transition: color .25s, background-color .25s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-header.scrolled .nav a { color: var(--muted); }
.site-header.scrolled .nav a:hover { color: var(--ink); background: rgba(11,15,13,0.05); }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang {
    display: inline-flex; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
    overflow: hidden; font-size: 0.8rem; font-weight: 600;
}
.lang a { padding: 7px 12px; color: rgba(255,255,255,0.7); transition: .25s; }
.lang a.is-active { background: var(--orange); color: #fff; }
.site-header.scrolled .lang { border-color: var(--line); }
.site-header.scrolled .lang a { color: var(--muted); }
.site-header.scrolled .lang a.is-active { background: var(--ink); color: #fff; }

.site-header.scrolled {
    background: rgba(242,243,238,0.82);
    backdrop-filter: saturate(1.4) blur(14px);
    border-bottom-color: var(--line);
}
.site-header.scrolled .nav-cta { background: var(--orange); color: #fff; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px; background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: .3s; }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 28px; }
.site-header.scrolled .burger { border-color: var(--line); }
.site-header.scrolled .burger span { background: var(--ink); }

/* ------------------------------------------------------------- hero */
.hero {
    position: relative; background: var(--emerald); color: var(--on-dark);
    padding: 150px 0 clamp(70px,8vw,110px);
    overflow: hidden;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.hero::before { /* radial glow */
    content: ""; position: absolute; width: 900px; height: 900px;
    right: -200px; top: -340px; border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201,253,93,.16), rgba(255,73,17,.12) 46%, transparent 70%);
    filter: blur(10px); pointer-events: none;
}
.hero__grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,68px);
    align-items: center;
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--orange); }
.hero .lead { color: var(--on-dark-mut); max-width: 50ch; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    color: var(--on-dark-mut); font-size: .9rem; }
.hero__trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

/* hero dashboard visual */
.dash {
    position: relative; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg);
    padding: 22px; backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
.dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash__top .t { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.05rem; }
.dash__pill { font-size: .72rem; font-weight: 600; color: var(--lime); background: rgba(201,253,93,.14);
    border: 1px solid rgba(201,253,93,.32); padding: 5px 11px; border-radius: 999px; }
.dash__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.kpi { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm); padding: 14px 16px; }
.kpi .n { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: #fff; line-height: 1; }
.kpi .l { font-size: .78rem; color: var(--on-dark-mut); margin-top: 6px; }
.kpi .n .up { color: var(--lime); font-size: .95rem; }
.chart { display: flex; align-items: flex-end; gap: 9px; height: 116px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm); padding: 14px; }
.chart .bar { flex: 1; border-radius: 6px 6px 3px 3px; background: rgba(238,242,234,.22);
    transition: height 1.1s var(--ease); }
.chart .bar.is-lime { background: var(--lime); }
.dash__float {
    position: absolute; left: -26px; bottom: -26px;
    background: #fff; color: var(--ink); border-radius: var(--r); padding: 14px 18px;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.dash__float .ic { width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--lime);
    display: grid; place-items: center; }
.dash__float .ic svg { width: 22px; height: 22px; color: var(--ink); }
.dash__float b { font-family: var(--font-display); display: block; font-size: 1.05rem; }
.dash__float span { font-size: .8rem; color: var(--muted); }

/* hero phone image (replaces the css dash) */
.hero-phone {
    width: 100%; max-width: 540px; margin-inline: auto; display: block;
    filter: drop-shadow(0 38px 70px rgba(0,0,0,.55));
    -webkit-mask-image: radial-gradient(ellipse 80% 84% at 52% 46%, #000 60%, transparent 100%);
            mask-image: radial-gradient(ellipse 80% 84% at 52% 46%, #000 60%, transparent 100%);
}
@media (max-width: 1024px) { .hero-phone { max-width: 420px; } }

/* ------------------------------------------------------ logo strip */
.logos { padding: 34px 0; border-bottom: 1px solid var(--line); }
.logos__label { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted-2); margin-bottom: 22px; font-weight: 600; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: clamp(28px, 5vw, 64px); }
.logos__row img { height: 30px; width: auto; opacity: .5; filter: grayscale(1);
    transition: opacity .3s, filter .3s; }
.logos__row img:hover { opacity: .9; filter: grayscale(0); }

/* ---------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,26px); }
.stat { padding: 4px 0; }
.stat .n { font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em;
    font-size: clamp(2.6rem, 1.6rem + 2.6vw, 3.9rem); line-height: 1; color: var(--ink); }
.stat .n .suf { color: var(--mint); }
.stat .l { margin-top: 10px; color: var(--muted); font-size: .98rem; max-width: 22ch; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: clamp(14px,2vw,26px); }

/* -------------------------------------------------------- services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,22px); }
.svc {
    position: relative; background: var(--bg-2); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: clamp(26px,3vw,40px);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
    overflow: hidden; min-height: 268px; display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.svc__num { position: absolute; top: 26px; right: 30px; font-family: var(--font-display);
    font-size: .95rem; color: var(--muted-2); font-weight: 600; }
.svc__ic { width: 56px; height: 56px; border-radius: 15px; background: #EFF1EA;
    display: grid; place-items: center; margin-bottom: 22px; transition: background .4s, color .4s; }
.svc__ic svg { width: 28px; height: 28px; color: var(--emerald); }
.svc:hover .svc__ic { background: var(--lime); }
.svc h3 { font-size: 1.42rem; margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }
.svc .textlink { margin-top: auto; color: var(--emerald); }
/* featured (first) service spans full width */
.svc--feature { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: clamp(24px,4vw,56px);
    background: var(--ink); color: var(--on-dark); }
.svc--feature .svc__ic { background: rgba(201,253,93,.16); }
.svc--feature .svc__ic svg { color: var(--lime); }
.svc--feature:hover .svc__ic { background: var(--lime); }
.svc--feature:hover .svc__ic svg { color: var(--ink); }
.svc--feature h3 { color: #fff; font-size: clamp(1.6rem,1.2rem+1.4vw,2.3rem); max-width: 14ch; }
.svc--feature p { color: var(--on-dark-mut); max-width: 52ch; }
.svc--feature .textlink { color: var(--lime); margin-top: 8px; }
.svc--feature .svc__num { color: rgba(238,242,234,.4); }
.svc--feature__body { flex: 1; }

/* ---------------------------------------------------------- about */
.about { background: var(--emerald); color: var(--on-dark); border-radius: var(--r-xl);
    margin: 0 var(--pad); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.about h2 { color: #fff; }
.about .lead { color: var(--on-dark-mut); }
.about__points { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
.about__points li { display: flex; gap: 13px; align-items: flex-start; color: var(--on-dark); }
.about__points .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--orange);
    display: grid; place-items: center; margin-top: 2px; }
.about__points .tick svg { width: 13px; color: var(--ink); }
.about__visual { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
    border: 1px solid rgba(255,255,255,.12); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about__badge { position: absolute; left: 22px; bottom: 22px; z-index: 2; background: rgba(11,15,13,.55);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r);
    padding: 16px 20px; color: #fff; }
.about__badge b { font-family: var(--font-display); font-size: 2rem; color: var(--lime); display: block; line-height: 1; }
.about__badge span { font-size: .85rem; color: var(--on-dark-mut); }

/* -------------------------------------------------------- features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,22px); }
/* two-up variant (About → What We Do / Our Approach): 2 cols on desktop,
   1 col on phones so the cards never get crushed into a hyphenated sliver. */
.feat-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .feat-grid--2 { grid-template-columns: 1fr; } }
.feat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: clamp(26px,3vw,36px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feat__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--emerald);
    display: grid; place-items: center; margin-bottom: 20px; }
.feat__ic svg { width: 25px; color: var(--lime); }
.feat h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: .98rem; }

/* --------------------------------------------------------- process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); counter-reset: s; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.step::before { counter-increment: s; content: "0" counter(s); position: absolute; top: -2px; left: 0;
    border-top: 2px solid var(--orange); padding-top: 16px; font-family: var(--font-display);
    font-weight: 600; color: var(--mint); font-size: .95rem; }
.step h4 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ----------------------------------------------------- testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,22px); }
.quote { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: clamp(26px,3vw,34px); display: flex; flex-direction: column; }
.quote .mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--lime-deep);
    height: 26px; }
.quote p { font-size: 1.06rem; color: var(--text); margin: 14px 0 22px; }
.quote .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--orange);
    display: grid; place-items: center; font-family: var(--font-display); font-weight: 600;
    object-fit: cover; flex-shrink: 0; }
.quote .who b { font-family: var(--font-display); font-weight: 600; display: block; font-size: 1rem; }
.quote .who span { font-size: .85rem; color: var(--muted); }
.quote .stars { color: var(--lime-deep); margin-bottom: 4px; letter-spacing: 2px; font-size: .9rem; }

/* ----------------------------------------------------------- CTA band */
.cta {
    position: relative; background: var(--orange); color: #fff;
    border-radius: var(--r-xl); padding: clamp(44px,6vw,80px) clamp(28px,5vw,72px);
    overflow: hidden; margin: 0 var(--pad);
    display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta::after { content:""; position:absolute; right:-160px; bottom:-220px; width:520px; height:520px;
    border-radius:50%; background: radial-gradient(circle, rgba(20,20,20,.14), transparent 66%); }
.cta h2 { color: #fff; font-size: clamp(2rem,1.3rem+2.4vw,3.3rem); max-width: 18ch; position: relative; }
.cta .lead { color: rgba(255,255,255,.86); margin-top: 14px; position: relative; }
.cta__actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn--dark { --bg: var(--ink); --fg: #fff; }
.cta .btn--dark:hover { --bg: #000; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn--ghost:hover { border-color: #fff; }

/* --------------------------------------------------------- contact */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,64px); }
.contact__info { display: grid; gap: 18px; margin-top: 30px; }
.contact__info a, .contact__info p { display: flex; gap: 14px; align-items: center; color: var(--text);
    font-size: 1.05rem; }
.contact__info .ic { width: 46px; height: 46px; border-radius: 13px; background: #EFF1EA; flex: none;
    display: grid; place-items: center; }
.contact__info .ic svg { width: 22px; color: var(--emerald); }
.contact__info a:hover { color: var(--mint); }
.form { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: clamp(26px,3vw,40px); box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem;
    padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfbf9;
    color: var(--text); transition: border-color .25s, box-shadow .25s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(255,73,17,.15); }

/* ---------------------------------------------------------- footer */
.footer { background: var(--ink); color: var(--on-dark); padding: clamp(56px,7vw,90px) 0 30px;
    margin-top: clamp(60px,8vw,110px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer__about { color: var(--on-dark-mut); max-width: 34ch; font-size: .98rem; }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: -.01em; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-mut); padding: 6px 0; font-size: .96rem;
    transition: color .25s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { margin-top: clamp(38px,5vw,60px); padding-top: 24px; border-top: 1px solid var(--line-dark);
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    color: var(--on-dark-mut); font-size: .88rem; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark);
    display: grid; place-items: center; transition: .25s; }
.footer__socials a:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.footer__socials svg { width: 17px; }

/* =======================  multi-page additions  ====================== */
.nav a.active { color: #fff; }
.site-header.scrolled .nav a.active { color: var(--ink); }

/* sub-page header */
.subhero {
    position: relative; background: var(--emerald); color: var(--on-dark);
    padding: 168px 0 clamp(56px,7vw,92px); overflow: hidden;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.subhero::before {
    content:""; position:absolute; width:760px; height:760px; right:-220px; top:-300px; border-radius:50%;
    background: radial-gradient(circle, rgba(201,253,93,.14), rgba(255,73,17,.10) 46%, transparent 70%);
    pointer-events:none;
}
.subhero__inner { position: relative; max-width: 760px; }
.subhero h1 { color:#fff; font-size: clamp(2.4rem,1.5rem+3vw,3.8rem); }
.subhero .lead { color: var(--on-dark-mut); margin-top: 18px; }

/* text + photo media rows */
.media { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items:center; }
.media--rev .media__text { order: 2; }
.media__img { border-radius: var(--r-lg); overflow:hidden; position:relative; box-shadow: var(--shadow);
    aspect-ratio: 4/3; }
.media__img img { width:100%; height:100%; object-fit:cover; display:block; }
.media__text h2 { margin-bottom: 18px; }
.media__text p + p { margin-top: 14px; }
.media__badge { position:absolute; left:20px; bottom:20px; background: rgba(20,20,20,.62); backdrop-filter: blur(8px);
    border:1px solid rgba(255,255,255,.16); border-radius: var(--r); padding:14px 18px; color:#fff; }
.media__badge b { font-family: var(--font-display); font-size:1.8rem; color: var(--lime); display:block; line-height:1; }
.media__badge span { font-size:.82rem; color: rgba(244,244,244,.7); }

/* 8-up services list (services.html) */
.svc-list { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); }
.svc-sm { background: var(--bg-2); border:1px solid var(--line); border-radius: var(--r-lg);
    padding: clamp(24px,2.4vw,34px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.svc-sm:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-sm__ic { width:52px;height:52px;border-radius:13px;background:#EDEEE9;display:grid;place-items:center;margin-bottom:18px; }
.svc-sm__ic svg { width:26px;height:26px;color:var(--ink); }
.svc-sm:nth-child(2n) .svc-sm__ic { background: var(--ink); } .svc-sm:nth-child(2n) .svc-sm__ic svg{ color:var(--lime); }
.svc-sm h3 { font-size:1.22rem; margin-bottom:9px; }
.svc-sm p { color: var(--muted); font-size:.96rem; }

/* two real stats */
.statduo { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,60px); }
.statduo .stat .n { color: var(--ink); }

/* features split (features.html) */
.fsplit { display:grid; gap: 18px; margin-top: 30px; }
.fsplit li { list-style:none; display:flex; gap:14px; align-items:flex-start; }
.fsplit .tick { flex:none; width:26px;height:26px;border-radius:50%;background:var(--orange);display:grid;place-items:center;margin-top:2px;}
.fsplit .tick svg{ width:14px; color:#fff; }
.subitems { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); }
.subitem { border-top:2px solid var(--line); padding-top:22px; }
.subitem::before{ content:""; display:block; width:40px;height:2px;background:var(--orange);margin-top:-2px;margin-bottom:18px;}
.subitem h4 { font-size:1.2rem; margin-bottom:8px; }
.subitem p { color: var(--muted); font-size:.96rem; }

@media (max-width: 860px){
    .media, .media--rev .media__text { grid-template-columns:1fr; order:0; }
    .svc-list, .subitems { grid-template-columns:1fr; }
    .statduo { grid-template-columns:1fr 1fr; }
}

/* -------------------------------------------- text flow / readability */
/* Justified body copy + hyphenation fills the measure edge-to-edge, so long
   descriptive blocks stop reading as a ragged "left-only" column on narrow
   phone screens. Hyphenation keeps word-gaps tight (no "rivers"). Headings,
   eyebrows, buttons and short labels intentionally stay ragged-left. */
.lead,
.media__text p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}
/* Narrow card columns read better ragged-left (justify gets gappy under
   ~40ch), but hyphenation still prevents overflow on long words. */
.svc p, .svc-sm p, .feat p, .subitem p, .quote p {
    -webkit-hyphens: auto;
    hyphens: auto;
}
/* Avoid awkward breaks / overflow on long words, URLs, emails everywhere. */
p, li, .lead, h1, h2, h3, h4, h5 { overflow-wrap: break-word; }
/* Centered blocks must never be justified. */
.section-head--center .lead,
.subhero__inner.is-center .lead { text-align: center; }

/* ----------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ------------------------------------------------------ mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 200; background: var(--emerald); color: #fff;
    transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column;
    padding: 26px var(--pad); }
.mobile-nav.open { transform: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav__close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px;
    background: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.mobile-nav a.m-link { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: #fff;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a.m-link:hover { color: var(--lime); }
.mobile-nav .btn { margin-top: 28px; align-self: flex-start; }

/* ------------------------------------------------------ responsive */
@media (max-width: 1024px) {
    .nav, .lang { display: none; }
    .burger { display: block; }
    .hero__grid { grid-template-columns: 1fr; }
    .dash { max-width: 520px; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 34px; }
}
@media (max-width: 860px) {
    body { font-size: 16px; }
    .svc-grid, .feat-grid, .quotes, .steps { grid-template-columns: 1fr; }
    .svc--feature { flex-direction: column; align-items: flex-start; }
    .about__grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
    .stat + .stat { border-left: 0; padding-left: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 22px; }
    .form .row { grid-template-columns: 1fr; }
    .cta { flex-direction: column; align-items: flex-start; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .header-right .nav-cta { display: none; }
    .brand { font-size: 1.18rem; }
}
@media (max-width: 480px) {
    .footer__top { grid-template-columns: 1fr; }
    .dash__float { left: 0; }
    .hero { border-radius: 0 0 24px 24px; }
}
