/* ================================================================
   SHINDI — style.css  (v4)
   ================================================================ */

@font-face {
    font-family: 'HelveticaGeo';
    src: url('../Assests/Branding/Fonts/helvetica-neue-lt-geo-55-roman.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'HelveticaGeo';
    src: url('../Assests/Branding/Fonts/helvetica-neue-lt-geo-75-bold-caps.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Semantic heading tags used for SEO — visual style comes from their classes */
h1, h2, h3 { font-size: inherit; font-weight: inherit; line-height: inherit; }
:root {
    --red:    #E42C42;
    --blue:   #506FFC;
    --dark:   #111111;
    --dark2:  #1a1a1a;
    --white:  #FFFFFF;
    --gray:   #F4F4F2;
    --muted:  #888;
    --border: #E0E0E0;
    --border-dark: rgba(255,255,255,.1);
    --font:   'HelveticaGeo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --ease:   cubic-bezier(.25,.46,.45,.94);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
body.is-loading { overflow: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── LOADER ──────────────────────────────────────────────────── */
#loader {
    position: fixed; inset: 0;
    background: #0a0a0a;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: transform 1s cubic-bezier(.76,0,.24,1), opacity .4s ease .65s;
}
#loader.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.loader-content {
    display: flex; flex-direction: column; align-items: center; gap: 48px;
    animation: loaderReveal .7s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes loaderReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.loader-logo-img { height: 54px; width: auto; filter: brightness(0) invert(1); }
.loader-progress-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-bar-track { width: 200px; height: 1px; background: rgba(255,255,255,.1); position: relative; overflow: hidden; }
.loader-bar-fill {
    position: absolute; inset: 0; width: 0%;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transition: width .15s linear;
}
.loader-pct { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.25); font-weight: 700; }

/* ── NAV OVERLAY ─────────────────────────────────────────────── */
.nav-overlay {
    position: fixed; inset: 0; background: var(--dark); z-index: 500;
    display: flex; flex-direction: column; padding: 32px 48px 48px;
    transform: translateY(-100%); transition: transform .6s cubic-bezier(.76,0,.24,1);
    overflow: hidden;
}
.nav-overlay.open { transform: translateY(0); }

/* Blob background in overlay — same motion as hero/footer */
.overlay-blob {
    position: absolute; right: -8%; top: -15%; width: 60%; height: 120%;
    border-radius: 48% 52% 40% 56% / 38% 46% 52% 44%;
    background:
        radial-gradient(ellipse at 32% 42%, rgba(228,44,66,.52)  0%, transparent 50%),
        radial-gradient(ellipse at 68% 65%, rgba(80,111,252,.46)  0%, transparent 52%),
        radial-gradient(ellipse at 50% 85%, rgba(80,111,252,.28)  0%, transparent 46%);
    filter: blur(80px);
    pointer-events: none; mix-blend-mode: screen; z-index: 0;
}

/* Ensure all overlay content sits above the blob */
.overlay-top, .overlay-nav, .overlay-footer { position: relative; z-index: 1; }

.overlay-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; }
.overlay-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }

/* Top-right cluster: lang switch + close */
.overlay-top-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
    padding: 9px 18px; border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.22);
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    color: rgba(255,255,255,.55); background: transparent;
    font-family: var(--font);
    transition: border-color .3s, color .3s, background .3s; cursor: pointer;
}
.lang-switch:hover { border-color: rgba(255,255,255,.6); color: var(--white); background: rgba(255,255,255,.08); }
.lang-switch .lang-active { color: var(--white); }

