/* ==========================================================================
   Logic Racks — British Precision Design System
   Single accent. Maximum whitespace. Editorial typography.
   Premium feel: the website itself is the portfolio.
   ========================================================================== */

:root {
    --white:    #FFFFFF;
    --dark:     #09090B;
    --dark-2:   #111113;
    --accent:   #0055FF;
    --accent-h: #0044CC;
    --accent-10: rgba(0, 85, 255, 0.08);
    --accent-20: rgba(0, 85, 255, 0.15);
    --text:     #111111;
    --body:     #4B5563;
    --muted:    #9CA3AF;
    --light:    #E5E5E5;
    --border:   #E5E7EB;
    --smoke:    #F9FAFB;
    --success:  #059669;
    --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono:     'JetBrains Mono', 'Consolas', monospace;
    --header-h: 64px;
    --wrap:     1140px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* ── Layout ── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); }
.section--smoke { background: var(--smoke); }

/* ── Section Header ── */
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__kicker {
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 12px;
}
.section__kicker--light { color: var(--accent); }
.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px;
}
.section__title--light { color: var(--white); }
.section__intro { font-size: 1.0625rem; color: var(--body); line-height: 1.7; max-width: 560px; }
.section__intro--light { color: var(--muted); }

/* Section head with visual on right */
.section__head-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; margin-bottom: 40px;
}
.section__head-row .section__head { margin-bottom: 0; flex: 1; }
.section__head-visual { flex-shrink: 0; width: 300px; height: 280px; position: relative; }

/* ── Orbit visual (Capabilities) ── */
.sh-orbit {
    width: 260px; height: 260px; position: relative; margin: 0 auto;
}
.sh-orbit__ring {
    position: absolute; inset: 20px; border: 1.5px dashed var(--border);
    border-radius: 50%;
    animation: sh-spin 30s linear infinite;
}
.sh-orbit__center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 0.875rem; font-weight: 800;
    box-shadow: 0 4px 20px rgba(0,85,255,0.25);
}
.sh-orbit__dot {
    position: absolute; width: 44px; height: 44px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 0.5625rem; font-weight: 700; color: var(--body);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    animation: sh-spin-reverse 30s linear infinite;
}
.sh-orbit__dot--1 { top: 0; left: 50%; transform: translateX(-50%); }
.sh-orbit__dot--2 { top: 20%; right: 0; }
.sh-orbit__dot--3 { bottom: 20%; right: 0; }
.sh-orbit__dot--4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.sh-orbit__dot--5 { bottom: 20%; left: 0; }
.sh-orbit__dot--6 { top: 20%; left: 0; }

@keyframes sh-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes sh-spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* ── Grid mosaic (Industries) ── */
.sh-grid-mosaic {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 8px; width: 260px; margin: 0 auto;
}
.sh-tile {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; padding: 14px 10px; text-align: center;
    font-size: 0.6875rem; font-weight: 600; color: var(--body);
    transition: all 250ms ease;
}
.sh-tile:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,85,255,0.06); }
.sh-tile--lg {
    grid-column: 1 / -1; background: var(--dark); color: var(--white);
    border-color: transparent; padding: 20px; font-size: 0.75rem;
}
.sh-tile--lg span {
    display: block; font-size: 2rem; font-weight: 900; color: var(--accent);
    letter-spacing: -0.04em; line-height: 1;
}
.sh-tile--accent { background: rgba(0,85,255,0.06); border-color: rgba(0,85,255,0.15); color: var(--accent); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 0.9375rem; border-radius: 8px;
    padding: 12px 24px; transition: all 200ms ease; cursor: pointer;
}
.btn--fill { background: var(--accent); color: var(--white); }
.btn--fill:hover { background: var(--accent-h); box-shadow: 0 4px 20px rgba(0,85,255,0.3); transform: translateY(-1px); }
.btn--text { background: none; color: var(--body); padding: 12px 4px; }
.btn--text:hover { color: var(--text); }
.btn--outline { background: none; color: var(--accent); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--accent); background: var(--accent-10); }
.btn--s { font-size: 0.8125rem; padding: 8px 16px; border-radius: 6px; }
.btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 200ms ease, background 200ms ease;
}
.header--scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); background: rgba(255,255,255,0.97); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; z-index: 101; }
.logo__img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
    font-size: 0.875rem; font-weight: 500; color: var(--body);
    transition: color 150ms ease; position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__link--cta {
    background: var(--accent); color: var(--white) !important;
    padding: 8px 18px; border-radius: 8px; font-weight: 600;
}
.nav__link--cta:hover { background: var(--accent-h); }

.burger { display: none; flex-direction: column; gap: 5px; z-index: 101; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 250ms ease; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   HERO — Premium, unique, not generic
   ========================================================================== */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 60px) 0 0;
    overflow: hidden;
    background: var(--white);
}

/* Subtle animated background */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__line {
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
    opacity: 0.5;
}
.hero__line--1 { left: 25%; }
.hero__line--2 { left: 50%; }
.hero__line--3 { left: 75%; }

.hero__orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.07;
}
.hero__orb--1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -100px;
    animation: orb-drift 20s ease-in-out infinite;
}
.hero__orb--2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: -150px; left: -50px;
    animation: orb-drift 25s ease-in-out infinite reverse;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(15px, 15px); }
}

.hero__wrap {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--accent); margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.hero__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

.hero__h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--text); margin-bottom: 28px;
}
.hero__h1-em {
    color: var(--accent);
    position: relative;
}

.hero__p {
    font-size: 1.125rem; color: var(--body); line-height: 1.8;
    max-width: 560px; margin-bottom: 40px;
}

.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero showcase — floating UI elements */
.hero__showcase {
    position: relative;
    height: 480px;
    perspective: 1200px;
}

