/* ═══════════════════════════════════════════
   ADYNEX GLOBAL — Soft UI Stylesheet
   ═══════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    --font-heading: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Libre Baskerville', serif;
    --font-ui: 'Sora', sans-serif;
    --bg: #dde1e7;
    --bg-alt: #e8ecf1;
    --shadow-light: #ffffff;
    --shadow-dark: #b8bec7;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #9eabc0;
    --accent-red: #e74c3c;
    --accent-blue: #3498db;
    --accent-gold: #f39c12;
    --card-bg: #dde1e7;
    --inset-shadow: inset 4px 4px 8px #b8bec7, inset -4px -4px 8px #ffffff;
    --raised-shadow: 8px 8px 20px #b8bec7, -8px -8px 20px #ffffff;
    --raised-shadow-lg: 16px 16px 40px #b8bec7, -16px -16px 40px #ffffff;
    --raised-shadow-sm: 4px 4px 10px #b8bec7, -4px -4px 10px #ffffff;
    --btn-shadow: 6px 6px 14px #b8bec7, -6px -6px 14px #ffffff;
    --btn-shadow-active: inset 4px 4px 10px #b8bec7, inset -4px -4px 10px #ffffff;
}

[data-theme="dark"] {
    --bg: #1a1f2e;
    --bg-alt: #1f2535;
    --shadow-light: #252b3d;
    --shadow-dark: #0f1320;
    --text-primary: #e8ecf1;
    --text-secondary: #9eabc0;
    --text-muted: #5a6478;
    --card-bg: #1a1f2e;
    --inset-shadow: inset 4px 4px 8px #0f1320, inset -4px -4px 8px #252b3d;
    --raised-shadow: 8px 8px 20px #0f1320, -8px -8px 20px #252b3d;
    --raised-shadow-lg: 16px 16px 40px #0f1320, -16px -16px 40px #252b3d;
    --raised-shadow-sm: 4px 4px 10px #0f1320, -4px -4px 10px #252b3d;
    --btn-shadow: 6px 6px 14px #0f1320, -6px -6px 14px #252b3d;
    --btn-shadow-active: inset 4px 4px 10px #0f1320, inset -4px -4px 10px #252b3d;
}

/* ─── PRELOADER ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-logo {
    height: 80px;
    width: auto;
    max-width: 280px;
    filter: invert(1);
    opacity: 0;
}
[data-theme="dark"] .preloader-logo {
    filter: none;
}
.preloader-logo.visible {
    animation: plIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
[data-theme="dark"] .preloader-logo.visible {
    animation-name: plInDark;
}
.preloader-logo.glow {
    opacity: 1;
    animation: plGlow 1.2s ease-in-out;
}
[data-theme="dark"] .preloader-logo.glow {
    animation-name: plGlowDark;
}
.preloader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.preloader.fade-out {
    opacity: 0;
    transition: opacity 0.7s ease;
}

@keyframes plIn {
    0%   { opacity: 0; transform: scale(0.88); filter: invert(1) blur(8px); }
    65%  { opacity: 1; transform: scale(1.01); filter: invert(1) blur(0) drop-shadow(0 0 32px rgba(231,76,60,0.5)); }
    100% { opacity: 1; transform: scale(1);    filter: invert(1) drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
}
@keyframes plInDark {
    0%   { opacity: 0; transform: scale(0.88); filter: blur(8px); }
    65%  { opacity: 1; transform: scale(1.01); filter: blur(0) drop-shadow(0 0 32px rgba(231,76,60,0.5)); }
    100% { opacity: 1; transform: scale(1);    filter: drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
}
@keyframes plGlow {
    0%   { filter: invert(1) drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
    50%  { filter: invert(1) drop-shadow(0 0 44px rgba(231,76,60,0.65)) drop-shadow(0 0 90px rgba(231,76,60,0.2)); }
    100% { filter: invert(1) drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
}
@keyframes plGlowDark {
    0%   { filter: drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
    50%  { filter: drop-shadow(0 0 44px rgba(231,76,60,0.65)) drop-shadow(0 0 90px rgba(231,76,60,0.2)); }
    100% { filter: drop-shadow(0 0 18px rgba(231,76,60,0.35)); }
}

@media (max-width: 480px) {
    .preloader-logo { height: 56px; max-width: 200px; }
}

/* ─── LIQUID CURSOR ─── */
.liquid-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}
.liquid-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    filter: url(#liquidGoo);
    overflow: hidden;
}
.liquid-cursor.hidden {
    opacity: 0;
}
.liquid-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
}
.liquid-blob--main {
    width: 36px;
    height: 36px;
    background: var(--cursor-color, rgba(231, 76, 60, 0.55));
}
.liquid-blob--trail {
    width: 22px;
    height: 22px;
    background: var(--cursor-color-trail, rgba(231, 76, 60, 0.4));
}
[data-theme="dark"] .liquid-blob--main {
    background: var(--cursor-color-dark, rgba(231, 76, 60, 0.45));
}
[data-theme="dark"] .liquid-blob--trail {
    background: var(--cursor-color-trail-dark, rgba(231, 76, 60, 0.3));
}

@media (max-width: 768px) {
    .liquid-cursor { display: none; }
}
@media (pointer: coarse) {
    .liquid-cursor { display: none; }
}

/* ─── RESET & BASE ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    width: 100%;
}

img { max-width: 100%; height: auto; }
.footer-bg__img,
.testi-photo img,
.testi-card__avatar { max-width: none; }

body {
    background-color: var(--bg);
    font-family: var(--font-body);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ─── TYPOGRAPHY ─── */
.font-sora { font-family: 'Sora', sans-serif; }
.font-serif { font-family: 'Libre Baskerville', serif; }

/* ─── FONT STYLE PICKER ─── */
.font-style-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.font-style-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.font-style-option:hover {
    transform: scale(1.04);
    box-shadow: var(--raised-shadow);
}
.font-style-option.active {
    box-shadow: var(--inset-shadow);
    transform: scale(0.97);
}
.font-style-option.active .font-style-name {
    color: var(--accent-red);
}
.font-style-preview {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1;
    transition: color 0.4s ease;
}
.font-style-name {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

/* ─── SOFT UI UTILITIES ─── */
.soft-raised {
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--raised-shadow);
    transition: box-shadow 0.3s ease, background 0.4s ease;
}
.soft-raised-lg {
    background: var(--card-bg);
    border-radius: 40px;
    box-shadow: var(--raised-shadow-lg);
    transition: box-shadow 0.3s ease, background 0.4s ease;
}
.soft-inset {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--inset-shadow);
    transition: background 0.4s ease;
}
.soft-btn {
    background: var(--card-bg);
    border-radius: 50px;
    box-shadow: var(--btn-shadow);
    border: none;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: all 0.2s ease;
}
.soft-btn:active {
    box-shadow: var(--btn-shadow-active);
    transform: scale(0.98);
}
.soft-btn:hover {
    transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero-viewport {
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 1;
    overflow: hidden;
    transform: translateZ(0);
    contain: layout style paint;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    transition: opacity 0.8s ease;
}
.hero-bg--day {
    background-image: url('../images/hero-day.jpg');
}
.hero-bg--night {
    background-image: url('../images/hero-night.jpg');
    opacity: 0;
}
[data-theme="dark"] .hero-bg--day { opacity: 0; }
[data-theme="dark"] .hero-bg--night { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 0.8s ease;
}
[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.35) 100%);
}
[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 120px 56px 80px;
    gap: 48px;
    box-sizing: border-box;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 28px;
}
.hero-eyebrow span {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.hero-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-eyebrow--typewriter {
    transition: width 0.3s ease;
    white-space: nowrap;
}
.hero-eyebrow__cursor {
    display: inline-block;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    animation: blink-cursor 0.7s step-end infinite;
    margin-left: 1px;
}
@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-title {
    font-family: var(--font-ui);
    font-size: clamp(40px, 7vw, 70px);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title__accent {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: #0f1320;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 32px);
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin-bottom: 40px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.hero-btn-primary {
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(231,76,60,0.35);
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231,76,60,0.5);
}

.hero-btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.1),
        inset 1px 1px 2px rgba(255,255,255,0.3),
        inset -1px -1px 2px rgba(0,0,0,0.1),
        0 0 24px rgba(255,255,255,0.15);
}
.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}
.hero-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.12) 100%);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 
        0 12px 48px rgba(0,0,0,0.15),
        inset 1px 1px 3px rgba(255,255,255,0.4),
        inset -1px -1px 3px rgba(0,0,0,0.15),
        0 0 32px rgba(255,255,255,0.25);
}