.overlay-close {
    width: 50px; height: 50px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px; font-weight: 300;
    transition: border-color .3s, background .3s;
}
.overlay-close:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.overlay-nav { flex: 1; }
.overlay-nav li { border-top: 1px solid rgba(255,255,255,.08); }
.overlay-nav li:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.overlay-nav a {
    display: flex; align-items: center; justify-content: space-between; padding: 20px 0;
    font-size: clamp(28px, 5vw, 52px); font-weight: 700;
    color: rgba(255,255,255,.85); transition: color .3s, padding-left .3s;
}
.overlay-nav a:hover { color: var(--red); padding-left: 16px; }
.nav-arrow { font-size: .55em; opacity: .4; transition: opacity .3s, transform .3s; }
.overlay-nav a:hover .nav-arrow { opacity: 1; transform: translate(4px,-4px); }
.overlay-footer { display: flex; gap: 40px; align-items: flex-end; flex-wrap: wrap; margin-top: 40px; }
.overlay-contact-item { font-size: 14px; color: rgba(255,255,255,.5); }
.overlay-contact-item a { color: rgba(255,255,255,.7); transition: color .3s; }
.overlay-contact-item a:hover { color: var(--white); }
.overlay-socials { display: flex; gap: 10px; margin-left: auto; }
.overlay-socials a {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    transition: background .3s, border-color .3s, color .3s;
}
.overlay-socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); color: var(--white); }
.overlay-socials svg { width: 18px; height: 18px; }

/* ── HIRE MODAL ──────────────────────────────────────────────── */
.modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
    z-index: 800; display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal-card {
    background: var(--white); border-radius: 16px; padding: 52px 48px;
    width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto;
    position: relative; transform: translateY(24px) scale(.97);
    transition: transform .4s var(--ease-spring);
}
.modal-backdrop.open .modal-card { transform: translateY(0) scale(1); }
.modal-close-btn {
    position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
    border-radius: 50%; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--muted); transition: background .3s, color .3s;
}
.modal-close-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.modal-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 14px 18px; background: var(--gray); border: 1.5px solid transparent;
    border-radius: 8px; font-family: var(--font); font-size: 15px; color: var(--dark);
    outline: none; -webkit-appearance: none; appearance: none;
    transition: border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px rgba(228,44,66,.1); background: var(--white);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #bbb; }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
.btn-submit {
    width: 100%; padding: 16px; background: var(--red); color: var(--white);
    border-radius: 8px; font-size: 15px; font-weight: 700; border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .3s, color .3s, transform .2s; margin-top: 8px;
}
.btn-submit:hover { background: transparent; color: var(--red); }
.btn-submit:active { transform: scale(.98); }
.btn-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success { display: none; flex-direction: column; align-items: center; gap: 16px; padding: 32px; text-align: center; }
.form-success svg { width: 52px; height: 52px; }
.form-success p { font-size: 16px; line-height: 1.6; }