/* ── Browser mockup ── */
.hm-browser {
    position: absolute; top: 0; left: 0;
    width: 380px; background: #0c1018;
    border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.04);
    transform: rotateY(-6deg) rotateX(3deg);
    animation: hero-float 6s ease-in-out infinite;
    z-index: 3;
}
.hm-browser__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px; background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hm-dot { width: 7px; height: 7px; border-radius: 50%; }
.hm-dot--r { background: #FF5F57; }
.hm-dot--y { background: #FEBC2E; }
.hm-dot--g { background: #28C840; }
.hm-browser__url {
    font-size: 0.5625rem; color: rgba(255,255,255,0.3);
    font-family: var(--mono); margin-left: 6px;
    background: rgba(255,255,255,0.04); padding: 2px 8px;
    border-radius: 4px; flex: 1;
}
.hm-browser__body { display: flex; min-height: 220px; }

/* Dashboard sidebar */
.hm-dash-sidebar {
    width: 44px; background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.04);
    padding: 10px 6px; display: flex; flex-direction: column; gap: 10px;
}
.hm-dash-logo { width: 20px; height: 20px; border-radius: 6px; background: var(--accent); opacity: 0.5; margin: 0 auto 4px; }
.hm-dash-nav { display: flex; flex-direction: column; gap: 5px; }
.hm-dash-nav span { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06); }
.hm-dash-nav span.active { background: var(--accent); opacity: 0.5; }

/* Dashboard main */
.hm-dash-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.hm-dash-header { display: flex; justify-content: space-between; align-items: center; }
.hm-dash-title { height: 6px; width: 80px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.hm-dash-btn { width: 40px; height: 14px; background: var(--accent); border-radius: 4px; opacity: 0.7; }

/* KPI cards */
.hm-dash-cards { display: flex; gap: 6px; }
.hm-kpi {
    flex: 1; padding: 8px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 6px;
}
.hm-kpi__val { font-size: 0.6875rem; font-weight: 800; color: #fff; font-family: var(--mono); margin-bottom: 4px; }
.hm-kpi__bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.hm-kpi__bar div { height: 100%; background: rgba(255,255,255,0.2); border-radius: 2px; }
.hm-kpi--accent { border-color: rgba(0,85,255,0.15); }
.hm-kpi--accent .hm-kpi__val { color: var(--accent); }
.hm-kpi--accent .hm-kpi__bar div { background: var(--accent); opacity: 0.5; }

/* Chart */
.hm-dash-chart { padding: 2px 0; }
.hm-chart-svg { width: 100%; height: 50px; display: block; }

/* Table */
.hm-dash-table { display: flex; flex-direction: column; gap: 3px; }
.hm-table-row { display: flex; gap: 8px; align-items: center; padding: 3px 0; }
.hm-table-row span { height: 4px; flex: 1; background: rgba(255,255,255,0.06); border-radius: 2px; }
.hm-table-row--head span { background: rgba(255,255,255,0.1); }
.hm-badge { width: 8px !important; height: 8px; flex: none !important; border-radius: 50%; }
.hm-badge--green { background: #059669; box-shadow: 0 0 6px rgba(5,150,105,0.4); }
.hm-badge--blue { background: var(--accent); box-shadow: 0 0 6px rgba(0,85,255,0.4); }

/* ── Mobile App ── */
.hm-mobile {
    position: absolute; bottom: 20px; right: 0;
    width: 140px; background: #0c1018;
    border-radius: 20px; border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden; z-index: 4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: hero-float 5s ease-in-out infinite 1s;
}
.hm-mobile__notch { width: 50px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 0 0 6px 6px; margin: 0 auto; }
.hm-mobile__status {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 14px; font-size: 0.5rem; color: rgba(255,255,255,0.4);
    font-family: var(--mono); font-weight: 600;
}
.hm-mobile__signal { width: 12px; height: 6px; border-radius: 1px; background: rgba(255,255,255,0.2); }
.hm-mobile__screen { padding: 0 8px; }
.hm-mobile__nav-top { display: flex; align-items: center; gap: 6px; padding: 6px 0; }
.hm-mobile__back { width: 8px; height: 8px; border-left: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); }
.hm-mobile__page-title { height: 5px; width: 50px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.hm-mobile__card-img {
    height: 60px; border-radius: 8px; margin-bottom: 6px;
    background: linear-gradient(135deg, rgba(0,85,255,0.15), rgba(0,85,255,0.05));
    border: 1px solid rgba(0,85,255,0.1);
}
.hm-mobile__card-body { padding: 0 2px 4px; }
.hm-mobile__line-lg { height: 4px; width: 80%; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 4px; }
.hm-mobile__line-sm { height: 3px; width: 50%; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 6px; }
.hm-mobile__price { font-size: 0.6875rem; font-weight: 800; color: #fff; font-family: var(--mono); }
.hm-mobile__action-btn {
    margin: 6px 0; padding: 6px; text-align: center;
    background: var(--accent); border-radius: 8px;
    font-size: 0.5625rem; font-weight: 700; color: #fff;
}
.hm-mobile__home-bar { width: 40px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 3px; margin: 8px auto; }

/* ── Floating Code ── */
.hm-code {
    position: absolute; bottom: 60px; left: -20px;
    background: #0c1018; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 12px 16px;
    font-family: var(--mono); font-size: 0.625rem;
    line-height: 1.8; color: rgba(255,255,255,0.4); z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    animation: hero-float 7s ease-in-out infinite 0.5s;
}
.hm-c-key { color: #FF79C6; }
.hm-c-fn { color: var(--accent); }
.hm-c-cm { color: #6272A4; }

/* ── Floating notification ── */
.hm-notif {
    position: absolute; top: 10px; right: 20px;
    display: flex; align-items: center; gap: 8px;
    background: #0c1018; border: 1px solid rgba(5,150,105,0.2);
    border-radius: 8px; padding: 8px 14px; z-index: 5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    animation: hero-float 8s ease-in-out infinite 2s;
}
.hm-notif__icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: #059669; color: #fff; font-size: 0.625rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.hm-notif__text strong { display: block; font-size: 0.625rem; color: #fff; font-weight: 600; }
.hm-notif__text span { font-size: 0.5625rem; color: rgba(255,255,255,0.4); }

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotateY(-6deg) rotateX(3deg); }
    50% { transform: translateY(-12px) rotateY(-4deg) rotateX(1deg); }
}

/* ── Metrics strip ── */
.hero__metrics-strip {
    border-top: 1px solid var(--border);
    background: var(--smoke);
    padding: 20px 0;
}
.hero__metrics-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.hm-strip-item {
    font-size: 0.875rem; color: var(--body); font-weight: 500;
    white-space: nowrap;
}
.hm-strip-item strong {
    font-size: 1.125rem; font-weight: 900; color: var(--text);
}
.hm-strip-item span { color: var(--accent); font-weight: 700; }
.hm-strip-item--text { font-size: 0.8125rem; color: var(--muted); }
.hm-strip-divider { width: 1px; height: 20px; background: var(--border); }

/* ==========================================================================
   CAPABILITIES (Services)
   ========================================================================== */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.cap {
    background: var(--white);
    padding: 32px 28px;
    position: relative;
    transition: background 300ms ease;
}
.cap:hover { background: var(--smoke); }

.cap__number {
    font-size: 0.8125rem; font-weight: 700;
    color: var(--accent); font-family: var(--mono);
    margin-bottom: 20px;
}
.cap__title {
    font-size: 1.25rem; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.cap__body {
    font-size: 0.9375rem; color: var(--body);
    line-height: 1.7; margin-bottom: 20px;
}
.cap__detail {
    padding-top: 16px; border-top: 1px solid var(--border);
}
.cap__label {
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted); margin-bottom: 6px; display: block;
}
.cap__detail p {
    font-size: 0.8125rem; color: var(--body); line-height: 1.6;
}

/* ==========================================================================
   TECHNOLOGY
   ========================================================================== */
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 40px; }

.tech-col__heading {
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 16px;
}
.tech-col__list { display: flex; flex-direction: column; gap: 6px; }
.tech-col__list li {
    font-size: 0.875rem; color: var(--light);
    font-family: var(--mono); padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 150ms ease, padding-left 150ms ease;
}
.tech-col__list li:hover { color: var(--white); padding-left: 4px; }

/* ==========================================================================
   CMS & PLATFORMS
   ========================================================================== */
.split--cms { align-items: start; }

.cms-platforms { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.cms-plat {
    padding: 20px 24px; border: 1px solid var(--border);
    border-radius: 10px; background: var(--white);
    transition: border-color 250ms ease;
}
.cms-plat:hover { border-color: var(--accent); }
.cms-plat__name {
    font-size: 0.9375rem; font-weight: 700; color: var(--text);
    margin-bottom: 6px; display: block;
}
.cms-plat__desc { font-size: 0.8125rem; color: var(--body); line-height: 1.6; }

/* CMS proof block (visual) */
.cms-proof {
    background: var(--dark); border-radius: 12px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.cms-proof__header {
    display: flex; gap: 6px; padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cms-proof__dot { width: 10px; height: 10px; border-radius: 50%; }
.cms-proof__dot--r { background: #FF5F57; }
.cms-proof__dot--y { background: #FEBC2E; }
.cms-proof__dot--g { background: #28C840; }
.cms-proof__body { padding: 24px 20px; font-family: var(--mono); font-size: 0.8125rem; line-height: 2; }
.cms-proof__line--indent { padding-left: 20px; }
.cms-proof__tag { color: var(--muted); }
.cms-proof__attr { color: var(--accent); }
.cms-proof__val { color: #34D399; }

.cms-aside-note {
    margin-top: 16px; font-size: 0.8125rem; color: var(--muted);
    font-weight: 500; text-align: center; font-style: italic;
}

/* ==========================================================================
   EMAIL TEMPLATES
   ========================================================================== */
.email-card {
    border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; background: var(--white);
    transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}
.email-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0,85,255,0.06);
    transform: translateY(-2px);
}

.email-card__preview {
    padding: 24px; background: var(--smoke);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: center;
}
.email-card__mock {
    width: 100%; max-width: 200px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 16px; display: flex;
    flex-direction: column; gap: 8px; min-height: 160px;
}

/* Mock email elements */
.em-head { height: 10px; width: 50%; background: var(--accent); border-radius: 3px; opacity: 0.7; }
.em-hero-block { height: 40px; background: linear-gradient(135deg, var(--accent-10), rgba(0,85,255,0.04)); border-radius: 4px; }
.em-line { height: 6px; background: var(--border); border-radius: 3px; }
.em-line--w90 { width: 90%; }
.em-line--w80 { width: 80%; }
.em-line--w70 { width: 70%; }
.em-line--w60 { width: 60%; }
.em-line--w50 { width: 50%; }
.em-btn-block { height: 16px; width: 45%; background: var(--accent); border-radius: 4px; opacity: 0.8; margin-top: 4px; }
.em-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.em-col { height: 36px; background: var(--smoke); border: 1px solid var(--border); border-radius: 4px; }
.em-foot { height: 6px; width: 40%; background: var(--border); border-radius: 3px; margin-top: auto; }

.email-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--text); padding: 20px 24px 0; }
.email-card__body { font-size: 0.9375rem; color: var(--body); line-height: 1.7; padding: 8px 24px 24px; }

.email-note {
    margin-top: 40px; padding: 24px 28px;
    background: var(--smoke); border: 1px solid var(--border);
    border-radius: 10px; text-align: center;
}
.email-note p { font-size: 0.875rem; color: var(--body); line-height: 1.7; }

/* ==========================================================================
   INDUSTRY TABS & PRODUCTS
   ========================================================================== */
.ind-tabs {
    display: flex; gap: 4px; margin-bottom: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    overflow-x: auto;
}
.ind-tab {
    font-size: 0.875rem; font-weight: 600;
    color: var(--body); padding: 10px 20px;
    border-radius: 8px; white-space: nowrap;
    transition: all 200ms ease;
}
.ind-tab:hover { color: var(--text); background: var(--smoke); }
.ind-tab.active {
    background: var(--accent); color: var(--white);
    box-shadow: 0 2px 8px rgba(0,85,255,0.25);
}

.ind-panel { display: none; }
.ind-panel.active { display: block; animation: fadeUp 0.35s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.ind-panel__intro { margin-bottom: 36px; }
.ind-panel__intro h3 {
    font-size: 1.5rem; font-weight: 800;
    color: var(--text); margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.ind-panel__intro p {
    font-size: 1rem; color: var(--body); line-height: 1.7;
    max-width: 640px;
}

/* Grid */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Product Card */
.pcard {
    padding: 28px 24px; border: 1px solid var(--border);
    border-radius: 12px; background: var(--white);
    position: relative;
    transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}
.pcard:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0,85,255,0.06);
    transform: translateY(-2px);
}
.pcard__badge {
    position: absolute; top: 16px; right: 16px;
    font-size: 0.6875rem; font-weight: 700;
    color: var(--white); background: var(--accent);
    padding: 2px 10px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.pcard__title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.pcard__body { font-size: 0.9375rem; color: var(--body); line-height: 1.7; margin-bottom: 24px; }

/* Highlight card (Custom & AI) */
.pcard--highlight {
    background: var(--dark); border-color: rgba(255,255,255,0.1);
}
.pcard--highlight:hover { border-color: var(--accent); box-shadow: 0 8px 30px rgba(0,85,255,0.12); }
.pcard--highlight .pcard__title { color: var(--white); }
.pcard--highlight .pcard__body { color: var(--muted); }

/* ==========================================================================
   VIP WORK SECTION
   ========================================================================== */
.vip-work {
    position: relative;
    padding: 80px 0;
    background: var(--dark);
    overflow: hidden;
}

.vip-work__bg { position: absolute; inset: 0; pointer-events: none; }
.vip-work__grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}
.vip-work__orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.08;
}
.vip-work__orb--1 {
    width: 500px; height: 500px; background: var(--accent);
    top: -100px; right: 10%;
    animation: orb-drift 20s ease-in-out infinite;
}
.vip-work__orb--2 {
    width: 400px; height: 400px; background: #6C5CE7;
    bottom: -80px; left: 5%;
    animation: orb-drift 25s ease-in-out infinite reverse;
}

.vip-work__head { position: relative; z-index: 1; }

.vip-work__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white); margin-bottom: 20px;
}
.vip-work__title-em {
    background: linear-gradient(135deg, var(--accent) 0%, #6C5CE7 50%, #34D399 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured project (full-width hero card) */
.vip-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; overflow: hidden;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
    position: relative; z-index: 1;
    transition: border-color 400ms ease, box-shadow 400ms ease;
}
.vip-featured:hover {
    border-color: rgba(0,85,255,0.3);
    box-shadow: 0 20px 60px rgba(0,85,255,0.1), 0 0 0 1px rgba(0,85,255,0.1);
}

.vip-featured__visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, #0a0f1e 100%);
    position: relative; display: flex;
    align-items: flex-start; justify-content: flex-start;
    padding: 24px; overflow: hidden;
}
.vip-featured__visual::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(0,85,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108,92,231,0.06) 0%, transparent 40%);
}
.vip-featured__visual::after {
    content: ''; position: absolute;
    bottom: 20%; right: 15%; width: 200px; height: 200px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px; transform: rotate(15deg);
}
.vip-featured__label {
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent); background: rgba(0,85,255,0.1);
    border: 1px solid rgba(0,85,255,0.2);
    padding: 4px 12px; border-radius: 100px;
    position: relative; z-index: 1;
}

.vip-featured__content { padding: 32px 28px; }

.vip-featured__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.vip-tag {
    font-size: 0.6875rem; font-weight: 500;
    color: var(--muted); background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px; border-radius: 4px;
    font-family: var(--mono);
}

.vip-featured__title {
    font-size: 1.75rem; font-weight: 800;
    color: var(--white); margin-bottom: 16px;
    letter-spacing: -0.02em; line-height: 1.2;
}
.vip-featured__body {
    font-size: 0.9375rem; color: var(--muted);
    line-height: 1.8; margin-bottom: 28px;
}

.vip-featured__stats { display: flex; gap: 32px; margin-bottom: 24px; }

.vip-stat__fig {
    display: block; font-size: 1.75rem; font-weight: 900;
    color: var(--white); letter-spacing: -0.03em; line-height: 1;
}
.vip-stat__label {
    display: block; font-size: 0.75rem; color: var(--muted);
    margin-top: 4px; font-weight: 500;
}

.card__stack--vip li {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: var(--light);
}

/* ── Mock Screen UI (Retail Dashboard) ── */
.mock-screen {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) perspective(800px) rotateY(-4deg) rotateX(2deg);
    width: 85%; max-width: 420px;
    background: #0f1219; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden; z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 500ms ease;
}
.vip-featured:hover .mock-screen { transform: translate(-50%, -50%) perspective(800px) rotateY(0deg) rotateX(0deg); }