/* ─── HERO SOFT UI CARDS ─── */
.hero-cards {
    flex: 1;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 800px;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 32px;
    box-shadow: var(--raised-shadow);
    border: none;
    padding: 28px 32px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
[data-theme="light"] .hero-viewport .hero-card {
    background: rgba(221,225,231,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
[data-theme="dark"] .hero-viewport .hero-card {
    background: rgba(26,31,46,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: var(--raised-shadow-lg);
}

.hero-card__accent-orb {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-card:hover .hero-card__accent-orb { opacity: 0.15; transform: scale(1.2); }
.hero-card--red .hero-card__accent-orb { background: #e74c3c; }
.hero-card--blue .hero-card__accent-orb { background: #3498db; }
.hero-card--gold .hero-card__accent-orb { background: #f39c12; }
.hero-card--green .hero-card__accent-orb { background: #27ae60; }
.hero-card--purple .hero-card__accent-orb { background: #8e44ad; }

.hero-card--red .hero-card__icon { box-shadow: var(--inset-shadow), inset 0 0 0 1px rgba(231,76,60,0.15); }
.hero-card--blue .hero-card__icon { box-shadow: var(--inset-shadow), inset 0 0 0 1px rgba(52,152,219,0.15); }
.hero-card--red .hero-card__title { color: #e74c3c; }
.hero-card--blue .hero-card__title { color: #3498db; }
.hero-card--gold .hero-card__stat { background: linear-gradient(135deg, #f39c12, #e67e22); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-card--green .hero-card__stat { background: linear-gradient(135deg, #27ae60, #2ecc71); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-card--purple .hero-card__stat { background: linear-gradient(135deg, #8e44ad, #9b59b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--card-bg);
    box-shadow: var(--inset-shadow);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.hero-card__title {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.4s ease;
}
.hero-card__text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}
.hero-card__stat {
    font-family: var(--font-ui);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}
.hero-card__label {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.hero-cards__row {
    display: flex;
    gap: 16px;
}
.hero-cards__row .hero-card {
    flex: 1;
    text-align: center;
    padding: 24px 20px;
}

/* ─── HERO SLIDER ─── */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: none;
}
.hero-slide--active {
    opacity: 1;
    visibility: visible;
}
.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.hero-slide--active .hero-content {
    opacity: 1;
    transform: translateY(0);
}
.hero-slide-cc-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}
[data-theme="light"] .hero-overlay--cc {
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
}
[data-theme="dark"] .hero-overlay--cc {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.55) 100%);
}
.hero-wave-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}
.hero-wave-canvas.active {
    opacity: 1;
}
.hero-slide-dots {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}
.hero-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-slide-dot--active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.2);
}
.hero-slide-dot:hover {
    border-color: rgba(255,255,255,0.9);
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 24px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.hero-bottom-bar__text {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.hero-bottom-bar__text--wide {
    letter-spacing: 0.3em;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: var(--card-bg);
    box-shadow: var(--raised-shadow);
}
.navbar:not(.scrolled) {
    background: transparent;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo img {
    height: 60px;
    width: auto;
    max-width: none;
    transition: filter 0.4s ease;
}
.navbar:not(.scrolled) .nav-logo img {
    filter: none;
}
.navbar.scrolled .nav-logo img {
    filter: invert(1);
}
[data-theme="dark"] .navbar.scrolled .nav-logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-menu__link {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.25s ease;
}
.navbar:not(.scrolled) .nav-menu__link {
    color: rgba(255,255,255,0.75);
}
.navbar:not(.scrolled) .nav-menu__link:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}
.navbar.scrolled .nav-menu__link {
    color: var(--text-secondary);
}
.navbar.scrolled .nav-menu__link:hover {
    color: var(--text-primary);
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar:not(.scrolled) .nav-cta {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}
.navbar:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .nav-cta {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 16px rgba(231,76,60,0.3);
}
.navbar.scrolled .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(231,76,60,0.4); }

.sidebar-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.navbar:not(.scrolled) .sidebar-toggle-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
}
.navbar:not(.scrolled) .sidebar-toggle-btn:hover { background: rgba(255,255,255,0.18); }
.navbar.scrolled .sidebar-toggle-btn {
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
    color: var(--text-primary);
}
.navbar.scrolled .sidebar-toggle-btn:hover { box-shadow: var(--raised-shadow); }

.hamburger-icon {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}
.hamburger-icon span:nth-child(2) { width: 12px; margin-left: auto; }

/* ─── SIDEBAR ─── */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.sidebar-backdrop.open { opacity: 1; pointer-events: auto; }

.sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: -12px 0 40px rgba(0,0,0,0.12);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--shadow-dark);
}
.sidebar-header__title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
}
.sidebar-close {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.sidebar-close:hover { box-shadow: var(--raised-shadow); color: var(--text-primary); }
.sidebar-close:active { box-shadow: var(--inset-shadow); }

.sidebar-section {
    padding: 16px 20px;
}
.sidebar-section + .sidebar-section {
    border-top: 1px solid var(--shadow-dark);
}
.sidebar-label {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

/* ─── DAY/NIGHT 3D TOGGLE ─── */
.dn-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dn-toggle__label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

.dn-toggle {
    position: relative;
    width: 156px;
    height: 64px;
    border-radius: 36px;
    border: none;
    cursor: pointer;
    background: var(--card-bg);
    box-shadow: var(--inset-shadow), 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
}

.dn-toggle__track {
    position: absolute;
    inset: 4px;
    border-radius: 32px;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.dn-toggle__track--day {
    background: linear-gradient(180deg, #4facfe 0%, #87ceeb 40%, #b8e4f9 100%);
    opacity: 1;
}
[data-theme="dark"] .dn-toggle__track--day { opacity: 0; }

.dn-toggle__track--night {
    background: linear-gradient(180deg, #0f1729 0%, #1a2742 40%, #2d3a5c 100%);
    opacity: 0;
}
[data-theme="dark"] .dn-toggle__track--night { opacity: 1; }

/* Clouds */
.dn-cloud {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 50px;
    height: 11px;
}
.dn-cloud--1 { width: 34px; bottom: 12px; right: 14px; animation: cloudDrift 6s ease-in-out infinite; }
.dn-cloud--2 { width: 24px; bottom: 6px; right: 34px; opacity: 0.7; animation: cloudDrift 8s ease-in-out infinite 1s; }
.dn-cloud--3 { width: 18px; bottom: 18px; right: 42px; opacity: 0.5; animation: cloudDrift 7s ease-in-out infinite 2s; }
.dn-cloud::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: inherit;
    border-radius: 50%;
    top: -7px;
    left: 5px;
}
.dn-cloud::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: inherit;
    border-radius: 50%;
    top: -4px;
    left: 15px;
}

@keyframes cloudDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* Stars */
.dn-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 2s ease-in-out infinite;
}
.dn-star--1 { top: 10px; left: 12px; animation-delay: 0s; }
.dn-star--2 { top: 17px; left: 28px; width: 2px; height: 2px; animation-delay: 0.5s; }
.dn-star--3 { top: 8px; left: 38px; animation-delay: 1s; }
.dn-star--4 { top: 22px; left: 18px; width: 2px; height: 2px; animation-delay: 1.5s; }
.dn-star--5 { top: 13px; left: 50px; width: 3px; height: 3px; animation-delay: 0.3s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Knob */
.dn-toggle__knob {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--card-bg);
    box-shadow:
        4px 4px 12px rgba(0,0,0,0.15),
        -2px -2px 8px rgba(255,255,255,0.6),
        inset 0 -3px 6px rgba(0,0,0,0.05),
        inset 0 3px 6px rgba(255,255,255,0.5);
    transition: left 0.5s cubic-bezier(0.68, -0.3, 0.32, 1.3), background 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .dn-toggle__knob {
    left: 98px;
    box-shadow:
        4px 4px 12px rgba(0,0,0,0.4),
        -2px -2px 8px rgba(255,255,255,0.05),
        inset 0 -3px 6px rgba(0,0,0,0.2),
        inset 0 3px 6px rgba(255,255,255,0.08);
}

/* Sun face */
.dn-knob__sun {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
[data-theme="dark"] .dn-knob__sun { opacity: 0; transform: rotate(180deg) scale(0.5); }
.dn-knob__sun::before {
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ff9500 100%);
    box-shadow: 0 0 20px rgba(255,193,7,0.5), inset 0 -4px 8px rgba(255,140,0,0.3), inset 0 4px 8px rgba(255,255,150,0.4);
}
.dn-sun-ray {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,193,7,0.2);
    animation: sunPulse 3s ease-in-out infinite;
}
.dn-sun-ray:nth-child(1) { width: 36px; height: 36px; animation-delay: 0s; opacity: 0.5; }
.dn-sun-ray:nth-child(2) { width: 40px; height: 40px; animation-delay: 0.5s; opacity: 0.3; }
.dn-sun-ray:nth-child(3) { width: 44px; height: 44px; animation-delay: 1s; opacity: 0.2; }
.dn-sun-ray:nth-child(4) { width: 48px; height: 48px; animation-delay: 1.5s; opacity: 0.1; }

@keyframes sunPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.08); opacity: 0.6; }
}

/* Moon face */
.dn-knob__moon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    transition: opacity 0.4s ease, transform 0.5s ease;
}
[data-theme="dark"] .dn-knob__moon { opacity: 1; transform: rotate(0deg) scale(1); }
.dn-knob__moon::before {
    content: '';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
    box-shadow: 0 0 16px rgba(200,200,200,0.3), inset 0 -4px 8px rgba(100,100,100,0.2), inset 0 4px 8px rgba(255,255,255,0.4);
}
.dn-crater {
    position: absolute;
    border-radius: 50%;
    background: rgba(150,150,150,0.3);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.15);
}
.dn-crater--1 { width: 8px; height: 8px; top: 14px; left: 16px; }
.dn-crater--2 { width: 5px; height: 5px; top: 24px; left: 26px; }
.dn-crater--3 { width: 4px; height: 4px; top: 17px; left: 28px; }

.sidebar-palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.sidebar-color-dot {
    aspect-ratio: 1;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--raised-shadow-sm);
    border: 3px solid transparent;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.sidebar-color-dot:hover { transform: scale(1.1); }
.sidebar-color-dot.active {
    border-color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: var(--raised-shadow);
}
.sidebar-color-dot.active::after {
    content: '\2713';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-nav__link {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-nav__link:hover {
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
    color: var(--text-primary);
}
.sidebar-nav__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    box-shadow: var(--inset-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* ─── MAIN STACK ─── */
.main-stack {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: var(--bg);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    box-shadow: 0 -40px 100px rgba(0,0,0,0.15);
    overflow-x: hidden;
    transition: background 0.4s ease;
    transform: translateZ(0);
}

/* ─── SECTION TITLES ─── */
.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-ui);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--text-primary);
    line-height: 1.05;
    transition: color 0.4s ease;
}

.section-title-alt {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--text-primary);
    line-height: 1.1;
    transition: color 0.4s ease;
}

/* ─── STORY ─── */
.story-number {
    font-family: var(--font-ui);
    font-size: 80px;
    font-weight: 900;
    color: var(--text-muted);
    opacity: 0.25;
    line-height: 1;
}

.story-card {
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
    perspective: 600px;
}
.story-card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--raised-shadow-lg);
}
.story-card__accent-orb {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.story-card:hover .story-card__accent-orb { opacity: 0.14; transform: scale(1.2); }
.story-card--red .story-card__accent-orb { background: #e74c3c; }
.story-card--blue .story-card__accent-orb { background: #3498db; }
.story-card--green .story-card__accent-orb { background: #27ae60; }
.story-card--gold .story-card__accent-orb { background: #f39c12; }
.story-card--red .story-number { color: #e74c3c; opacity: 0.3; }
.story-card--blue .story-number { color: #3498db; opacity: 0.3; }
.story-card--green .story-number { color: #27ae60; opacity: 0.3; }
.story-card--gold .story-number { color: #f39c12; opacity: 0.3; }
.story-card--red::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #e74c3c, transparent); border-radius: 0 0 24px 24px; }
.story-card--blue::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #3498db, transparent); border-radius: 0 0 24px 24px; }
.story-card--green::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #27ae60, transparent); border-radius: 0 0 24px 24px; }
.story-card--gold::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #f39c12, transparent); border-radius: 0 0 24px 24px; }

/* ─── SERVICE CARDS ─── */
.service-card {
    background: var(--card-bg);
    border-radius: 32px;
    box-shadow: var(--raised-shadow);
    padding: 40px 36px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
    box-shadow: var(--raised-shadow-lg);
}

.service-card__accent-orb {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.service-card:hover .service-card__accent-orb { opacity: 0.14; transform: scale(1.3); }
.service-card--red .service-card__accent-orb { background: #e74c3c; }
.service-card--blue .service-card__accent-orb { background: #3498db; }
.service-card--purple .service-card__accent-orb { background: #8e44ad; }
.service-card--gold .service-card__accent-orb { background: #f39c12; }
.service-card--green .service-card__accent-orb { background: #27ae60; }

.service-card--red .service-icon { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(231,76,60,0.12); }
.service-card--blue .service-icon { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(52,152,219,0.12); }
.service-card--purple .service-icon { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(142,68,173,0.12); }
.service-card--gold .service-icon { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(243,156,18,0.12); }
.service-card--green .service-icon { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(39,174,96,0.12); }

.service-card--red .heading-service { color: #e74c3c; }
.service-card--blue .heading-service { color: #3498db; }
.service-card--purple .heading-service { color: #8e44ad; }
.service-card--gold .heading-service { color: #f39c12; }
.service-card--green .heading-service { color: #27ae60; }

.service-card--red .explore-link { color: #e74c3c; }
.service-card--blue .explore-link { color: #3498db; }
.service-card--purple .explore-link { color: #8e44ad; }
.service-card--gold .explore-link { color: #f39c12; }
.service-card--green .explore-link { color: #27ae60; }

.service-card--red::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #e74c3c, transparent 80%); }
.service-card--blue::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #3498db, transparent 80%); }
.service-card--purple::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #8e44ad, transparent 80%); }
.service-card--gold::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #f39c12, transparent 80%); }
.service-card--green::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #27ae60, transparent 80%); }

/* Pin & number badge (mobile zigzag only) */
.service-card__pin,
.service-card__num {
    display: none;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    box-shadow: var(--inset-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

/* ─── GHOST / OUTLINE TEXT ─── */
.ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 3px var(--text-primary);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.08;
    transition: -webkit-text-stroke 0.4s ease, opacity 0.4s ease;
}
[data-theme="dark"] .ghost-text {
    -webkit-text-stroke: 3px rgba(255,255,255,0.9);
    opacity: 0.06;
}

/* ─── INFOGRAPHIC SERVICES ─── */
.infographic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    transition: transform 0.3s ease;
    position: relative;
}
.infographic-item:hover {
    transform: translateY(-6px);
}
.infographic-num-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 4px;
}
.infographic-num {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: translateY(100%);
}
.infographic-item:hover .infographic-num {
    opacity: 1 !important;
}
.infographic-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.infographic-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 280px;
}
.infographic-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: var(--inset-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    transition: box-shadow 0.3s ease, color 0.3s ease;
}
.infographic-item:hover .infographic-icon {
    box-shadow: var(--raised-shadow-sm);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .infographic-services {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 20px !important;
    }
    .infographic-num {
        font-size: clamp(3rem, 12vw, 5rem);
    }
}
@media (max-width: 480px) {
    .infographic-services {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ─── BRANDS SHOWCASE (Tata-style) ─── */
#brands {
    height: 90vh;
    min-height: 600px;
    max-height: 860px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}
.brands-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.brands-bg__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
}
.brands-bg__img--active {
    opacity: 1;
}
.brands-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.08) 35%, rgba(0,0,0,0.6) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, transparent 65%);
    z-index: 1;
    overflow: hidden;
}

/* Two-column layout: info left, image right */
.brands-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
    height: calc(100% - 180px);
    display: flex;
    align-items: flex-end;
    gap: 60px;
}
.brands-info-col {
    flex: 1;
    padding-bottom: 48px;
}
.brands-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(231,76,60,0.85);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 24px;
}
.brands-info__name {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    transition: opacity 0.4s ease;
}
.brands-info__tagline {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 28px;
    transition: opacity 0.4s ease;
}
.brands-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.brands-view-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* Right: featured image */
.brands-featured {
    flex: 0 0 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}
.brands-featured__img-wrap {
    position: relative;
    width: 340px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.3);
}
.brands-featured__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.brands-featured__img--active {
    opacity: 1;
}

/* Bottom: glass thumbnail strip — in gap between brands & footer */
.brands-strip {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: auto;
    max-width: calc(100% - 60px);
    padding: 16px 36px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.35);
    overflow: visible;
}
.brands-track-scroll {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.brands-track-scroll::-webkit-scrollbar { display: none; }

.brands-track {
    display: inline-flex;
    gap: 16px;
    padding-top: 20px;
}

.brand-thumb {
    flex-shrink: 0;
    width: 160px;
    height: 115px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.45;
    filter: grayscale(40%);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}
.brand-thumb__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 6px 5px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    border-radius: 0 0 16px 16px;
    font-size: 11px;
    font-weight: 700;
    padding: 22px 8px 8px;
}
/* Active indicator — breathing ring + pulse dot */
.brand-thumb--active .brand-thumb__label::before {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; box-shadow: 0 0 8px rgba(255,255,255,0.8); }
    50% { transform: translateX(-50%) scale(1.6); opacity: 0.6; box-shadow: 0 0 18px rgba(255,255,255,0.5); }
}

/* Shimmer sweep on active thumb */
.brand-thumb--active::before {
    background: none !important;
    animation: none !important;
}
.brand-thumb--active .brand-thumb__shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}
.brand-thumb--active .brand-thumb__shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmerSweep 2.5s ease-in-out infinite;
}
@keyframes shimmerSweep {
    0% { left: -60%; }
    100% { left: 160%; }
}

/* Image popup on hover */
.brand-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-thumb:hover img {
    transform: scale(1.15);
}
.brand-thumb--active img {
    transform: scale(1.1);
}

.brand-thumb:hover {
    opacity: 0.8;
    filter: grayscale(10%);
    transform: translateY(-10px) scale(1.05);
}
.brand-thumb--active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-16px) scale(1.1);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.2);
    z-index: 2;
}

/* Active border glow */
.brand-thumb--active {
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(231,76,60,0.2);
}

/* Progress bar */
.brand-thumb--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 0 0 12px 12px;
    z-index: 2;
    animation: brandProgress 4s linear forwards;
}
@keyframes brandProgress {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 1024px) {
    .brands-featured { flex: 0 0 280px; }
    .brands-featured__img-wrap { width: 260px; height: 340px; }
}
@media (max-width: 768px) {
    #brands { height: 80vh; min-height: 520px; margin-bottom: 60px; }
    .brands-content { flex-direction: column; align-items: flex-start; padding: 0 28px; gap: 24px; height: calc(100% - 140px); }
    .brands-featured { flex: none; align-self: center; }
    .brands-featured__img-wrap { width: 200px; height: 260px; border-radius: 20px; }
    .brands-info-col { padding-bottom: 0; }
    .brands-info__name { font-size: clamp(26px, 6vw, 36px); }
    .brands-info__tagline { font-size: 13px; max-width: 100%; }
    .brands-strip { bottom: -55px; max-width: calc(100% - 28px); padding: 16px 20px; border-radius: 22px; }
    .brands-track { gap: 12px; }
    .brand-thumb { width: 120px; height: 85px; border-radius: 14px; }
    .brand-thumb__label { font-size: 9px; padding: 14px 4px 6px; border-radius: 0 0 12px 12px; }
    #brands { margin-bottom: 80px; }
}
@media (max-width: 480px) {
    #brands { height: 75vh; min-height: 480px; margin-bottom: 70px; }
    .brands-content { padding: 0 20px; }
    .brands-featured__img-wrap { width: 160px; height: 210px; }
    .brands-info__name { font-size: 24px; }
    .brands-strip { bottom: -45px; max-width: calc(100% - 16px); padding: 14px 16px; border-radius: 20px; }
    .brand-thumb { width: 100px; height: 72px; border-radius: 12px; }
}

/* ─── CONTACT INFO CARDS ─── */
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
}
.contact-info-card:hover {
    transform: translateY(-3px) translateX(3px);
    box-shadow: var(--raised-shadow-lg);
}
.contact-info-card__orb {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.contact-info-card:hover .contact-info-card__orb { opacity: 0.14; }
.contact-info-card--red .contact-info-card__orb { background: #e74c3c; }
.contact-info-card--blue .contact-info-card__orb { background: #3498db; }
.contact-info-card--gold .contact-info-card__orb { background: #f39c12; }
.contact-info-card--red .soft-inset { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(231,76,60,0.12); }
.contact-info-card--blue .soft-inset { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(52,152,219,0.12); }
.contact-info-card--gold .soft-inset { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(243,156,18,0.12); }

/* ─── VISION / MISSION ─── */
.vm-grid .soft-raised-lg {
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
}
.vm-grid .soft-raised-lg:hover {
    transform: translateY(-6px) rotateX(1deg);
    box-shadow: var(--raised-shadow-lg);
}

.vm-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    box-shadow: var(--raised-shadow-sm);
    margin-bottom: 20px;
}
.vm-pill__dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}

/* ─── STATS ─── */
.stat-card {
    text-align: center;
    background: var(--card-bg);
    border-radius: 28px;
    box-shadow: var(--raised-shadow);
    padding: 40px 24px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--raised-shadow-lg);
}
.stat-card__accent-orb {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.stat-card:hover .stat-card__accent-orb { opacity: 0.15; transform: scale(1.3); }
.stat-card--red .stat-card__accent-orb { background: #e74c3c; }
.stat-card--blue .stat-card__accent-orb { background: #3498db; }
.stat-card--gold .stat-card__accent-orb { background: #f39c12; }
.stat-card--green .stat-card__accent-orb { background: #27ae60; }

.stat-card__icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
    box-shadow: var(--inset-shadow);
}
.stat-card--red .stat-card__icon-ring { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(231,76,60,0.15); }
.stat-card--blue .stat-card__icon-ring { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(52,152,219,0.15); }
.stat-card--gold .stat-card__icon-ring { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(243,156,18,0.15); }
.stat-card--green .stat-card__icon-ring { box-shadow: var(--inset-shadow), inset 0 0 0 2px rgba(39,174,96,0.15); }

.stat-card--red .stat-num { background: linear-gradient(135deg, #e74c3c, #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card--blue .stat-num { background: linear-gradient(135deg, #2980b9, #3498db); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card--gold .stat-num { background: linear-gradient(135deg, #e67e22, #f39c12); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card--green .stat-num { background: linear-gradient(135deg, #27ae60, #2ecc71); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.stat-card--red::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, #e74c3c, transparent); border-radius: 2px; }
.stat-card--blue::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, #3498db, transparent); border-radius: 2px; }
.stat-card--gold::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, #f39c12, transparent); border-radius: 2px; }
.stat-card--green::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, #27ae60, transparent); border-radius: 2px; }

.stat-num {
    font-family: var(--font-ui);
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    transition: color 0.4s ease;
}

/* ─── NEWS BENTO GRID ─── */
.news-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 24px;
    align-items: start;
}

.news-card {
    background: var(--card-bg);
    border-radius: 32px;
    box-shadow: var(--raised-shadow);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
    cursor: pointer;
}

/* Bento placement — 5 cards, masonry-like */
.news-bento .news-card:nth-child(1) { grid-column: 1 / 3; }
.news-bento .news-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
.news-bento .news-card:nth-child(3) { grid-column: 1; }
.news-bento .news-card:nth-child(4) { grid-column: 2; }
.news-bento .news-card:nth-child(5) { grid-column: 1 / 4; }
.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.news-card:hover {
    box-shadow: var(--raised-shadow-lg);
}

.news-card--featured {
    padding: 28px;
}
.news-featured-inner {
    display: flex;
    gap: 28px;
    align-items: stretch;
}
.news-featured-img {
    flex: 0 0 42%;
    min-height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--inset-shadow);
}
.news-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .news-featured-inner {
        flex-direction: column;
    }
    .news-featured-img {
        flex: none;
        min-height: 160px;
        height: 160px;
    }
}
.news-card--wide { }
.news-card--tall { }

.news-card__accent {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.news-card:hover .news-card__accent { opacity: 0.14; }

.news-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 12px;
}
.news-tag--red { background: rgba(231,76,60,0.1); color: #e74c3c; }
.news-tag--blue { background: rgba(52,152,219,0.1); color: #3498db; }
.news-tag--gold { background: rgba(243,156,18,0.1); color: #f39c12; }
.news-tag--green { background: rgba(39,174,96,0.1); color: #27ae60; }
.news-tag--purple { background: rgba(142,68,173,0.1); color: #8e44ad; }

.news-tag__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.news-card__title {
    font-family: var(--font-ui);
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}
.news-card--featured .news-card__title {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 10px;
}

.news-card__excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}
.news-card--featured .news-card__excerpt {
    font-size: 14px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--shadow-dark);
}
.news-card--featured .news-card__meta {
    margin-top: 24px;
    padding-top: 20px;
}

.news-card__date {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.news-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    box-shadow: var(--raised-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.news-card:hover .news-card__arrow {
    box-shadow: var(--inset-shadow);
    color: var(--text-primary);
}

.news-card__img {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    background: var(--card-bg);
    box-shadow: var(--inset-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 16px;
    transition: background 0.4s ease;
    overflow: hidden;
}
.news-card--featured .news-card__img {
    height: 180px;
    border-radius: 20px;
    font-size: 64px;
    margin-bottom: 20px;
}

.news-stat-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.news-stat-chip {
    flex: 1;
    background: var(--card-bg);
    box-shadow: var(--inset-shadow);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
    transition: background 0.4s ease;
}
.news-stat-chip__num {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 900;
    color: var(--text-primary);
    transition: color 0.4s ease;
}
.news-stat-chip__label {
    font-family: var(--font-ui);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    transition: color 0.4s ease;
}

/* ─── CONTACT FORM ─── */
.input-soft {
    width: 100%;
    background: var(--card-bg);
    border: none;
    border-radius: 16px;
    box-shadow: var(--inset-shadow);
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    resize: none;
}
.input-soft::placeholder { color: var(--text-muted); }
.input-soft:focus {
    box-shadow: var(--inset-shadow), 0 0 0 2px rgba(231,76,60,0.3);
}

.submit-btn {
    background: var(--card-bg);
    border: none;
    border-radius: 50px;
    box-shadow: var(--btn-shadow);
    padding: 18px 48px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--raised-shadow-lg);
}
.submit-btn:active {
    box-shadow: var(--btn-shadow-active);
    transform: scale(0.97);
}

/* ─── TESTIMONIALS ─── */

/* Floating photo mosaic — arc layout */
.testimonial-mosaic {
    position: relative;
    width: 100%;
    height: 320px;
    margin-bottom: 10px;
    z-index: 1;
}
.testi-photo {
    position: absolute;
    width: 110px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-alt);
}
.testi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3D Coverflow Carousel */
.coverflow-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.coverflow-stage {
    flex: 1;
    perspective: 1200px;
    overflow: hidden;
    padding: 40px 0 60px;
}
.coverflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 380px;
    transform-style: preserve-3d;
}
.coverflow-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    box-shadow: var(--raised-shadow);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    z-index: 10;
}
.coverflow-arrow:hover {
    box-shadow: var(--raised-shadow-lg);
    transform: scale(1.08);
}

.testi-card {
    padding: 32px 28px;
    position: absolute;
    width: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    cursor: pointer;
}

.testi-card__accent-orb {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.testi-card:hover .testi-card__accent-orb { opacity: 0.14; transform: scale(1.2); }
.testi-card--red .testi-card__accent-orb { background: #e74c3c; }
.testi-card--blue .testi-card__accent-orb { background: #3498db; }
.testi-card--green .testi-card__accent-orb { background: #27ae60; }
.testi-card--purple .testi-card__accent-orb { background: #8e44ad; }
.testi-card--gold .testi-card__accent-orb { background: #f39c12; }

.testi-card__stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
    color: #f39c12;
}

.testi-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}

.testi-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--shadow-light);
}
.testi-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--bg-alt);
}
.testi-card__name {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}
.testi-card__role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Color bottom accents */
.testi-card--red::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,#e74c3c,transparent); }
.testi-card--blue::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,#3498db,transparent); }
.testi-card--green::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,#27ae60,transparent); }
.testi-card--purple::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,#8e44ad,transparent); }
.testi-card--gold::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,#f39c12,transparent); }

/* ─── REVIEW MODAL ─── */
.review-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.review-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--raised-shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.review-modal-backdrop.active .review-modal {
    transform: translateY(0) scale(1);
}

.review-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: var(--bg-alt);
    box-shadow: var(--raised-shadow-sm);
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.review-modal__close:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

.review-form__label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-form__input,
.review-form__textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    border: none;
    background: var(--bg-alt);
    box-shadow: var(--inset-shadow);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: box-shadow 0.25s ease;
    box-sizing: border-box;
}
.review-form__input:focus,
.review-form__textarea:focus {
    box-shadow: var(--inset-shadow), 0 0 0 3px rgba(52, 152, 219, 0.15);
}
.review-form__textarea { resize: vertical; min-height: 100px; }

.review-form__stars {
    display: flex;
    gap: 8px;
    font-size: 24px;
    color: var(--shadow-dark);
    cursor: pointer;
}
.review-form__stars i { transition: color 0.15s ease, transform 0.15s ease; }
.review-form__stars i.active { color: #f39c12; transform: scale(1.15); }
.review-form__stars i:hover { transform: scale(1.2); }

/* Responsive */

/* ─── FOOTER ─── */
.site-footer {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

/* Background images — absolute, cropped from bottom */
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.footer-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: opacity 0.6s ease;
}
.footer-bg__img--night {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
[data-theme="dark"] .footer-bg__img--day { opacity: 0; }
[data-theme="dark"] .footer-bg__img--night { opacity: 1; }

/* Dark scrim over the image so text is readable */
.footer-bg__scrim {
    position: absolute;
    inset: 0;
    transition: background 0.4s ease;
}
[data-theme="light"] .footer-bg__scrim {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.10) 100%);
}
[data-theme="dark"] .footer-bg__scrim {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.70) 0%,
        rgba(0,0,0,0.50) 40%,
        rgba(0,0,0,0.20) 100%);
}

/* Top fade — blends page bg into the image seamlessly */
.footer-bg__top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
    transition: background 0.4s ease;
}

/* Footer content overlaid on the image */
.footer-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 56px 0;
    display: flex;
    flex-direction: column;
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 0.8fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Bottom copyright bar — pinned to footer bottom */
.footer-bottom-bar {
    margin-top: auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* Override text colors — always light on the dark scrim */
.site-footer .footer-content .heading-card,
.site-footer .footer-content .text-card,
.site-footer .footer-content .footer-link,
.site-footer .footer-content .news-card__date {
    color: rgba(255,255,255,0.7);
}
.site-footer .footer-content .heading-card {
    color: rgba(255,255,255,0.95);
}
.site-footer .footer-content .footer-link:hover {
    color: #fff;
}
.site-footer .footer-logo {
    margin-bottom: 20px;
    display: block;
}
.site-footer .footer-logo img {
    height: 48px;
    width: auto;
    max-width: none;
}

/* Social icons — frosted on image bg */
.site-footer .footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
}
.site-footer .footer-social-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Divider — light on dark bg */
.site-footer .footer-divider {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-content { padding: 80px 36px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 40px !important; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .site-footer { min-height: auto; overflow: visible; }
    .footer-bg { position: absolute; inset: 0; z-index: 0; }
    .footer-content { position: relative; z-index: 2; padding: 60px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bg__top-fade { height: 80px; }
    .footer-bottom-bar { justify-content: center; text-align: center; padding: 16px 0; }
}
@media (max-width: 480px) {
    .footer-content { padding: 48px 16px 20px; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .footer-bg__top-fade { height: 60px; }
    .footer-bottom-bar { flex-direction: column; gap: 8px; }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
    margin: 0 10%;
    opacity: 0.5;
}

.footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: var(--accent-red);
}
.footer-book-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    padding: 12px 28px;
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}
.footer-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.45);
    background: #c0392b;
}

/* ─── SHARED INLINE HELPERS ─── */
.label-tiny {
    display: block;
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.4s ease;
}
.heading-card {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
    transition: color 0.4s ease;
}
.heading-service {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-primary);
    transition: color 0.4s ease;
}
.text-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}
.text-card {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}
.explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-red);
}
.meta-label {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}
.meta-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.4s ease;
}
.meta-value--bold {
    font-weight: 600;
}
.stat-label {
    margin-top: 12px;
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.4s ease;
}
.section-pad {
    padding-left: 48px;
    padding-right: 48px;
}
.page-header-pad {
    padding-top: 160px;
    padding-bottom: 80px;
}
.vm-pill__label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ─── 3D SOFT UI ENHANCEMENTS ─── */
.services-grid,
.stats-grid,
.news-bento {
    perspective: 1200px;
}

.soft-raised-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(200%) rotate(25deg); }
}

.service-card::after,
.stat-card::after {
    z-index: 1;
}

.service-card:hover::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.news-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: rotate(25deg) translateX(-100%);
    pointer-events: none;
    transition: none;
}
.news-card:hover::after {
    animation: shimmer 0.8s ease forwards;
}

.submit-btn {
    position: relative;
    overflow: hidden;
}
.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-wrap {
    position: relative;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* ─── ANIMATIONS ─── */
.animate-ascend, .animate-skate {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.main-stack > section,
.main-stack > footer {
    perspective: 1200px;
}

.soft-raised, .soft-raised-lg, .service-card, .stat-card, .news-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform-origin: center bottom;
}

/* ─── BUSINESS DOMAINS COVERFLOW ─── */
.domains-coverflow {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 50px 0 30px;
    perspective: 1600px;
    -webkit-perspective: 1600px;
}

.domains-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 440px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* ── Card shell (positioning + coverflow transform) ── */
.domain-card {
    position: absolute;
    width: 280px;
    height: 380px;
    border-radius: 22px;
    cursor: pointer;
    text-decoration: none;
    will-change: transform, opacity;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}
.domain-card::before,
.domain-card::after { display: none; }

/* ── Flip inner wrapper ── */
.domain-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    border-radius: 22px;
}
.domain-card:hover .domain-card__inner {
    transform: rotateY(180deg);
}

/* ── Front face (image) ── */
.domain-card__front {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 5px 20px rgba(0,0,0,0.1);
}
.domain-card__front::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 35%, rgba(0,0,0,0.12) 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    pointer-events: none;
}