/* ── HEADER ─────────────────────────────────────────────────── */
#header {
    position: fixed; inset: 0 0 auto 0; height: 74px; z-index: 200;
    background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: transform .5s cubic-bezier(.76,0,.24,1), border-color .3s, box-shadow .3s;
}
#header.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.07); }
#header.nav-hidden { transform: translateY(-100%); }
.header-inner { max-width: 100%; padding: 0 32px; height: 100%; display: flex; align-items: center; gap: 16px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; transition: opacity .3s; }
.header-logo:hover { opacity: .65; }
.header-logo img { height: 28px; width: auto; }
.header-tagline {
    font-size: 12px;
    font-weight: 400;           /* ← normal weight, not bold */
    letter-spacing: .06em;
    color: var(--muted);
    transition: opacity .4s, transform .4s; white-space: nowrap;
}
#header.scrolled .header-tagline { opacity: 0; pointer-events: none; transform: translateX(-8px); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.hire-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white);
    border-radius: 100px; padding: 11px 26px;
    font-size: 13px; font-weight: 700; letter-spacing: .04em;
    border: 2px solid var(--red); transition: background .3s, color .3s;
}
.hire-btn:hover { background: transparent; color: var(--red); }
.hire-btn .arr { display: inline-block; transition: transform .3s; font-style: normal; }
.hire-btn:hover .arr { transform: translate(3px,-3px); }
.burger-circle {
    width: 46px; height: 46px; border: 1.5px solid rgba(0,0,0,.2); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; transition: background .3s, border-color .3s;
}
.burger-circle:hover { background: var(--dark); border-color: var(--dark); }
.burger-circle span { display: block; width: 16px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: background .3s, transform .3s, opacity .3s; }
.burger-circle:hover span { background: var(--white); }
.burger-circle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-circle.open span:nth-child(2) { opacity: 0; }
.burger-circle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 110px 0 0; overflow: hidden;   /* side padding lives on children */
    background: var(--gray);
}
.hero-blob {
    position: absolute; top: -10%; right: -5%; width: 65%; height: 120%;
    border-radius: 40% 50% 50% 40% / 30% 40% 50% 50%;
    background:
        radial-gradient(ellipse at 25% 35%, rgba(228,44,66,.82)  0%, transparent 50%),
        radial-gradient(ellipse at 72% 18%, rgba(80,111,252,.78)  0%, transparent 52%),
        radial-gradient(ellipse at 45% 72%, rgba(80,111,252,.55)  0%, transparent 48%),
        radial-gradient(ellipse at 12% 70%, rgba(228,44,66,.45)  0%, transparent 44%),
        radial-gradient(ellipse at 80% 65%, rgba(160,60,180,.4)  0%, transparent 42%);
    filter: blur(60px);
    pointer-events: none; mix-blend-mode: multiply;
}
@keyframes blobDrift {
    0%   { transform: scale(1)    translate(0,    0)    rotate(0deg);   border-radius: 40% 50% 50% 40% / 30% 40% 50% 50%; }
    20%  { transform: scale(1.07) translate(-3%,  4%)   rotate(5deg);   border-radius: 55% 40% 60% 35% / 48% 55% 38% 60%; }
    40%  { transform: scale(.93)  translate(4%, -3%)    rotate(-4deg);  border-radius: 32% 62% 38% 58% / 58% 32% 62% 38%; }
    60%  { transform: scale(1.1)  translate(-2%,  2%)   rotate(3deg);   border-radius: 62% 34% 52% 44% / 38% 62% 44% 52%; }
    80%  { transform: scale(.97)  translate(2%, -1%)    rotate(-2deg);  border-radius: 44% 56% 34% 62% / 52% 38% 58% 36%; }
    100% { transform: scale(1.04) translate(-1%,  1.5%) rotate(1.5deg); border-radius: 48% 52% 36% 58% / 56% 36% 52% 42%; }
}

/* Asymmetric big text — above blob, with own side padding */
.hero-text-wrap { position: relative; z-index: 1; padding: 0 48px 52px; margin-top: 28px; }
.hero-line {
    display: block;
    font-size: clamp(58px, 12.5vw, 132px); font-weight: 700;
    line-height: .93; letter-spacing: -.03em; white-space: nowrap;
}
.hero-l1 { margin-left: 0; }
.hero-l2 { margin-left: clamp(40px, 6vw, 110px); }
.hero-l3 { margin-left: clamp(10px, 2vw, 40px); }
.hero-l4 { margin-left: clamp(60px, 11vw, 200px); }
.hero-line .t-red { color: var(--red); }
#heroWord { display: inline-block; }
#heroWord::after {
    content: '|'; display: inline-block; color: var(--red);
    margin-left: 4px; font-weight: 400;
    animation: cursorBlink .7s step-end infinite;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── STATS  (bottom of hero, white band) ─────────────────────── */
#stats { background: var(--white); position: relative; z-index: 1; }
.stats-band {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border); overflow: hidden;
}
.stat-block {
    padding: 64px 52px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden; transition: background .4s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--gray); }