.mock-topbar {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dot-row { display: flex; gap: 4px; margin-right: 8px; }
.mock-dot-row span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-dot-row span:first-child { background: #FF5F57; }
.mock-dot-row span:nth-child(2) { background: #FEBC2E; }
.mock-dot-row span:nth-child(3) { background: #28C840; }
.mock-tab { font-size: 0.5625rem; color: rgba(255,255,255,0.3); font-family: var(--mono); }
.mock-tab.active { color: var(--accent); }

.mock-body { display: flex; min-height: 180px; }
.mock-sidebar { width: 40px; background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.04); padding: 10px 6px; display: flex; flex-direction: column; gap: 6px; }
.mock-nav-item { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.mock-nav-item.active { background: var(--accent); opacity: 0.6; }

.mock-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }

.mock-stats-row { display: flex; gap: 6px; }
.mock-stat-box {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px; padding: 8px; text-align: center;
}
.mock-stat-box--accent { border-color: rgba(0,85,255,0.2); background: rgba(0,85,255,0.06); }
.mock-stat-val { font-size: 0.6875rem; font-weight: 800; color: var(--white); font-family: var(--mono); }
.mock-stat-lbl { height: 3px; width: 60%; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 4px auto 0; }
.mock-stat-box--accent .mock-stat-val { color: var(--accent); }

.mock-chart { display: flex; align-items: flex-end; gap: 4px; height: 60px; padding-top: 4px; }
.mock-bar {
    flex: 1; background: linear-gradient(180deg, var(--accent), rgba(0,85,255,0.2));
    border-radius: 3px 3px 0 0; min-height: 8px;
    animation: mock-bar-grow 1.5s ease-out;
}
@keyframes mock-bar-grow { from { height: 0 !important; } }

.mock-table { display: flex; flex-direction: column; gap: 3px; }
.mock-row { height: 8px; background: rgba(255,255,255,0.04); border-radius: 2px; }
.mock-row--head { background: rgba(255,255,255,0.08); height: 6px; }

/* ── Mock Phone (Delivery App) ── */
.mock-phone {
    position: absolute; bottom: 10px; right: 20px;
    width: 120px; background: #0f1219;
    border-radius: 16px; border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden; z-index: 1;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    transition: transform 400ms ease;
}
.vip-card:hover .mock-phone { transform: translateY(-4px); }
.mock-phone__notch { width: 40px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 0 0 4px 4px; margin: 0 auto; }
.mock-phone__header { padding: 8px 10px 4px; }
.mock-phone__title { height: 5px; width: 50%; background: rgba(255,255,255,0.2); border-radius: 2px; }
.mock-phone__map {
    height: 60px; margin: 4px 6px;
    background: linear-gradient(135deg, #1a2332, #0d1b2a);
    border-radius: 6px; position: relative;
    overflow: hidden;
}
.mock-phone__map::after {
    content: ''; position: absolute;
    width: 8px; height: 8px; background: var(--accent);
    border-radius: 50%; top: 30%; left: 40%;
    box-shadow: 0 0 8px var(--accent);
    animation: mock-pulse 2s ease-in-out infinite;
}
@keyframes mock-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

.mock-phone__card {
    display: flex; gap: 6px; padding: 6px 8px;
    margin: 4px 6px; background: rgba(255,255,255,0.04);
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.06);
}
.mock-phone__avatar { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.mock-phone__lines { flex: 1; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.mock-phone__line { height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.mock-phone__line--short { width: 60%; }
.mock-phone__btn {
    margin: 6px 8px; height: 16px;
    background: #059669; border-radius: 6px;
}
.mock-phone__bottom-bar {
    display: flex; justify-content: space-around; padding: 6px 10px 8px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.mock-phone__bottom-bar span { width: 10px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.1); }
.mock-phone__bottom-bar span.active { background: var(--accent); }

/* ── Mock Portal (Healthcare) ── */
.mock-screen--portal {
    max-width: 320px; width: 80%;
}
.mock-screen--portal .mock-topbar { padding: 6px 10px; }
.mock-portal-body { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mock-patient-row {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
}
.mock-patient-avatar { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.mock-patient-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mock-patient-info div:first-child { height: 4px; width: 70%; background: rgba(255,255,255,0.15); border-radius: 2px; }
.mock-patient-info div:last-child { height: 3px; width: 45%; background: rgba(255,255,255,0.07); border-radius: 2px; }
.mock-patient-badge { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.mock-badge--green { background: #059669; box-shadow: 0 0 6px rgba(5,150,105,0.4); }
.mock-badge--blue { background: var(--accent); box-shadow: 0 0 6px rgba(0,85,255,0.4); }

.vip-card:hover .mock-screen--portal { transform: translate(-50%, -50%) perspective(800px) rotateY(0deg) rotateX(0deg); }

/* Duo cards */
.vip-duo {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; position: relative; z-index: 1;
}

.vip-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: border-color 400ms ease, box-shadow 400ms ease, transform 400ms ease;
}
.vip-card:hover {
    border-color: rgba(0,85,255,0.25);
    box-shadow: 0 16px 48px rgba(0,85,255,0.08);
    transform: translateY(-4px);
}

.vip-card__visual {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 100%);
    display: flex; align-items: flex-end; padding: 20px;
    position: relative; overflow: hidden;
}
.vip-card__visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(0,85,255,0.06) 0%, transparent 50%);
}
.vip-card__type {
    font-size: 0.6875rem; font-weight: 600;
    color: var(--white); background: rgba(255,255,255,0.08);
    padding: 4px 12px; border-radius: 100px;
    backdrop-filter: blur(8px); position: relative; z-index: 1;
}

.vip-card__body { padding: 28px 24px; }
.vip-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.vip-card__title {
    font-size: 1.25rem; font-weight: 800;
    color: var(--white); margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.vip-card__desc {
    font-size: 0.875rem; color: var(--muted);
    line-height: 1.7; margin-bottom: 20px;
}
.vip-card__stats { display: flex; gap: 24px; }

.vip-stat--sm .vip-stat__fig { font-size: 1.375rem; }

/* Bottom CTA */
.vip-work__cta {
    text-align: center; margin-top: 36px;
    position: relative; z-index: 1;
}
.vip-work__cta p {
    font-size: 1.125rem; color: var(--muted);
    margin-bottom: 20px; font-weight: 500;
}

/* VIP responsive — handled in consolidated media queries below */

.card__stack { display: flex; flex-wrap: wrap; gap: 6px; }
.card__stack li {
    font-size: 0.75rem; font-weight: 500; color: var(--muted);
    background: var(--smoke); border: 1px solid var(--border);
    padding: 3px 10px; border-radius: 4px; font-family: var(--mono);
}

/* ==========================================================================
   STEPS (Process)
   ========================================================================== */
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden;
}
.step {
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 300ms ease;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,0.03); }
.step__num {
    font-size: 0.875rem; font-weight: 700; color: var(--accent);
    font-family: var(--mono); margin-bottom: 20px; display: block;
}
.step__title { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step__body { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ==========================================================================
   QUOTES (Testimonials)
   ========================================================================== */
.quote {
    padding: 28px 24px; border: 1px solid var(--border);
    border-radius: 12px; background: var(--white);
    display: flex; flex-direction: column; justify-content: space-between;
    transition: border-color 250ms ease, box-shadow 250ms ease;
}
.quote:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,85,255,0.04); }
.quote__text { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 28px; flex: 1; }
.quote__source { border-top: 1px solid var(--border); padding-top: 16px; }
.quote__source strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); }
.quote__source span { font-size: 0.8125rem; color: var(--muted); }

/* ==========================================================================
   SPLIT (About, Contact)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }

.split__body { font-size: 1rem; color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.split__body--light { color: var(--muted); }

.check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
    font-size: 0.9375rem; color: var(--text); font-weight: 500;
    padding-left: 28px; position: relative;
}
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 6px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--accent-10); border: 2px solid var(--accent);
}
.check-list li::after {
    content: ''; position: absolute; left: 4px; top: 10px;
    width: 8px; height: 4px; border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}

/* About aside — rich right column */
.about__aside { display: flex; flex-direction: column; gap: 16px; }

.about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-stat {
    background: var(--smoke); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px 16px; text-align: center;
    transition: border-color 250ms ease, box-shadow 250ms ease;
}
.about-stat:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,85,255,0.06); }
.about-stat__fig {
    display: block; font-size: 1.75rem; font-weight: 900;
    color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.about-stat__fig span { color: var(--accent); }
.about-stat__label {
    display: block; font-size: 0.6875rem; color: var(--muted);
    margin-top: 6px; font-weight: 500; line-height: 1.3;
}

/* Location Card — redesigned */
.loc-card {
    background: var(--dark); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 20px;
    display: flex; gap: 14px; align-items: flex-start;
}
.loc-card__icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(0,85,255,0.1); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.loc-card__content { flex: 1; }
.loc-card__title { font-size: 0.8125rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.loc-card__address { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.loc-card__link {
    font-size: 0.75rem; font-weight: 600; color: var(--accent);
    display: inline-flex; align-items: center; gap: 4px;
}
.loc-card__link:hover { text-decoration: underline; }

/* Tech badge strip */
.about-tech-strip {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.about-tech-strip span {
    font-size: 0.6875rem; font-weight: 600;
    color: var(--muted); background: var(--smoke);
    border: 1px solid var(--border); padding: 4px 10px;
    border-radius: 6px; font-family: var(--mono);
    transition: all 200ms ease;
}
.about-tech-strip span:hover { border-color: var(--accent); color: var(--accent); }

/* Contact */
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1rem; font-weight: 500; color: var(--light);
    transition: color 150ms ease;
}
.contact-link svg { color: var(--accent); flex-shrink: 0; }
.contact-link:hover { color: var(--white); }

/* ==========================================================================
   FORM
   ========================================================================== */
.form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 36px;
}
.form__field { margin-bottom: 20px; }
.form__field label {
    display: block; font-size: 0.8125rem; font-weight: 500;
    color: var(--light); margin-bottom: 6px;
}
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%; padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; color: var(--white);
    font-size: 0.9375rem; outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--muted); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,85,255,0.12);
}
.form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.form__field select option { background: var(--dark); color: var(--light); }
.form__field textarea { resize: vertical; min-height: 100px; }