.domain-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.domain-card__front-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ── Back face (domain info) ── */
.domain-card__back {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 28px;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 5px 20px rgba(0,0,0,0.1);
}
.domain-card__back::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.domain-card__back--red   { background: linear-gradient(145deg, #e74c3c, #c0392b); }
.domain-card__back--blue  { background: linear-gradient(145deg, #3498db, #2980b9); }
.domain-card__back--green { background: linear-gradient(145deg, #27ae60, #1e8449); }
.domain-card__back--purple{ background: linear-gradient(145deg, #8e44ad, #6c3483); }
.domain-card__back--gold  { background: linear-gradient(145deg, #f39c12, #d68910); }

.domain-card__back-icon {
    font-size: 42px;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.domain-card__back-title {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.domain-card__back-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 200px;
}

.domain-card__back-badge {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 7px 18px;
    border-radius: 50px;
    margin-top: 6px;
}
.domain-card__back-badge--soon {
    background: rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.15);
}

/* Reflection / ground shadow */
.domains-coverflow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Labels ── */
.domains-labels {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 44px;
    flex-wrap: wrap;
    position: relative;
}

.domain-label {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.4;
    transform: translateY(0);
}
.domain-label:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.domain-label--active {
    opacity: 1;
    transform: translateY(-3px);
}

.domain-label__num {
    display: block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}
.domain-label:not(.domain-label--active) .domain-label__num {
    color: var(--text-muted);
}

.domain-label__text {
    display: block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    transition: color 0.4s ease;
}
.domain-label:not(.domain-label--active) .domain-label__text {
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-content { flex-direction: column; justify-content: center; text-align: center; padding: 100px 32px 80px; }
    .hero-left { max-width: 100%; }
    .hero-cards { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
    .hero-cards .hero-card { flex: 1; min-width: 200px; }
    .hero-cards__row { flex-direction: column; }
    .hero-cards__row .hero-card { flex: auto; }
    .hero-actions { justify-content: center; }

    .main-stack { border-top-left-radius: 40px; border-top-right-radius: 40px; }
    .story-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .vm-grid { grid-template-columns: 1fr !important; }
    .vm-grid .soft-raised-lg { padding: 48px 36px !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .services-header { flex-direction: column !important; align-items: flex-start !important; gap: 24px !important; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }

    .domains-coverflow { padding: 36px 0 20px; }
    .domains-track { height: 370px; }
    .domain-card { width: 240px; height: 320px; border-radius: 18px; }
    .domain-card__inner { border-radius: 18px; }
    .domain-card__front, .domain-card__back { border-radius: 18px; }
    .domain-card__front::after { border-radius: 18px; }
    .domain-card__back { padding: 28px 22px; }
    .domain-card__back-icon { font-size: 36px; }
    .domain-card__back-title { font-size: 17px; }
    .domain-card__back-desc { font-size: 12px; }
    .domains-labels { gap: 28px; }
    .domain-label__num { font-size: 12px; }
    .domain-label__text { font-size: 11px; }

    .news-bento { grid-template-columns: repeat(2, 1fr); }
    .news-bento .news-card:nth-child(1) { grid-column: 1 / 3; }
    .news-bento .news-card:nth-child(2) { grid-column: 1; grid-row: auto; }
    .news-bento .news-card:nth-child(3) { grid-column: 2; grid-row: auto; }
    .news-bento .news-card:nth-child(4) { grid-column: 1; grid-row: auto; }
    .news-bento .news-card:nth-child(5) { grid-column: 1 / 3; }

    .contact-form-wrap { padding: 48px 36px !important; }

    .testimonial-mosaic { height: 260px; }
    .testi-photo { width: 90px; height: 115px; border-radius: 12px; }
    .testi-card { width: 280px; }
    .coverflow-track { height: 360px; }
    .coverflow-arrow { width: 42px; height: 42px; font-size: 14px; }
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .navbar { padding: 0 24px; }
}

@media (max-width: 768px) {
    .hero-cards { display: none; }
    .hero-bottom-bar { padding: 16px 20px; flex-direction: column; gap: 6px; text-align: center; }
    .hero-bottom-bar__text { font-size: 9px; letter-spacing: 0.1em; }
    .hero-slide-dots { bottom: 50px; }
    .sidebar { width: 100%; }
    .page-header-pad { padding-top: 120px !important; padding-bottom: 60px !important; }

    .main-stack { border-top-left-radius: 24px; border-top-right-radius: 24px; }
    .section-pad { padding-left: 20px !important; padding-right: 20px !important; }
    .section-pad-y { padding-top: 72px !important; padding-bottom: 72px !important; }

    .stats-grid { gap: 16px !important; }
    .stat-card { padding: 28px 16px !important; }
    .stat-num { font-size: 36px !important; }

    .contact-form-grid { grid-template-columns: 1fr !important; }
    .contact-form-wrap { padding: 36px 24px !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important; }

    .hero-content { padding: 100px 20px 80px !important; }
    .section-title, .section-title-alt { font-size: clamp(28px, 8vw, 48px) !important; }
    .story-number { font-size: 48px !important; }
    .story-card { padding: 24px 20px !important; gap: 16px !important; }
    .story-card .heading-card { font-size: 14px !important; }
    .story-card .text-card { font-size: 13px !important; }

    .vm-grid .soft-raised-lg { padding: 36px 24px !important; }
    .vm-grid { gap: 28px !important; }
    .vm-pill { padding: 6px 14px 6px 6px; margin-bottom: 14px; }
    .vm-pill__dot { width: 24px; height: 24px; font-size: 11px; }
    .vm-pill__label { font-size: 9px !important; }
    .vm-grid .soft-inset { padding: 12px 16px !important; }
    .vm-grid .section-title { font-size: clamp(22px, 5vw, 36px) !important; margin-bottom: 20px !important; }
    .vm-grid .text-body { font-size: 14px !important; }

    .news-bento { grid-template-columns: 1fr; }
    .news-bento .news-card { grid-column: 1 !important; grid-row: auto !important; }
    .news-card { padding: 28px 24px; border-radius: 24px; }
    .news-card--featured { padding: 32px 24px; }
    .news-card__img { height: 140px; border-radius: 16px; }
    .news-card--featured .news-card__img { height: 180px; border-radius: 20px; }

    .contact-grid { gap: 36px !important; }
    .contact-form-wrap { padding: 36px 24px !important; }
    .contact-info-card { padding: 18px 20px !important; gap: 14px !important; }
    .contact-info-card .soft-inset { width: 40px !important; height: 40px !important; font-size: 16px !important; border-radius: 12px !important; }

    .testimonial-mosaic { height: 200px; margin-bottom: 0; }
    .testi-photo { width: 70px; height: 90px; border-radius: 10px; }
    .section-eyebrow { font-size: 9px; letter-spacing: 0.3em; }
    .text-body { font-size: 15px; }

    .domains-coverflow { padding: 28px 0 16px; }
    .domains-track { height: 310px; }
    .domain-card { width: 200px; height: 270px; border-radius: 16px; }
    .domain-card__inner { border-radius: 16px; }
    .domain-card__front, .domain-card__back { border-radius: 16px; }
    .domain-card__front::after { border-radius: 16px; }
    .domain-card__back { padding: 24px 18px; gap: 10px; }
    .domain-card__back-icon { font-size: 32px; }
    .domain-card__back-title { font-size: 15px; }
    .domain-card__back-desc { font-size: 11px; max-width: 170px; }
    .domain-card__back-badge { font-size: 8px; padding: 5px 14px; }
    .domains-labels { gap: 20px; margin-top: 28px; }
    .domain-label__num { font-size: 11px; }
    .domain-label__text { font-size: 10px; }
    .domains-coverflow::after { height: 40px; }

    .coverflow-arrow { width: 36px; height: 36px; font-size: 13px; }
    .coverflow-stage { padding: 24px 0 40px; }
    .testi-card { width: 260px; padding: 24px 20px; }
    .coverflow-track { height: 340px; }

    .review-modal { padding: 32px 24px; border-radius: 24px; max-width: 440px; }
    .review-modal__close { width: 34px; height: 34px; font-size: 14px; top: 14px; right: 14px; }
    .review-form__stars { font-size: 20px; gap: 6px; }

    .submit-btn { padding: 16px 36px; font-size: 10px; }
    .input-soft { padding: 14px 18px; font-size: 13px; }

    /* ═══ ZIGZAG PINNED SERVICE CARDS ═══ */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        position: relative;
        padding: 0 12px !important;
        align-items: stretch;
    }

    /* Vertical connecting dashed line */
    .services-grid::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 30px;
        bottom: 30px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            var(--text-muted) 0px,
            var(--text-muted) 6px,
            transparent 6px,
            transparent 14px
        );
        opacity: 0.3;
        z-index: 0;
        transform: translateX(-50%);
    }

    .service-card {
        width: 72% !important;
        max-width: 300px;
        padding: 24px 20px 24px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        box-shadow: var(--raised-shadow) !important;
    }

    /* Zigzag: odd cards left, even cards right */
    .service-card:nth-child(odd) {
        align-self: flex-start;
        margin-left: 4%;
        transform: rotate(-2deg);
    }
    .service-card:nth-child(even) {
        align-self: flex-end;
        margin-right: 4%;
        transform: rotate(2deg);
    }

    /* Overlap: negative margins so cards stack like a map */
    .service-card + .service-card {
        margin-top: -18px;
    }

    /* Show pin dot */
    .service-card__pin {
        display: block;
        position: absolute;
        top: -10px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        z-index: 3;
        box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    }
    .service-card:nth-child(odd) .service-card__pin { right: 24px; }
    .service-card:nth-child(even) .service-card__pin { left: 24px; }

    .service-card--red .service-card__pin { background: linear-gradient(135deg, #e74c3c, #ff6b6b); }
    .service-card--blue .service-card__pin { background: linear-gradient(135deg, #3498db, #5dade2); }
    .service-card--purple .service-card__pin { background: linear-gradient(135deg, #8e44ad, #bb6bd9); }
    .service-card--gold .service-card__pin { background: linear-gradient(135deg, #f39c12, #f7c948); }
    .service-card--green .service-card__pin { background: linear-gradient(135deg, #27ae60, #52d681); }

    /* Pin shine highlight */
    .service-card__pin::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 4px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
    }

    /* Show number badge */
    .service-card__num {
        display: block;
        font-family: var(--font-ui);
        font-size: 28px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
        opacity: 0.18;
    }
    .service-card--red .service-card__num { color: #e74c3c; }
    .service-card--blue .service-card__num { color: #3498db; }
    .service-card--purple .service-card__num { color: #8e44ad; }
    .service-card--gold .service-card__num { color: #f39c12; }
    .service-card--green .service-card__num { color: #27ae60; }

    /* Smaller icon on mobile */
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 22px;
        margin-bottom: 14px;
    }
    .heading-service { font-size: 12px !important; margin-bottom: 10px !important; }
    .service-card .text-card { font-size: 12px !important; line-height: 1.65 !important; margin-bottom: 16px !important; }
    .explore-link { font-size: 9px; }

    /* Subtle tinted backgrounds on mobile cards */
    .service-card--red { background: linear-gradient(135deg, var(--card-bg) 60%, rgba(231,76,60,0.06) 100%) !important; }
    .service-card--blue { background: linear-gradient(135deg, var(--card-bg) 60%, rgba(52,152,219,0.06) 100%) !important; }
    .service-card--purple { background: linear-gradient(135deg, var(--card-bg) 60%, rgba(142,68,173,0.06) 100%) !important; }
    .service-card--gold { background: linear-gradient(135deg, var(--card-bg) 60%, rgba(243,156,18,0.06) 100%) !important; }
    .service-card--green { background: linear-gradient(135deg, var(--card-bg) 60%, rgba(39,174,96,0.06) 100%) !important; }

    /* Hide bottom gradient bars on mobile (pin replaces them) */
    .service-card--red::after,
    .service-card--blue::after,
    .service-card--purple::after,
    .service-card--gold::after,
    .service-card--green::after {
        display: none;
    }

    /* Connection dots on the center line */
    .service-card::after {
        content: '' !important;
        display: block !important;
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--card-bg);
        box-shadow: var(--raised-shadow-sm);
        border: 2px solid var(--text-muted);
        opacity: 0.4;
        z-index: 2;
        top: 50%;
        transform: translateY(-50%);
    }
    .service-card:nth-child(odd)::after {
        right: -30px;
    }
    .service-card:nth-child(even)::after {
        left: -30px;
    }
}

@media (max-width: 480px) {
    .main-stack { border-top-left-radius: 16px; border-top-right-radius: 16px; }
    .section-pad { padding-left: 16px !important; padding-right: 16px !important; }
    .section-pad-y { padding-top: 56px !important; padding-bottom: 56px !important; }

    .hero-content { padding: 80px 16px 60px !important; }
    .hero-title { font-size: clamp(32px, 10vw, 56px) !important; }
    .hero-subtitle { font-size: clamp(16px, 4vw, 22px) !important; margin-bottom: 28px !important; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; box-sizing: border-box; padding: 16px 20px !important; }
    .hero-bottom-bar { padding: 14px 16px; }
    .hero-bottom-bar__text { font-size: 8px; letter-spacing: 0.08em; }

    .stat-num { font-size: 28px !important; }
    .stats-grid { grid-template-columns: 1fr 1fr !important; }
    .navbar { padding: 0 16px !important; }
    .nav-cta { display: none; }
    .nav-logo img { height: 44px !important; }

    .soft-raised-lg { border-radius: 24px !important; }
    .soft-raised { border-radius: 16px !important; }
    .news-card { border-radius: 20px; }
    .page-header-pad { padding-top: 100px !important; padding-bottom: 48px !important; }

    /* Zigzag cards slightly wider on small phones */
    .service-card {
        width: 78% !important;
        border-radius: 18px !important;
        padding: 20px 16px !important;
    }
    .service-card:nth-child(odd) { margin-left: 2%; transform: rotate(-1.5deg); }
    .service-card:nth-child(even) { margin-right: 2%; transform: rotate(1.5deg); }
    .service-card + .service-card { margin-top: -14px; }
    .service-card__num { font-size: 24px; }

    /* Adjust connection dots for narrower gap */
    .service-card:nth-child(odd)::after { right: -22px; }
    .service-card:nth-child(even)::after { left: -22px; }

    .story-number { font-size: 40px !important; }
    .story-card { padding: 20px 16px !important; gap: 12px !important; border-radius: 16px !important; }
    .story-card .text-card { font-size: 12px !important; line-height: 1.5 !important; }
    .story-card__accent-orb { width: 80px !important; height: 80px !important; }

    /* VM cards phone */
    .vm-grid .soft-raised-lg { padding: 24px 18px !important; border-radius: 20px !important; }
    .vm-grid { gap: 20px !important; }
    .vm-grid .section-title { font-size: clamp(20px, 6vw, 28px) !important; margin-bottom: 16px !important; }
    .vm-grid .text-body { font-size: 13px !important; line-height: 1.65 !important; }
    .vm-grid .soft-inset { padding: 10px 12px !important; }
    .vm-grid .meta-label { font-size: 8px !important; }
    .vm-grid .meta-value { font-size: 12px !important; }
    .vm-pill { padding: 5px 12px 5px 5px; gap: 6px; margin-bottom: 12px; }
    .vm-pill__dot { width: 22px; height: 22px; font-size: 10px; }

    /* Stats phone */
    .stat-card { padding: 24px 12px !important; border-radius: 20px !important; }
    .stat-card__icon-ring { width: 40px; height: 40px; font-size: 16px; margin-bottom: 12px; }
    .stat-label { font-size: 8px !important; letter-spacing: 0.2em !important; margin-top: 8px !important; }

    /* Contact phone */
    .contact-form-wrap { padding: 24px 16px !important; border-radius: 20px !important; }
    .contact-form-wrap .label-tiny { font-size: 10px !important; margin-bottom: 24px !important; }
    .contact-info-card { padding: 14px 16px !important; gap: 12px !important; border-radius: 16px !important; }
    .contact-info-card .soft-inset { width: 36px !important; height: 36px !important; font-size: 14px !important; border-radius: 10px !important; }
    .contact-info-card .meta-label { font-size: 8px !important; }
    .contact-info-card .meta-value { font-size: 12px !important; }
    .input-soft { padding: 12px 14px; font-size: 13px; border-radius: 12px; }
    .submit-btn { padding: 14px 28px; font-size: 10px; width: 100%; }

    /* Testimonials phone */
    .testimonial-mosaic { height: 120px; }
    .testi-photo { width: 44px; height: 56px; border-radius: 8px; }
    .domains-coverflow { padding: 20px 0 10px; }
    .domains-track { height: 260px; }
    .domain-card { width: 165px; height: 220px; border-radius: 14px; }
    .domain-card__inner { border-radius: 14px; }
    .domain-card__front, .domain-card__back { border-radius: 14px; }
    .domain-card__front::after { border-radius: 14px; }
    .domain-card__back { padding: 18px 14px; gap: 8px; }
    .domain-card__back-icon { font-size: 26px; }
    .domain-card__back-title { font-size: 13px; }
    .domain-card__back-desc { font-size: 10px; max-width: 140px; line-height: 1.5; }
    .domain-card__back-badge { font-size: 7px; padding: 4px 12px; }
    .domains-labels { gap: 12px; margin-top: 18px; }
    .domain-label__num { font-size: 10px; }
    .domain-label__text { font-size: 8px; }
    .domains-coverflow::after { display: none; }

    .testi-card { width: 220px; padding: 18px 14px; gap: 14px; }
    .testi-card__text { font-size: 12px; line-height: 1.6; }
    .testi-card__avatar { width: 36px; height: 36px; border-radius: 10px; }
    .testi-card__name { font-size: 12px; }
    .testi-card__role { font-size: 10px; }
    .testi-card__stars { font-size: 12px; gap: 2px; }
    .testi-card__author { gap: 10px; padding-top: 12px; }
    .coverflow-track { height: 290px; }
    .coverflow-arrow { width: 32px; height: 32px; font-size: 12px; }
    .coverflow-stage { padding: 16px 0 32px; }
    .coverflow-wrap { gap: 8px; }

    /* Review modal phone */
    .review-modal { padding: 24px 18px; border-radius: 20px; max-width: 100%; }
    .review-modal__close { width: 30px; height: 30px; font-size: 12px; top: 12px; right: 12px; border-radius: 10px; }
    .review-modal .heading-card { font-size: 18px !important; }
    .review-modal .text-card { font-size: 13px !important; margin-bottom: 20px !important; }
    .review-form__label { font-size: 11px; }
    .review-form__input, .review-form__textarea { padding: 12px 14px; font-size: 13px; border-radius: 12px; }
    .review-form__stars { font-size: 20px; }

    /* Section text phone */
    .section-eyebrow { font-size: 8px; letter-spacing: 0.25em; margin-bottom: 10px; }
    .text-body { font-size: 14px !important; line-height: 1.7 !important; }
    .heading-card { font-size: 12px !important; }
    .text-card { font-size: 13px !important; }

    /* News phone */
    .news-card { padding: 22px 18px; border-radius: 20px; }
    .news-card--featured { padding: 24px 18px; }
    .news-card__img { height: 120px; border-radius: 14px; margin-bottom: 16px; }
    .news-card--featured .news-card__img { height: 150px; border-radius: 16px; }
    .news-card__title { font-size: 15px !important; }
    .news-card__arrow { width: 32px; height: 32px; font-size: 12px; }
    .news-stat-chip { padding: 10px 12px; border-radius: 12px; }
    .news-stat-chip__num { font-size: 15px; }

    /* Footer phone */
    .footer-logo { margin-bottom: 14px !important; }
    .footer-logo img { height: 38px !important; }
    .footer-social-icon { width: 34px !important; height: 34px !important; font-size: 14px !important; border-radius: 10px !important; }
    .footer-bottom-bar { font-size: 11px; }

    /* Hero eyebrow phone */
    .hero-eyebrow { padding: 6px 14px; margin-bottom: 20px; }
    .hero-eyebrow span { font-size: 8px !important; letter-spacing: 0.2em !important; }
    .hero-eyebrow__dot { width: 6px; height: 6px; }
}

@media (max-width: 360px) {
    .hero-content { padding: 72px 12px 48px !important; }
    .hero-title { font-size: clamp(28px, 10vw, 44px) !important; }
    .hero-subtitle { font-size: 15px !important; }
    .hero-btn-primary, .hero-btn-secondary { font-size: 11px !important; padding: 14px 20px !important; }

    .section-pad { padding-left: 12px !important; padding-right: 12px !important; }
    .section-pad-y { padding-top: 44px !important; padding-bottom: 44px !important; }
    .section-title, .section-title-alt { font-size: clamp(22px, 8vw, 36px) !important; }

    .stat-num { font-size: 24px !important; }
    .stat-card { padding: 20px 10px !important; }
    .stats-grid { gap: 10px !important; }

    .vm-grid .soft-raised-lg { padding: 20px 14px !important; }
    .vm-grid .section-title { font-size: clamp(18px, 6vw, 24px) !important; }

    .service-card { width: 84% !important; padding: 18px 14px !important; }

    .news-card { padding: 18px 14px; }
    .news-card__img { height: 100px; margin-bottom: 12px; }

    .contact-form-wrap { padding: 20px 12px !important; }
    .contact-info-card { padding: 12px 12px !important; }

    .domains-coverflow { padding: 14px 0 8px; }
    .domains-track { height: 220px; }
    .domain-card { width: 140px; height: 185px; border-radius: 12px; }
    .domain-card__inner { border-radius: 12px; }
    .domain-card__front, .domain-card__back { border-radius: 12px; }
    .domain-card__front::after { border-radius: 12px; }
    .domain-card__back { padding: 14px 10px; gap: 6px; }
    .domain-card__back-icon { font-size: 22px; }
    .domain-card__back-title { font-size: 11px; }
    .domain-card__back-desc { font-size: 9px; max-width: 120px; line-height: 1.4; }
    .domain-card__back-badge { font-size: 6px; padding: 3px 10px; }
    .domains-labels { gap: 8px; margin-top: 14px; }
    .domain-label__num { font-size: 9px; margin-bottom: 2px; }
    .domain-label__text { font-size: 7px; }

    .testimonial-mosaic { height: 90px; }
    .testi-photo { width: 36px; height: 46px; border-radius: 6px; }
    .testi-card { width: 200px; padding: 14px 12px; gap: 10px; }
    .testi-card__text { font-size: 11px; }
    .coverflow-track { height: 260px; }

    .review-modal { padding: 20px 14px; border-radius: 16px; }

    .footer-content { padding: 36px 12px 16px !important; }
    .footer-grid { gap: 20px !important; }
    .footer-bottom-bar { font-size: 10px; padding: 12px 0; }
}