.stat-block::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transition: width .6s var(--ease);
}
.stat-block:hover::before { width: 100%; }
.stat-big {
    font-size: clamp(48px, 6vw, 80px); font-weight: 700;
    color: var(--dark); line-height: 1; letter-spacing: -.03em; margin-bottom: 14px;
}
.stat-pct { font-size: .6em; color: var(--red); }
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.5; }
/* Text-only box (box 1 of stats band) */
.stat-block--text { display: flex; align-items: center; }
.stat-block--text .stat-text {
    font-size: clamp(14px, 1.2vw, 16px); line-height: 1.85;
    color: var(--dark); font-weight: 400;
}

/* ── SERVICES ────────────────────────────────────────────────── */
#services { position: relative; }
/* 3 cards: (3 + 1) * 70vh + 100vh = compact fast feel */
.svc-sticky-outer { position: relative; height: calc(3 * 70vh + 100vh); }
.svc-sticky-panel {
    position: sticky; top: 0; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--white);
    transition: background .7s var(--ease);
}
.svc-panel-header {
    position: absolute; top: 28px; left: 48px; right: 48px;
    display: flex; align-items: center; justify-content: space-between; z-index: 2;
}
.svc-panel-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); }
.svc-panel-counter { font-size: 13px; font-weight: 700; color: var(--muted); }
.svc-panel-counter .cur { color: var(--dark); font-size: 20px; }
.svc-cards-stack { position: relative; width: 100%; max-width: 1200px; padding: 0 48px; }
.svc-scroll-item {
    position: absolute; top: 50%; left: 48px; right: 48px;
    transform: translateY(calc(-50% + 50px)); opacity: 0;
    transition: opacity .6s var(--ease), transform .6s var(--ease);
    pointer-events: none;
}
.svc-scroll-item.active { opacity: 1; transform: translateY(-50%); pointer-events: auto; }
.svc-scroll-item.past   { opacity: 0; transform: translateY(calc(-50% - 50px)); }
.svc-card-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 60px 0; }
.svc-card-num { font-size: 110px; font-weight: 700; color: #eee; line-height: 1; letter-spacing: -.04em; margin-bottom: -20px; }
.svc-card-title { font-size: clamp(36px, 4vw, 64px); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; margin-bottom: 18px; }
.svc-card-desc { font-size: 16px; line-height: 1.8; color: #555; max-width: 460px; margin-bottom: 28px; }
.svc-learn-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: var(--dark);
    border-bottom: 1.5px solid var(--dark); padding-bottom: 2px;
    transition: color .3s, border-color .3s, gap .3s;
}
.svc-learn-more:hover { color: var(--red); border-color: var(--red); gap: 14px; }
.svc-learn-more svg { width: 16px; height: 16px; flex-shrink: 0; }
.svc-card-right { display: flex; align-items: center; justify-content: center; }
.svc-big-icon {
    width: min(280px, 38vw); height: min(280px, 38vw);
    background: var(--gray); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
}
.svc-big-icon svg { width: 45%; height: 45%; }
.svc-progress-bar { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--border); width: 100%; }
.svc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--blue)); width: 0%; transition: width .1s linear; }

/* ── SERVICE ICON ANIMATIONS ─────────────────────────────────── */
.svc-big-icon svg { overflow: visible; }

/* Icon box subtle glow pulse when active */
.svc-scroll-item.active .svc-big-icon {
    animation: iconBoxGlow 3.5s ease-in-out infinite;
}
@keyframes iconBoxGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(80,111,252,.12); }
    50%       { box-shadow: 0 0 0 18px rgba(80,111,252,0); }
}

/* Card 01 – Branding: rect slow spin */
.svc-scroll-item[data-index="0"].active .svc-big-icon rect:first-child {
    transform-box: fill-box; transform-origin: center;
    animation: iconSpin 14s linear infinite;
}
/* Card 01 – red dot pulse */
.svc-scroll-item[data-index="0"].active .svc-big-icon circle:nth-of-type(1) {
    transform-box: fill-box; transform-origin: center;
    animation: iconPulse 2.2s ease-in-out infinite;
}