/* ==========================================================================
   SISTER COMPANY — CREATIVE (Orange accent)
   ========================================================================== */
.sister {
    position: relative;
    padding: 72px 0;
    background: #FFF7ED;
    overflow: hidden;
    text-align: center;
}

.sister__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Floating decorative shapes */
.sister__shape {
    position: absolute; border-radius: 50%;
}
.sister__shape--1 {
    width: 280px; height: 280px;
    border: 2px solid rgba(249,115,22,0.12);
    top: -60px; right: -40px;
    animation: sister-float 15s ease-in-out infinite;
}
.sister__shape--2 {
    width: 180px; height: 180px;
    background: rgba(249,115,22,0.04);
    bottom: -30px; left: -20px;
    animation: sister-float 20s ease-in-out infinite reverse;
}
.sister__shape--3 {
    width: 100px; height: 100px;
    background: rgba(249,115,22,0.06);
    top: 25%; left: 8%;
    animation: sister-float 12s ease-in-out infinite 3s;
}
.sister__glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

@keyframes sister-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(3deg); }
    50% { transform: translate(-10px, 15px) rotate(-2deg); }
    75% { transform: translate(8px, 8px) rotate(1deg); }
}

.sister__wrap { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.sister__badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #EA580C;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 28px;
}
.sister__badge svg { color: #EA580C; }

.sister__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900; line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text); margin-bottom: 20px;
}
.sister__title-em {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 40%, #DC2626 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sister__body {
    font-size: 1.0625rem; color: var(--body);
    line-height: 1.75; margin-bottom: 40px;
}
.sister__body strong { color: #EA580C; font-weight: 700; }

/* Service pills */
.sister__services {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin-bottom: 32px;
}
.sister__pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 600;
    color: #9A3412;
    background: var(--white);
    border: 1px solid rgba(249,115,22,0.15);
    padding: 10px 18px; border-radius: 100px;
    transition: all 250ms ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sister__pill:hover {
    border-color: #F97316;
    background: #FFF;
    box-shadow: 0 4px 16px rgba(249,115,22,0.12);
    transform: translateY(-2px);
}
.sister__pill svg { color: #F97316; flex-shrink: 0; }

/* CTA buttons */
.sister__cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.sister__btn {
    background: #F97316; color: var(--white);
    padding: 14px 28px; border-radius: 10px;
    font-size: 1rem; font-weight: 700;
    transition: all 250ms ease;
    box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}
.sister__btn:hover {
    background: #EA580C;
    box-shadow: 0 6px 24px rgba(249,115,22,0.35);
    transform: translateY(-2px);
}
.sister__btn svg { flex-shrink: 0; }

.sister__btn--ghost {
    background: transparent; color: #EA580C;
    border: 2px solid rgba(249,115,22,0.25);
    box-shadow: none;
}
.sister__btn--ghost:hover {
    background: rgba(249,115,22,0.06);
    border-color: #F97316;
    box-shadow: none;
}

/* Sister responsive — handled in consolidated media queries below */

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0 24px;
}
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__logo-img { height: 32px; width: auto; margin-bottom: 16px; }
.footer__strapline { font-size: 0.875rem; color: var(--muted); line-height: 1.6; max-width: 260px; margin-top: 12px; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    color: var(--muted); transition: all 150ms ease;
}
.footer__socials a:hover { border-color: var(--accent); color: var(--accent); }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 {
    font-size: 0.8125rem; font-weight: 600; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.footer__col a { font-size: 0.875rem; color: var(--muted); transition: color 150ms ease; }
.footer__col a:hover { color: var(--white); }
.footer__col p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.8125rem; color: var(--muted); }
.footer__sister a { color: var(--accent); font-weight: 500; }
.footer__sister a:hover { text-decoration: underline; }

/* ==========================================================================
   REVEAL & INTERACTIONS
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Capability card tilt transition */
.cap { transition: background 300ms ease, transform 200ms ease; }

/* Card spotlight (mouse-follow glow) */
.pcard, .vip-card, .quote {
    position: relative; overflow: hidden;
}
.pcard::after, .vip-card::after, .quote::after {
    content: ''; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,85,255,0.06) 0%, transparent 70%);
    top: var(--mouse-y, -100px); left: var(--mouse-x, -100px);
    transform: translate(-50%, -50%);
    pointer-events: none; opacity: 0;
    transition: opacity 300ms ease;
}
.pcard:hover::after, .vip-card:hover::after, .quote:hover::after { opacity: 1; }

/* Form field focus glow */
.form__field { position: relative; transition: transform 200ms ease; }
.form__field--focused { transform: translateY(-1px); }

/* Hero text parallax smoothing */
.hero__h1, .hero__p { will-change: transform, opacity; }

/* Process steps progress */
.steps { position: relative; }
.steps::before {
    content: ''; position: absolute;
    top: 0; left: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(0,85,255,0.1));
    transform-origin: top;
    transform: scaleY(var(--step-progress, 0));
    transition: transform 100ms linear;
    border-radius: 2px;
}

/* Cursor glow */
.cursor-glow {
    position: fixed; top: 0; left: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,85,255,0.3);
    pointer-events: none; z-index: 9999;
    margin: -10px 0 0 -10px;
    transition: width 300ms ease, height 300ms ease, margin 300ms ease, border-color 300ms ease, background 300ms ease;
    mix-blend-mode: difference;
}
.cursor-glow--active {
    width: 44px; height: 44px;
    margin: -22px 0 0 -22px;
    border-color: rgba(0,85,255,0.5);
    background: rgba(0,85,255,0.04);
}

/* ==========================================================================
   RESPONSIVE — Tablet (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Hero */
    .hero__wrap { grid-template-columns: 1fr; gap: 40px; }
    .hero__showcase { height: 380px; }
    .hm-browser { width: 300px; }
    .hm-mobile { width: 110px; }
    .hm-code { font-size: 0.5625rem; }

    /* Section head row */
    .section__head-row { flex-direction: column; gap: 24px; }
    .section__head-visual { width: 240px; height: 220px; }
    .sh-orbit { width: 200px; height: 200px; }
    .sh-orbit__dot { width: 36px; height: 36px; font-size: 0.5rem; }
    .sh-orbit__center { width: 44px; height: 44px; font-size: 0.75rem; }
    .sh-grid-mosaic { width: 220px; }

    /* Capabilities */
    .cap-grid { grid-template-columns: 1fr; gap: 0; }
    .cap { padding: 36px 28px; }

    /* Tech */
    .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* Grids */
    .grid--3 { grid-template-columns: repeat(2, 1fr); }

    /* Process */
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .step:nth-child(even) { border-right: none; }

    /* VIP Work */
    .vip-featured { grid-template-columns: 1fr; }
    .vip-featured__visual { aspect-ratio: 16/7; }
    .vip-featured__content { padding: 32px; }

    /* Mock screens */
    .mock-screen { width: 80%; max-width: 340px; }
    .mock-screen--portal { max-width: 260px; }
    .mock-phone { width: 100px; }

    /* Split layouts */
    .split { grid-template-columns: 1fr; gap: 40px; }

    /* Footer */
    .footer__top { grid-template-columns: 1fr; }

    /* Tabs */
    .ind-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .ind-tabs::-webkit-scrollbar { display: none; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* ── Global ── */
    .section { padding: 56px 0; }
    .section__head { margin-bottom: 32px; }
    .section__title { font-size: 1.5rem; margin-bottom: 12px; letter-spacing: -0.02em; }
    .section__intro { font-size: 0.875rem; line-height: 1.6; }

    /* ── Nav ── */
    .nav {
        position: fixed; inset: 0; background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px); flex-direction: column;
        justify-content: center; align-items: center; gap: 20px;
        opacity: 0; visibility: hidden; transition: all 250ms ease; z-index: 100;
    }
    .nav.active { opacity: 1; visibility: visible; }
    .nav__link { font-size: 1.125rem; color: var(--text); }
    .nav__link--cta { font-size: 0.9375rem; padding: 10px 20px; }
    .burger { display: flex; }

    /* ── Header ── */
    .header { height: 56px; }
    .logo__img { height: 28px; }

    /* ── Hero — Mobile first, clean, punchy ── */
    .hero { padding: calc(56px + 32px) 0 0; }
    .hero__wrap { grid-template-columns: 1fr; gap: 0; text-align: center; }
    .hero__left { order: 1; }
    .hero__right { order: 2; }
    .hero__eyebrow { font-size: 0.6875rem; margin-bottom: 16px; justify-content: center; }
    .hero__h1 { font-size: 1.75rem; margin-bottom: 16px; line-height: 1.1; }
    .hero__p {
        font-size: 0.875rem; margin-bottom: 24px; line-height: 1.65;
        max-width: 100%;
        /* Shorter on mobile — hide last sentence */
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .hero__ctas { justify-content: center; gap: 10px; margin-bottom: 0; }
    .btn--lg { padding: 11px 20px; font-size: 0.875rem; border-radius: 8px; }

    /* Showcase — compact horizontal scroll feel */
    .hero__showcase {
        height: auto; perspective: none; padding: 28px 0 0;
        display: flex; gap: 12px; overflow-x: auto;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
        justify-content: center;
    }
    .hero__showcase::-webkit-scrollbar { display: none; }
    .hm-browser {
        position: relative; top: auto; left: auto;
        width: 220px; min-width: 220px; flex-shrink: 0;
        transform: none; animation: none;
        border-radius: 8px;
    }
    .hm-browser__body { min-height: 120px; }
    .hm-dash-chart { display: none; }
    .hm-dash-table { display: none; }
    .hm-mobile {
        position: relative; bottom: auto; right: auto;
        width: 110px; min-width: 110px; flex-shrink: 0;
        animation: none; border-radius: 14px;
    }
    .hm-code { display: none; }
    .hm-notif { display: none; }
    .hero__orb--1 { width: 200px; height: 200px; opacity: 0.04; }
    .hero__orb--2 { display: none; }

    /* Metrics strip */
    .hero__metrics-strip { padding: 14px 0; }
    .hero__metrics-inner { gap: 0; justify-content: space-around; }
    .hm-strip-divider { display: none; }
    .hm-strip-item { font-size: 0.75rem; text-align: center; flex: 1; }
    .hm-strip-item strong { font-size: 1.125rem; display: block; }
    .hm-strip-item span { font-size: 0.75rem; }
    .hm-strip-item--text { display: none; }

    /* Section visuals — hide on mobile */
    .section__head-visual { display: none; }
    .section__head-row { margin-bottom: 32px; }

    /* ── Capabilities ── */
    .cap-grid { border-radius: 12px; }
    .cap { padding: 24px 20px; }
    .cap__number { font-size: 0.6875rem; margin-bottom: 10px; }
    .cap__title { font-size: 1rem; }
    .cap__body { font-size: 0.8125rem; line-height: 1.6; margin-bottom: 14px;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .cap__detail { padding-top: 10px; }
    .cap__label { font-size: 0.625rem; }
    .cap__detail p { font-size: 0.6875rem; }

    /* ── Tech ── */
    .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .tech-col__heading { font-size: 0.6875rem; margin-bottom: 10px; }
    .tech-col__list li { font-size: 0.75rem; padding: 4px 0; }

    /* ── Industry tabs ── */
    .ind-tabs { gap: 2px; padding: 3px; border-radius: 8px; }
    .ind-tab { font-size: 0.75rem; padding: 7px 12px; border-radius: 6px; }
    .ind-panel__intro { margin-bottom: 24px; }
    .ind-panel__intro h3 { font-size: 1.125rem; }
    .ind-panel__intro p { font-size: 0.8125rem; line-height: 1.6; }

    /* ── Product cards — 2 columns on mobile ── */
    .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pcard { padding: 18px 16px; border-radius: 10px; }
    .pcard__badge { top: 10px; right: 10px; font-size: 0.5625rem; padding: 1px 7px; }
    .pcard__title { font-size: 0.875rem; margin-bottom: 6px; }
    .pcard__body { font-size: 0.75rem; line-height: 1.5; margin-bottom: 14px;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .pcard .btn--s { font-size: 0.6875rem; padding: 6px 10px; }
    .pcard--highlight .btn--s { font-size: 0.6875rem; }

    /* ── VIP Work ── */
    .vip-work { padding: 56px 0; }
    .vip-work__head { margin-bottom: 32px; }
    .vip-work__title { font-size: 1.625rem; }
    .vip-featured { grid-template-columns: 1fr; }
    .vip-featured__visual { aspect-ratio: 16/9; }
    .mock-screen { width: 70%; max-width: 240px; }
    .mock-screen--portal { max-width: 200px; }
    .mock-phone { width: 80px; right: 8px; }
    .mock-body { min-height: 100px; }
    .vip-featured__content { padding: 20px 18px; }
    .vip-featured__title { font-size: 1.0625rem; }
    .vip-featured__body { font-size: 0.8125rem; line-height: 1.6;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .vip-featured__stats { gap: 16px; }
    .vip-stat__fig { font-size: 1.25rem; }
    .vip-stat__label { font-size: 0.625rem; }
    .vip-duo { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vip-card__visual { aspect-ratio: 16/10; }
    .vip-card__body { padding: 14px; }
    .vip-card__meta { gap: 4px; margin-bottom: 8px; }
    .vip-tag { font-size: 0.5625rem; padding: 2px 6px; }
    .vip-card__title { font-size: 0.9375rem; margin-bottom: 6px; }
    .vip-card__desc { font-size: 0.75rem; line-height: 1.5; margin-bottom: 12px;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .vip-card__stats { gap: 16px; }
    .vip-stat--sm .vip-stat__fig { font-size: 1.125rem; }
    .vip-work__cta { margin-top: 28px; }
    .vip-work__cta p { font-size: 0.875rem; }

    /* ── Process ── */
    .steps { grid-template-columns: repeat(2, 1fr); gap: 0; border-radius: 10px; }
    .step { border-right: 1px solid rgba(255,255,255,0.06) !important; padding: 20px 16px; }
    .step:nth-child(even) { border-right: none !important; }
    .step__num { font-size: 0.75rem; margin-bottom: 10px; }
    .step__title { font-size: 0.9375rem; }
    .step__body { font-size: 0.75rem; line-height: 1.5; }

    /* ── Quotes — horizontal scroll ── */
    .grid--3:has(.quote) {
        grid-template-columns: repeat(3, 280px);
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; scroll-snap-type: x mandatory;
    }
    .grid--3:has(.quote)::-webkit-scrollbar { display: none; }
    .quote { scroll-snap-align: start; min-width: 280px; padding: 20px 18px; }
    .quote__text { font-size: 0.875rem; margin-bottom: 16px; }
    .quote__source strong { font-size: 0.8125rem; }
    .quote__source span { font-size: 0.75rem; }

    /* ── About ── */
    .split__body { font-size: 0.875rem; line-height: 1.7; }
    .check-list { margin-top: 20px; gap: 10px; }
    .check-list li { font-size: 0.8125rem; padding-left: 24px; }
    .check-list li::before { width: 14px; height: 14px; top: 4px; }
    .check-list li::after { left: 3px; top: 7px; width: 7px; height: 3px; }
    .loc-card { padding: 24px; border-radius: 12px; }
    .loc-card__title { font-size: 0.9375rem; }
    .loc-card__address { font-size: 0.8125rem; }

    /* ── Contact ── */
    .contact-link { font-size: 0.875rem; }
    .form { padding: 20px; border-radius: 12px; }
    .form__field { margin-bottom: 14px; }
    .form__field label { font-size: 0.75rem; }
    .form__field input, .form__field select, .form__field textarea {
        padding: 9px 12px; font-size: 0.8125rem; border-radius: 6px;
    }

    /* ── Sister ── */
    .sister { padding: 48px 0; }
    .sister__badge { font-size: 0.6875rem; }
    .sister__title { font-size: 1.375rem; }
    .sister__body { font-size: 0.875rem; margin-bottom: 24px; line-height: 1.6; }
    .sister__services { gap: 6px; margin-bottom: 24px; }
    .sister__pill { font-size: 0.75rem; padding: 7px 12px; }
    .sister__pill svg { width: 13px; height: 13px; }
    .sister__cta-row { flex-direction: column; align-items: center; gap: 8px; }
    .sister__btn { width: 100%; max-width: 300px; justify-content: center; padding: 11px 20px; font-size: 0.875rem; }
    .sister__shape--1 { width: 120px; height: 120px; }
    .sister__shape--2 { width: 80px; height: 80px; }
    .sister__shape--3 { display: none; }

    /* ── Footer ── */
    .footer { padding: 40px 0 20px; }
    .footer__top { gap: 24px; padding-bottom: 20px; }
    .footer__logo-img { height: 24px; }
    .footer__strapline { font-size: 0.75rem; max-width: 200px; }
    .footer__nav { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .footer__col h4 { font-size: 0.6875rem; margin-bottom: 2px; }
    .footer__col a, .footer__col p { font-size: 0.75rem; }
    .footer__col { gap: 4px; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
    .footer__bottom p, .footer__sister { font-size: 0.6875rem; }

    /* ── Disable desktop effects ── */
    .cursor-glow { display: none; }
    .steps::before { display: none; }
    .pcard::after, .vip-card::after, .quote::after { display: none; }

    /* ── Blog ── */
    .blog-listing { padding: calc(56px + 32px) 0 48px; }
    .blog-grid { grid-template-columns: 1fr; gap: 14px; }
    .blog-card--featured { flex-direction: column; }
    .blog-card--featured img.blog-card__img { width: 100%; height: 160px; min-height: auto; }
    .blog-card--featured .blog-card__title { font-size: 1.125rem; }
    img.blog-card__img { height: 140px; }
    .blog-card__body { padding: 16px; }
    .blog-card__title { font-size: 1rem; }
    .blog-card__excerpt { font-size: 0.8125rem; margin-bottom: 10px; }
    .article { padding: calc(56px + 24px) 20px 48px; }
    .article__title { font-size: 1.5rem; }
    .article__body h2 { font-size: 1.125rem; margin-top: 32px; }
    .article__body p { font-size: 0.9375rem; line-height: 1.75; }
    .article__cta { padding: 24px 18px; }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile (480px)
   ========================================================================== */
@media (max-width: 480px) {
    .wrap { padding: 0 14px; }

    /* Hero */
    .hero { padding: calc(56px + 24px) 0 0; }
    .hero__h1 { font-size: 1.5rem; }
    .hero__p { font-size: 0.8125rem; -webkit-line-clamp: 2; }
    .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 8px; }
    .hero__ctas .btn--lg { width: 100%; justify-content: center; }
    .hero__ctas .btn--text { text-align: center; padding: 8px 0; }
    .hm-browser { width: 180px; min-width: 180px; }
    .hm-mobile { width: 90px; min-width: 90px; }

    /* Global */
    .section { padding: 44px 0; }
    .section__head { margin-bottom: 24px; }
    .section__title { font-size: 1.25rem; }

    /* Products — single column on small phones */
    .grid--3 { grid-template-columns: 1fr; gap: 10px; }

    /* VIP */
    .vip-work { padding: 44px 0; }
    .vip-work__title { font-size: 1.375rem; }
    .vip-duo { grid-template-columns: 1fr; gap: 10px; }
    .vip-featured__stats { flex-wrap: wrap; }

    /* Process */
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none !important; padding: 18px 16px; }

    /* Testimonials — stack on tiny screens */
    .grid--3:has(.quote) { grid-template-columns: 1fr; overflow: visible; }
    .quote { min-width: auto; }

    /* Tech */
    .tech-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer__nav { grid-template-columns: 1fr; gap: 16px; }

    /* Sister */
    .sister__title { font-size: 1.25rem; }
    .sister__pill { font-size: 0.6875rem; padding: 6px 10px; }
}

/* ==========================================================================
   BLOG LISTING
   ========================================================================== */
.blog-listing {
    padding: calc(var(--header-h, 64px) + 64px) 0 80px;
    min-height: 100vh;
}
.blog-listing__head { margin-bottom: 48px; }
.blog-listing__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; letter-spacing: -0.03em;
    color: var(--text); margin-bottom: 12px;
}
.blog-listing__intro { font-size: 1.0625rem; color: var(--body); max-width: 480px; }

.blog-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blog-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; background: var(--white);
    transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
    text-decoration: none; color: inherit;
}
.blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0,85,255,0.06);
    transform: translateY(-3px);
}
.blog-card--featured { grid-column: 1 / -1; flex-direction: row; }
.blog-card--featured img.blog-card__img { width: 45%; height: auto; min-height: 280px; }
.blog-card--featured .blog-card__body { flex: 1; }
.blog-card--featured .blog-card__title { font-size: 1.5rem; }

img.blog-card__img {
    width: 100%; height: 200px;
    object-fit: cover; display: block;
}

.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
    font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent); margin-bottom: 10px;
}
.blog-card__title {
    font-size: 1.125rem; font-weight: 700;
    color: var(--text); margin-bottom: 8px;
    line-height: 1.3; letter-spacing: -0.01em;
}
.blog-card__excerpt {
    font-size: 0.875rem; color: var(--body);
    line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.blog-card__meta {
    font-size: 0.75rem; color: var(--muted); font-weight: 500;
}

/* ==========================================================================
   BLOG ARTICLE
   ========================================================================== */
.article {
    padding: calc(var(--header-h, 64px) + 48px) 0 80px;
    max-width: 740px; margin: 0 auto;
}
.article__kicker {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 16px;
}
.article__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900; line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text); margin-bottom: 16px;
}
.article__meta {
    font-size: 0.8125rem; color: var(--muted);
    margin-bottom: 40px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.article__hero-img {
    width: 100%; height: auto; border-radius: 12px;
    margin-bottom: 40px; object-fit: cover;
    aspect-ratio: 16/9;
}
.article__body h2 {
    font-size: 1.5rem; font-weight: 800;
    color: var(--text); margin: 48px 0 16px;
    letter-spacing: -0.02em;
}
.article__body h3 {
    font-size: 1.125rem; font-weight: 700;
    color: var(--text); margin: 32px 0 12px;
}
.article__body p {
    font-size: 1.0625rem; color: var(--body);
    line-height: 1.85; margin-bottom: 20px;
}
.article__body ul, .article__body ol {
    margin: 0 0 20px 20px;
}
.article__body li {
    font-size: 1rem; color: var(--body);
    line-height: 1.8; margin-bottom: 8px;
    list-style: disc;
}
.article__body ol li { list-style: decimal; }
.article__body strong { color: var(--text); font-weight: 600; }
.article__body a {
    color: var(--accent); font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.article__body a:hover { color: var(--accent-h); }
.article__body blockquote {
    margin: 32px 0; padding: 20px 24px;
    border-left: 3px solid var(--accent);
    background: var(--smoke); border-radius: 0 8px 8px 0;
}
.article__body blockquote p { color: var(--text); font-weight: 500; margin: 0; }

.article__cta {
    margin-top: 36px; padding: 40px;
    background: var(--dark); border-radius: 16px;
    text-align: center;
}
.article__cta h3 {
    font-size: 1.25rem; font-weight: 800;
    color: var(--white); margin-bottom: 12px;
}
.article__cta p {
    font-size: 0.9375rem; color: var(--muted);
    margin-bottom: 20px;
}
.article__back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 600;
    color: var(--accent); margin-top: 40px;
}
.article__back:hover { text-decoration: underline; }

/* ==========================================================================
   CHATBOT WIDGET
   ========================================================================== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9000; font-family: var(--font); }

/* FAB button */
.chat-fab {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,85,255,0.35);
    transition: all 250ms ease; position: relative;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,85,255,0.45); }