/* Card 02 – Website: inner circle breathes */
.svc-scroll-item[data-index="1"].active .svc-big-icon circle:last-of-type {
    transform-box: fill-box; transform-origin: center;
    animation: iconPulse 2s ease-in-out infinite alternate;
}
/* Card 02 – header dots color cycle */
.svc-scroll-item[data-index="1"].active .svc-big-icon circle:nth-of-type(1) {
    animation: iconColorFlash 3s ease-in-out infinite;
}

/* Card 03 – Ads: line chart floats & rect flashes */
.svc-scroll-item[data-index="2"].active .svc-big-icon path:first-child {
    animation: iconFloat 2.8s ease-in-out infinite;
}
.svc-scroll-item[data-index="2"].active .svc-big-icon rect {
    transform-box: fill-box; transform-origin: center;
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconSpin  { to { transform: rotate(360deg); } }
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.22); } }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes iconColorFlash {
    0%, 100% { fill: #E42C42; }
    50%       { fill: #506FFC; }
}

/* ── SERVICES SCROLL THEMES ──────────────────────────────────── */
.svc-sticky-panel.svc-theme-dark { background: var(--dark); }
.svc-sticky-panel.svc-theme-dark .svc-card-num  { color: rgba(255,255,255,.07); }
.svc-sticky-panel.svc-theme-dark .svc-card-title,
.svc-sticky-panel.svc-theme-dark .svc-panel-counter .cur { color: var(--white); }
.svc-sticky-panel.svc-theme-dark .svc-card-desc { color: rgba(255,255,255,.55); }
.svc-sticky-panel.svc-theme-dark .svc-learn-more { color: var(--white); border-color: rgba(255,255,255,.6); }
.svc-sticky-panel.svc-theme-dark .svc-big-icon { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.svc-sticky-panel.svc-theme-dark .svc-progress-bar { background: rgba(255,255,255,.08); }

.svc-sticky-panel.svc-theme-red { background: var(--red); }
.svc-sticky-panel.svc-theme-red .svc-card-num  { color: rgba(255,255,255,.12); }
.svc-sticky-panel.svc-theme-red .svc-card-title,
.svc-sticky-panel.svc-theme-red .svc-panel-counter .cur { color: var(--white); }
.svc-sticky-panel.svc-theme-red .svc-panel-label { color: rgba(255,255,255,.85); }
.svc-sticky-panel.svc-theme-red .svc-panel-counter { color: rgba(255,255,255,.55); }
.svc-sticky-panel.svc-theme-red .svc-card-desc { color: rgba(255,255,255,.78); }
.svc-sticky-panel.svc-theme-red .svc-learn-more { color: var(--white); border-color: rgba(255,255,255,.6); }
.svc-sticky-panel.svc-theme-red .svc-big-icon { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); }
.svc-sticky-panel.svc-theme-red .svc-progress-bar { background: rgba(255,255,255,.2); }
.svc-sticky-panel.svc-theme-red .svc-progress-fill { background: rgba(255,255,255,.85); }

/* ── PORTFOLIO ───────────────────────────────────────────────── */
#portfolio { position: relative; background: var(--dark); }
.port-sticky-outer { position: relative; height: calc(7 * 100vh); }
.port-sticky-panel { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.port-panel-header {
    position: absolute; top: 28px; left: 48px; right: 48px;
    display: flex; align-items: center; justify-content: space-between; z-index: 10;
}
.port-panel-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.port-panel-counter { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); }
.port-panel-counter .cur { color: var(--white); font-size: 20px; }
.port-slide { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); transition: clip-path .9s cubic-bezier(.76,0,.24,1); }
.port-slide.active { clip-path: inset(0 0% 0 0); }
.port-slide.past   { clip-path: inset(0 0 0 100%); }
.port-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.port-slide.active img { transform: scale(1.03); }
.port-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%); }
.port-slide-info { position: absolute; bottom: 52px; left: 52px; right: 52px; color: var(--white); z-index: 2; }
.port-slide-title-row { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.port-slide-title { font-size: clamp(24px, 3.5vw, 48px); font-weight: 700; line-height: 1; }
.port-visit-btn {
    width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.5); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); flex-shrink: 0; transition: background .3s, border-color .3s, transform .3s;
}
.port-visit-btn:hover { background: var(--white); border-color: var(--white); color: var(--dark); transform: translate(3px,-3px); }
.port-visit-btn svg { width: 20px; height: 20px; }
.port-slide-cat { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ── PARTNERS  (dark, static asymmetric, after portfolio) ────── */
.partners-static {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 72px 0 80px;
    overflow: hidden;
}
.partners-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.partners-label {
    font-size: 11px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: rgba(255,255,255,.2);
    margin-bottom: 56px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.pl {
    display: flex; align-items: center; justify-content: center;
    padding: 44px 28px;
    transition: opacity .3s;
}
.pl img {
    filter: brightness(0) invert(1);
    height: 100px; width: auto;
    max-width: 200px; object-fit: contain; display: block;
    transition: opacity .4s;
}
.pl:hover img { opacity: 1 !important; }
/* Asymmetric vertical offsets + opacity only (no frames, uniform size) */
.pl--a { transform: translateY(0);    } .pl--a img { opacity: .30; }
.pl--b { transform: translateY(-22px);} .pl--b img { opacity: .62; }
.pl--c { transform: translateY(14px); } .pl--c img { opacity: .26; }
.pl--d { transform: translateY(-10px);} .pl--d img { opacity: .50; }
.pl--e { transform: translateY(18px); } .pl--e img { opacity: .72; }
.pl--f { transform: translateY(-16px);} .pl--f img { opacity: .36; }
.pl--g { transform: translateY(8px);  } .pl--g img { opacity: .55; }
.pl--h { transform: translateY(-24px);} .pl--h img { opacity: .28; }
.pl--i { transform: translateY(12px); } .pl--i img { opacity: .65; }
.pl--j { transform: translateY(-6px); } .pl--j img { opacity: .44; }
.pl--k { transform: translateY(16px); } .pl--k img { opacity: .58; }
.pl--l { transform: translateY(-14px);} .pl--l img { opacity: .42; }

/* ── DARK SECTION BASE ───────────────────────────────────────── */
.dark-section { background: var(--dark); color: var(--white); }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 100px 48px; }
.section-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-title-dark { font-size: clamp(34px, 4.5vw, 64px); font-weight: 700; letter-spacing: -.022em; line-height: 1.1; color: var(--white); }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
.outline-btn-dark {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(255,255,255,.25); border-radius: 100px; padding: 12px 24px;
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7);
    transition: border-color .3s, color .3s, background .3s; white-space: nowrap; flex-shrink: 0;
}
.outline-btn-dark:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.06); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.testimonials-title { font-size: clamp(30px, 3.6vw, 52px); font-weight: 700; letter-spacing: -.022em; line-height: 1.1; color: var(--white); margin-bottom: 48px; }
.testimonials-nav { display: flex; align-items: center; gap: 20px; }
.test-count { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.4); min-width: 52px; text-align: center; }
#testCur { color: var(--white); }
.test-arrow {
    width: 52px; height: 52px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); transition: background .3s, border-color .3s, color .3s;
}
.test-arrow:hover { background: var(--white); border-color: var(--white); color: var(--dark); }
.test-arrow svg { width: 18px; height: 18px; }
.test-cards-wrap { position: relative; min-height: 360px; }
.test-card {
    position: absolute; inset: 0; padding: 48px; border-radius: 20px;
    display: flex; flex-direction: column; gap: 24px;
    opacity: 0; transform: translateX(40px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    pointer-events: none;
}
.test-card.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.test-card--pink   { background: #f2c4ce; color: var(--dark); }
.test-card--blue   { background: #c4d0f7; color: var(--dark); }
.test-card--green  { background: #b8e6cc; color: var(--dark); }
.test-card--yellow { background: #f5e4a0; color: var(--dark); }
.test-client { font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.test-quote { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.65; flex: 1; font-style: normal; }
.test-author strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.test-author span { font-size: 13px; color: rgba(0,0,0,.5); }
.test-link { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; width: fit-content; transition: opacity .3s; }
.test-link:hover { opacity: .6; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border-dark); }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-question {
    width: 100%; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
    font-size: clamp(16px, 1.6vw, 20px); font-weight: 700; color: var(--white); text-align: left; transition: color .3s;
}
.faq-question:hover { color: var(--red); }
.faq-icon {
    width: 36px; height: 36px; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); transition: background .3s, border-color .3s, transform .4s;
}
.faq-question[aria-expanded="true"] .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease), padding .5s; }
.faq-answer.open { max-height: 300px; padding-bottom: 28px; }
.faq-answer p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 800px; }

/* ── BLOG (dark theme) ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
    background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); border-radius: 16px;
    padding: 36px; display: flex; flex-direction: column; gap: 20px;
    transition: background .3s, border-color .3s, transform .3s;
}
.blog-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.blog-title { font-size: clamp(17px, 1.8vw, 22px); font-weight: 700; color: var(--white); line-height: 1.4; flex: 1; }
.blog-excerpt { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.45); }
.blog-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 4px; transition: gap .3s; }
.blog-link:hover { gap: 10px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
    background: var(--dark2); color: var(--white);
    border-top: 1px solid rgba(255,255,255,.06);
    position: relative; overflow: hidden;
}
.footer-blob {
    position: absolute; left: -10%; bottom: -20%; width: 70%; height: 160%;
    border-radius: 40% 55% 50% 40% / 35% 40% 55% 48%;
    background:
        radial-gradient(ellipse at 28% 62%, rgba(228,44,66,.38)  0%, transparent 50%),
        radial-gradient(ellipse at 70% 28%, rgba(80,111,252,.34)  0%, transparent 52%),
        radial-gradient(ellipse at 48% 82%, rgba(80,111,252,.22)  0%, transparent 46%),
        radial-gradient(ellipse at 15% 35%, rgba(228,44,66,.18)  0%, transparent 42%);
    filter: blur(90px);
    pointer-events: none; mix-blend-mode: screen; z-index: 0;
}
.footer-cols {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
    padding: 80px 48px 60px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative; z-index: 1;
}
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); transition: background .3s, border-color .3s, color .3s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-socials svg { width: 16px; height: 16px; }

/* Logo + scroll-to-top at very end */
.footer-end {
    padding: 44px 48px;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.footer-end-logo img {
    height: auto; width: min(520px, 60vw);
    filter: brightness(0) invert(1); opacity: .75; transition: opacity .4s;
}
.footer-end-logo:hover img { opacity: 1; }
.footer-end-right { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); letter-spacing: .04em; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.scroll-top-btn {
    width: 52px; height: 52px; margin-left: auto; flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.scroll-top-btn:hover { background: var(--white); border-color: var(--white); color: var(--dark); transform: translateY(-3px); }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* ── FLOATING GIFT ───────────────────────────────────────────── */
.float-gift {
    position: fixed; bottom: 36px; right: 36px; z-index: 300;
    display: flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white);
    border-radius: 100px; padding: 14px 22px;
    font-size: 13px; font-weight: 700; letter-spacing: .03em;
    box-shadow: 0 8px 32px rgba(228,44,66,.45);
    cursor: pointer; border: none;
    /* hidden until partners section is reached */
    opacity: 0; pointer-events: none;
    transform: translateY(22px) scale(.92);
    transition: opacity .6s ease, transform .6s ease, background .3s;
}
.float-gift.visible {
    opacity: 1; pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: floatBob 3.5s ease-in-out .6s infinite;
}
.float-gift:hover { background: #c8253a; animation-play-state: paused; }
.float-gift .gift-icon { font-size: 16px; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
    position: fixed; bottom: 36px; left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--dark); color: var(--white);
    padding: 13px 24px; border-radius: 8px; font-size: 14px;
    z-index: 9000; opacity: 0; transition: opacity .3s, transform .3s;
    pointer-events: none; white-space: nowrap; box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .testimonials-layout { grid-template-columns: 1fr; gap: 48px; }
    .test-cards-wrap { min-height: 420px; }
    .testimonials-nav { margin-bottom: 40px; }
}
@media (max-width: 1100px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(3) { border-top: 1px solid var(--border); }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-cols > .footer-brand { grid-column: span 2; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .svc-card-inner { grid-template-columns: 1fr; gap: 32px; }
    .svc-card-right { display: none; }
    .svc-card-num { font-size: 72px; }
    .blog-grid { grid-template-columns: 1fr; }
    /* Partners: 3 columns on tablet */
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .pl { padding: 32px 20px; }
}
@media (max-width: 768px) {
    #hero { padding: 90px 0 0; min-height: auto; justify-content: flex-start; }
    .hero-text-wrap { padding: 0 24px 40px; }
    /* Blob fills top portion of the auto-height hero */
    .hero-blob { width: 130%; height: 100%; top: -10%; bottom: auto; right: -25%; opacity: .7; }
    .hero-line { font-size: clamp(40px, 12vw, 80px); }
    .hero-l2 { margin-left: clamp(20px, 4vw, 60px); }
    /* Cycling word line may wrap on narrow screens */
    .hero-l3 { margin-left: clamp(8px, 2vw, 24px); white-space: normal; line-height: 1.05; }
    .hero-l4 { margin-left: clamp(30px, 7vw, 90px); }
    .header-tagline { display: none; }
    .section-inner { padding: 72px 24px; }
    .svc-scroll-item { left: 20px; right: 20px; }
    .svc-panel-header { left: 20px; right: 20px; }
    .port-panel-header { left: 20px; right: 20px; }
    .port-slide-info { left: 20px; right: 20px; bottom: 28px; }
    .stats-band { grid-template-columns: 1fr; }
    .stat-block { padding: 24px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .stat-block:last-child { border-bottom: none; }
    .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
    .footer-cols { grid-template-columns: 1fr; padding: 56px 24px 40px; }
    .footer-cols > .footer-brand { grid-column: auto; }
    .footer-end { padding: 36px 24px; gap: 20px; }
    .footer-end-logo img { width: min(280px, 70vw); }
    .scroll-top-btn { margin-left: 0; }
    .float-gift { bottom: 20px; right: 20px; font-size: 12px; padding: 12px 18px; }
    .overlay-nav a { font-size: clamp(22px, 5vw, 36px); }
    .nav-overlay { padding: 24px; }
    .modal-card { padding: 36px 24px; }
}
@media (max-width: 480px) {
    .hero-line { font-size: 12vw; }
    .hero-l2 { margin-left: 5vw; }
    .hero-l3 { white-space: normal; line-height: 1.05; margin-left: 2vw; }
    .hero-l4 { margin-left: 8vw; }
    .stats-band { grid-template-columns: 1fr; }
    .stat-block { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .stat-block:last-child { border-bottom: none !important; }
    .test-card { padding: 28px 20px; }
    /* Partners: 2 columns on mobile */
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .pl { padding: 24px 16px; }
    .pl img { height: 60px; max-width: 120px; }
    /* Reset wave offsets on small screens — keep logos aligned */
    .pl--a, .pl--b, .pl--c, .pl--d, .pl--e, .pl--f,
    .pl--g, .pl--h, .pl--i, .pl--j, .pl--k, .pl--l { transform: none; }
}