.chat-fab__icon--close { display: none; }
.chat-fab.active .chat-fab__icon--chat { display: none; }
.chat-fab.active .chat-fab__icon--close { display: block; }
.chat-fab__badge {
    position: absolute; top: -4px; right: -4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #EF4444; color: #fff; font-size: 0.6875rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center;
    animation: badge-pulse 2s ease-in-out infinite;
}
.chat-fab__badge.hidden { display: none; }
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Chat Window */
.chat-window {
    position: absolute; bottom: 72px; right: 0;
    width: 370px; max-height: 520px;
    background: var(--white); border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    display: none; flex-direction: column;
    overflow: hidden;
    animation: chat-slide-up 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-window.open { display: flex; }

@keyframes chat-slide-up {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.chat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px; background: var(--dark); color: #fff;
    border-radius: 16px 16px 0 0;
}
.chat-header__info { display: flex; align-items: center; gap: 10px; }
.chat-header__avatar {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: #fff;
}
.chat-header__name { font-size: 0.875rem; font-weight: 700; }
.chat-header__status { font-size: 0.6875rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; }
.chat-header__dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; }
.chat-header__close {
    background: none; border: none; color: rgba(255,255,255,0.4);
    cursor: pointer; padding: 4px; transition: color 150ms ease;
}
.chat-header__close:hover { color: #fff; }

/* Body */
.chat-body {
    flex: 1; padding: 16px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 12px;
    max-height: 320px; min-height: 200px;
    scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Messages */
.chat-msg {
    max-width: 85%; padding: 10px 14px;
    border-radius: 12px; font-size: 0.875rem;
    line-height: 1.5; animation: msg-in 300ms ease;
}
@keyframes msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
    background: var(--smoke); color: var(--text);
    border-bottom-left-radius: 4px; align-self: flex-start;
}
.chat-msg--user {
    background: var(--accent); color: #fff;
    border-bottom-right-radius: 4px; align-self: flex-end;
}
.chat-msg--typing {
    background: var(--smoke); padding: 12px 18px;
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.typing-dots { display: flex; gap: 4px; }
.typing-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--muted); animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Input */
.chat-input-area {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid var(--border);
}
.chat-input {
    flex: 1; padding: 8px 12px; border: 1px solid var(--border);
    border-radius: 8px; font-size: 0.875rem; outline: none;
    transition: border-color 150ms ease; background: var(--white); color: var(--text);
}
.chat-input:focus { border-color: var(--accent); }
.chat-send {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--accent); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 150ms ease;
}
.chat-send:hover { background: var(--accent-h); }

/* Quick replies */
.chat-quick {
    display: none; flex-wrap: wrap; gap: 6px;
    padding: 0 16px 12px;
}
.chat-quick.visible { display: flex; }
.chat-quick__btn {
    font-size: 0.8125rem; font-weight: 500;
    padding: 6px 14px; border-radius: 100px;
    background: var(--white); color: var(--accent);
    border: 1px solid rgba(0,85,255,0.2);
    cursor: pointer; transition: all 200ms ease;
}
.chat-quick__btn:hover {
    background: rgba(0,85,255,0.06); border-color: var(--accent);
}

/* Mobile */
@media (max-width: 480px) {
    .chat-widget { bottom: 16px; right: 16px; }
    .chat-window { width: calc(100vw - 32px); right: 0; bottom: 68px; }
    .chat-fab { width: 50px; height: 50px; }
}

/* Blog responsive — handled in consolidated 768px block above */

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
    .cursor-glow { display: none; }
    .steps::before { display: none; }
    .hero__orb, .sister__shape, .vip-work__orb { display: none; }
}
