/* Golden Era Software — Modern UI (GERG logo blue theme) */
:root {
    /* Primary brand — matches logo blue */
    --brand-900: #0c3d6e;
    --brand-800: #124a82;
    --brand-700: #1a5a9e;
    --brand-600: #2b78c5;
    --brand-500: #3d8fd9;
    --brand-400: #5ba3e8;
    --brand-300: #93c5fd;
    --brand-rgb: 43, 120, 197;

    /* Site-wide theme tokens (legacy var names → brand blue) */
    --teal-900: var(--brand-900);
    --teal-700: var(--brand-700);
    --teal-600: var(--brand-600);
    --teal-500: var(--brand-500);
    --blue-600: var(--brand-700);
    --blue-500: var(--brand-500);

    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --header-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-900); }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
    border-color: var(--slate-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo:hover { opacity: 0.92; }

.logo-img {
    display: block;
    width: auto;
    height: 52px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: left center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-900);
    transition: var(--transition);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-list > li > a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-700);
    border-radius: 8px;
}

.nav-list > li > a.active,
.nav-list > li > a:hover {
    color: var(--teal-700);
}

.nav-list > li > a.active {
    position: relative;
}

.nav-list > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--teal-600);
    border-radius: 2px;
}

.btn-nav {
    background: var(--teal-600) !important;
    color: var(--white) !important;
    margin-left: 0.5rem;
}

.btn-nav:hover {
    background: var(--teal-700) !important;
    color: var(--white) !important;
}

.has-dropdown { position: relative; }

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
    color: var(--slate-700);
    border-radius: 8px;
}

.dropdown a:hover {
    background: var(--slate-100);
    color: var(--teal-700);
}

#main-content { padding-top: var(--header-h); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.45);
    color: var(--white);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--teal-700);
}

.btn-light:hover { background: var(--slate-100); color: var(--teal-900); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* Hero Slideshow */
.hero-slider {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    overflow: hidden;
    color: var(--white);
}

.hero-slider .container[class*="slide-inner"] {
    padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.hero-slides {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-h));
}

.hero-slides::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
    z-index: 4;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Banner backgrounds */
.banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.banner-bg--aurora {
    background: linear-gradient(160deg, #0c0a1a 0%, #1a1040 40%, #0f172a 100%);
}

.banner-bg--editorial {
    background: linear-gradient(145deg, #0a0a0f 0%, #14141f 50%, #1a1520 100%);
}

.banner-bg--light {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #e8f0fa 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: orbDrift 14s ease-in-out infinite;
}

.bg-orb--1 { width: 420px; height: 420px; background: #7c3aed; top: -10%; left: -5%; }
.bg-orb--2 { width: 360px; height: 360px; background: var(--brand-500); bottom: -15%; right: 10%; animation-delay: -4s; }
.bg-orb--3 { width: 280px; height: 280px; background: #ec4899; top: 40%; left: 35%; animation-delay: -7s; opacity: 0.35; }
.bg-orb--warm { width: 500px; height: 500px; background: #f59e0b; top: -20%; right: -10%; opacity: 0.25; }
.bg-orb--cool { width: 400px; height: 400px; background: #6366f1; bottom: -25%; left: -5%; animation-delay: -5s; opacity: 0.3; }

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.banner-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    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)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.light-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.light-blob--1 { width: 400px; height: 400px; background: rgba(var(--brand-rgb), 0.2); top: -10%; right: 5%; }
.light-blob--2 { width: 300px; height: 300px; background: rgba(var(--brand-rgb), 0.12); bottom: 0; left: 10%; }

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.slide-plexus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slide-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 3rem 0 5.5rem;
}

.slide-inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 4rem);
}

.slide-inner--text {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 4rem);
}

.slide-inner--text .slide-copy {
    max-width: 720px;
}

.slide-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-copy p {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* ─── Theme 1: Aurora Glass ─── */
.slide-inner--aurora {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(220px, 1.1fr) minmax(200px, 1fr);
    gap: 1.25rem;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 4rem);
}

.banner-slogans {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Center hub */
.banner-hub {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.hub-ring--outer {
    width: 100%;
    height: 100%;
    animation: spin 25s linear infinite;
}

.hub-ring--inner {
    width: 72%;
    height: 72%;
    border-color: rgba(168, 85, 247, 0.35);
    animation: spin 18s linear infinite reverse;
}

.hub-core {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.55), rgba(91, 163, 232, 0.45));
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.45);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.hub-core small {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
    margin-top: 2px;
}

@keyframes hubPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.35); }
    50% { box-shadow: 0 0 60px rgba(var(--brand-rgb), 0.55); }
}

.hub-orbit-item {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hub-orbit-item--1 { top: 2%; left: calc(50% - 22px); animation: hubFloat 4s ease-in-out infinite; animation-delay: 0s; }
.hub-orbit-item--2 { top: calc(50% - 22px); right: 0; animation: hubFloat 4s ease-in-out infinite; animation-delay: 0.6s; }
.hub-orbit-item--3 { bottom: 2%; left: calc(50% - 22px); animation: hubFloat 4s ease-in-out infinite; animation-delay: 1.2s; }
.hub-orbit-item--4 { top: calc(50% - 22px); left: 0; animation: hubFloat 4s ease-in-out infinite; animation-delay: 1.8s; }

@keyframes hubFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hub-stats {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
    width: max-content;
    max-width: 100%;
}

.hub-stat {
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    backdrop-filter: blur(8px);
}

.hub-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hub-stat span {
    font-size: 0.55rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hub-lines {
    position: absolute;
    inset: 10%;
    width: 80%;
    height: 80%;
    opacity: 0.25;
    pointer-events: none;
}

.hub-lines line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

.device-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.25rem;
}

.device-extra {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.device-extra i {
    color: #a855f7;
    font-size: 0.65rem;
}

.glass-pill {
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-pill:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.glass-pill--violet { border-left: 4px solid #a855f7; }
.glass-pill--amber { border-left: 4px solid #f59e0b; margin-left: 2rem; }
.glass-pill--sky { border-left: 4px solid #22d3ee; margin-left: 1rem; }

.pill-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.2rem;
}

.glass-pill strong {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: 0.08em;
    font-weight: 800;
}

.glass-device {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.device-frame {
    width: min(100%, 300px);
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.device-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.device-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.device-bar span:nth-child(1) { background: #f87171; }
.device-bar span:nth-child(2) { background: #fbbf24; }
.device-bar span:nth-child(3) { background: #4ade80; }

.device-code {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 12px;
    padding: 1.25rem;
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
}

.tok-kw { color: #c084fc; }
.tok-fn { color: #38bdf8; }
.tok-str { color: #4ade80; }

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.stack-tag {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ─── Theme 2: Editorial Noir ─── */
.slide-inner--editorial {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 4rem);
}

.editorial-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.editorial-copy h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.editorial-copy h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.editorial-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.aside-card {
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition);
}

.aside-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.aside-card i {
    font-size: 1.35rem;
    color: #f59e0b;
}

.aside-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

.aside-card--featured {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(99, 102, 241, 0.1));
    border-color: rgba(245, 158, 11, 0.35);
}

.aside-card--featured i { font-size: 1.75rem; }

.btn-glow {
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    box-shadow: 0 4px 24px rgba(var(--brand-rgb), 0.45);
}

.btn-glow:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--brand-rgb), 0.5);
}

/* ─── Theme 3: Brand blue Provide Showcase ─── */
.banner-bg--provide {
    background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 45%, #0f172a 100%);
}

.bg-orb--teal {
    width: 450px;
    height: 450px;
    background: var(--brand-500);
    top: -15%;
    right: -5%;
    opacity: 0.35;
}

.bg-orb--mint {
    width: 350px;
    height: 350px;
    background: var(--brand-400);
    bottom: -10%;
    left: -5%;
    opacity: 0.25;
    animation-delay: -6s;
}

.slide-inner--provide {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 6rem);
}

.provide-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.25rem;
}

.provide-copy .hero-subtitle {
    max-width: 460px;
    margin-bottom: 1.75rem;
}

.provide-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.showcase-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
    border-color: rgba(var(--brand-rgb), 0.45);
}

.showcase-card--featured {
    background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.28), rgba(255, 255, 255, 0.06));
    border-color: rgba(var(--brand-rgb), 0.4);
    padding: 1.25rem 1.35rem;
}

.showcase-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.35);
}

.showcase-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.showcase-body p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Slide animations on active */
.slide-animate {
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide:not(.is-active) .slide-animate {
    animation: none !important;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.is-active .slide-animate {
    animation: slideFadeUp 0.7s ease forwards;
}

.hero-slide.is-active .slide-animate[data-animate="d1"] { animation-delay: 0.1s; }
.hero-slide.is-active .slide-animate[data-animate="d2"] { animation-delay: 0.25s; }
.hero-slide.is-active .slide-animate[data-animate="d3"] { animation-delay: 0.4s; }
.hero-slide.is-active .slide-animate[data-animate="tech"] { animation-delay: 0.2s; }
.hero-slide.is-active .slide-animate[data-animate="copy"] { animation-delay: 0.15s; }
.hero-slide.is-active .slide-animate[data-animate="bento"] { animation-delay: 0.3s; }
.hero-slide.is-active .slide-animate[data-animate="hub"] { animation-delay: 0.2s; }

@keyframes slideFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Banner footer — dots inside slideshow */
.hero-banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 1.35rem;
    pointer-events: none;
}

.hero-banner-footer .hero-dots {
    pointer-events: auto;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero-dot.is-active,
.hero-dot:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.15);
}


.hero-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    margin: 1rem 0 1.25rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-illustration {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-orbit {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.hero-orbit span {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.hero-orbit span:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.hero-orbit span:nth-child(2) { right: -10px; top: 50%; }
.hero-orbit span:nth-child(3) { bottom: -10px; left: 50%; transform: translateX(-50%); }
.hero-orbit span:nth-child(4) { left: -10px; top: 50%; }

@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
    position: absolute;
    background: var(--white);
    color: var(--slate-900);
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
}

.float-card i { color: var(--teal-600); }
.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 15%; right: 0; animation-delay: 1s; }
.card-3 { bottom: 15%; left: 10%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Sections */
.section { padding: 5rem 0; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-600);
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2,
.about-content h2,
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--slate-500);
    font-size: 1.05rem;
}

/* Process */
.process-section { background: var(--slate-100); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.process-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-600), var(--blue-500));
    color: var(--white);
    border-radius: 14px;
    font-size: 1.25rem;
}

.process-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--blue-600);
    margin-bottom: 0.35rem;
}

.process-body p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.55;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.code-window {
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #1e293b;
}

.code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
}

.code-header span:nth-child(1) { background: #ef4444; }
.code-header span:nth-child(2) { background: #eab308; }
.code-header span:nth-child(3) { background: #22c55e; }

.code-window pre {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
}

.code-window code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #a5f3fc;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--slate-500);
}

.about-content .btn { margin-top: 0.5rem; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover,
.service-card.active {
    border-color: var(--teal-500);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.service-teal .service-icon { background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); }
.service-blue .service-icon { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); }
.service-slate .service-icon { background: linear-gradient(135deg, #475569, #334155); }
.service-cyan .service-icon { background: linear-gradient(135deg, var(--brand-700), var(--brand-500)); }
.service-indigo .service-icon { background: linear-gradient(135deg, #4f46e5, #6366f1); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 1rem;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-600);
}

.service-detail-panel {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--slate-100);
    border-radius: var(--radius);
    min-height: 0;
    transition: var(--transition);
}

.service-detail-panel:not(:empty) {
    border-left: 4px solid var(--teal-600);
}

.service-panel-content h4 {
    font-family: var(--font-display);
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
    color: var(--white);
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-inner p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--slate-100), var(--white));
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--slate-200);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--slate-500); max-width: 560px; margin: 0 auto; }

.page-hero--about {
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 45%, var(--brand-600) 100%);
    color: var(--white);
    border-bottom: none;
}

.page-hero--about .section-label,
.page-hero--about h1,
.page-hero--about p {
    color: var(--white);
}

.page-hero--about p {
    opacity: 0.92;
}

.page-content { max-width: 800px; }

.page-content--about {
    max-width: 1000px;
}

.content-block h2 {
    font-family: var(--font-display);
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.content-block p { margin-bottom: 1rem; color: var(--slate-500); }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--slate-100);
    border-radius: var(--radius);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--teal-700);
}

.stat-item span { font-size: 0.85rem; color: var(--slate-500); }

/* About — Founder */
.about-founder {
    margin: 3rem 0;
    padding-top: 0.5rem;
}

.about-founder-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin: 0 0 2.5rem;
    letter-spacing: -0.02em;
}

.about-founder-grid {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-founder-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--slate-100);
}

.about-founder-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-founder-photo-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--slate-100), var(--slate-200));
    color: var(--teal-600);
    font-size: 4rem;
}

.about-founder-card {
    padding: 2rem 2.25rem;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-founder-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--slate-900);
    text-align: right;
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-200);
}

.about-founder-bio {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--slate-600);
    text-align: justify;
}

@media (max-width: 768px) {
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .about-founder-photo {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-founder-name {
        text-align: left;
    }

    .about-founder-bio {
        text-align: left;
    }
}

/* Services detail page */
.services-detail-grid {
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal-600), var(--blue-500));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-detail-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

/* Portfolio — modern project showcase */
.page-hero--portfolio {
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 42%, var(--brand-600) 100%);
    color: var(--white);
    border-bottom: none;
    text-align: center;
    padding-bottom: 3rem;
}

.page-hero--portfolio .container {
    max-width: 1080px;
}

.page-hero--portfolio .section-label {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero--portfolio h1,
.page-hero--portfolio p {
    color: var(--white);
}

.page-hero--portfolio p {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
}

.portfolio-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.portfolio-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-breadcrumb a:hover {
    color: var(--white);
}

.portfolio-breadcrumb span {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.portfolio-section {
    padding: 4rem 0 5rem;
    background: var(--slate-50);
}

.portfolio-showcase {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Shared card shell */
.portfolio-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.portfolio-card:hover {
    border-color: rgba(var(--brand-rgb), 0.25);
    box-shadow: 0 20px 50px rgba(var(--brand-rgb), 0.08);
}

.portfolio-card-badge {
    display: flex;
    align-items: center;
    padding: 1rem 1.75rem 0;
}

.portfolio-index {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand-600);
    opacity: 0.9;
}

.portfolio-card-head {
    padding: 0 1.75rem 1rem;
}

.portfolio-card-head--center {
    text-align: center;
    padding-bottom: 1.25rem;
}

.portfolio-card-head h2,
.portfolio-card-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.portfolio-card-sub {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-600);
}

.portfolio-card-copy p,
.portfolio-card-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--slate-600);
}

/* Featured mobile project */
.portfolio-card--featured {
    padding-bottom: 0;
}

.portfolio-featured-body {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    align-items: stretch;
    border-top: 1px solid var(--slate-200);
}

.portfolio-card--featured .portfolio-card-copy {
    padding: 1.75rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    border-right: 1px solid var(--slate-200);
}

.portfolio-mobile-visuals {
    padding: 1.5rem 1.75rem 1.75rem;
    background: linear-gradient(145deg, #f0f6fc 0%, var(--slate-100) 100%);
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 1rem;
    align-items: end;
}

.portfolio-figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.portfolio-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-figure--primary {
    align-self: center;
}

.portfolio-figure--secondary {
    grid-column: 2;
}

/* Standard projects — alternating zigzag */
.portfolio-card--standard {
    padding: 0;
}

.portfolio-card-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    min-height: 280px;
}

.portfolio-card--reverse .portfolio-card-inner {
    direction: rtl;
}

.portfolio-card--reverse .portfolio-card-inner > * {
    direction: ltr;
}

.portfolio-card-visual {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(160deg, #eef4fb 0%, var(--slate-100) 100%);
    border-right: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-card--reverse .portfolio-card-visual {
    border-right: none;
    border-left: 1px solid var(--slate-200);
}

.portfolio-card-visual .portfolio-index {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 2;
}

.portfolio-browser {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.portfolio-browser-bar {
    display: flex;
    gap: 6px;
    padding: 0.65rem 0.85rem;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
}

.portfolio-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
}

.portfolio-browser-bar span:first-child {
    background: #f87171;
}

.portfolio-browser-bar span:nth-child(2) {
    background: #fbbf24;
}

.portfolio-browser-bar span:nth-child(3) {
    background: #4ade80;
}

.portfolio-browser-viewport {
    line-height: 0;
    background: var(--white);
}

.portfolio-browser-viewport img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-card-content {
    padding: 2rem 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.portfolio-card-content h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-bottom: 0.85rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
}

@media (max-width: 900px) {
    .portfolio-featured-body {
        grid-template-columns: 1fr;
    }

    .portfolio-card--featured .portfolio-card-copy {
        border-right: none;
        border-bottom: 1px solid var(--slate-200);
    }

    .portfolio-mobile-visuals {
        grid-template-columns: 1fr;
    }

    .portfolio-figure--secondary {
        grid-column: 1;
    }

    .portfolio-card-inner,
    .portfolio-card--reverse .portfolio-card-inner {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: 0;
    }

    .portfolio-card-visual {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid var(--slate-200);
    }

    .portfolio-card-content {
        padding: 1.75rem;
    }
}

/* Career */
.career-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}

.career-container {
    max-width: 1120px;
}

.page-hero--career {
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 45%, var(--brand-600) 100%);
    color: var(--white);
    border-bottom: none;
}

.page-hero--career .section-label,
.page-hero--career h1,
.page-hero--career p {
    color: var(--white);
}

.page-hero--career p {
    opacity: 0.92;
}

.career-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.career-side {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.career-side-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.career-side-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.career-side-card p {
    color: var(--slate-600);
    line-height: 1.65;
    margin: 0;
}

.career-side-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.career-meta-chip {
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--slate-50);
    padding: 0.7rem 0.75rem;
    text-align: center;
}

.career-meta-chip strong {
    display: block;
    font-family: var(--font-display);
    color: var(--brand-700);
    font-size: 1.05rem;
}

.career-meta-chip span {
    font-size: 0.78rem;
    color: var(--slate-600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-jobs {
    display: grid;
    gap: 1.25rem;
}

.career-job {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.career-job[open] {
    border-color: rgba(var(--brand-rgb), 0.35);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.career-job-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem 1.15rem 1.4rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    border-left: 3px solid transparent;
}

.career-job[open] .career-job-summary {
    border-left-color: var(--brand-500);
}

.career-job-summary::-webkit-details-marker {
    display: none;
}

.career-job-summary::marker {
    content: '';
}

.career-job-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.career-job-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
}

.career-job-exp {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-700);
}

.career-job-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.career-job[open] .career-job-toggle {
    transform: rotate(180deg);
    background: rgba(var(--brand-rgb), 0.12);
}

.career-job-body {
    padding: 0 1.35rem 1.4rem;
    border-top: 1px solid var(--slate-200);
}

.career-job-section {
    padding-top: 1.25rem;
}

.career-job-section h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 0.75rem;
}

.career-job-section p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.career-job-section ul {
    margin: 0;
    padding-left: 1.25rem;
}

.career-job-section li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--slate-600);
    margin-bottom: 0.4rem;
}

.career-job-footer-note {
    margin: 1.25rem 0 0;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    border-radius: var(--radius);
    border-left: 3px solid var(--brand-500);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-700);
}

.career-job-apply {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px dashed var(--slate-200);
    font-size: 0.92rem;
    color: var(--slate-600);
}

.career-job-apply a {
    font-weight: 600;
}

@media (max-width: 980px) {
    .career-layout {
        grid-template-columns: 1fr;
    }

    .career-side {
        position: static;
    }
}

/* Contact & Forms */
.page-hero--contact {
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 45%, var(--brand-600) 100%);
    color: var(--white);
    border-bottom: none;
    padding-bottom: 2.5rem;
}

.contact-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-breadcrumb a:hover {
    color: var(--white);
}

.contact-breadcrumb span {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.page-hero--contact .section-label,
.page-hero--contact h1,
.page-hero--contact p {
    color: var(--white);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(var(--brand-rgb), 0.08), transparent 45%),
        radial-gradient(circle at 96% 0%, rgba(var(--brand-rgb), 0.08), transparent 38%),
        linear-gradient(180deg, var(--slate-50) 0%, var(--white) 42%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: start;
    max-width: 1100px;
}

.contact-panel-head {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-rgb), 0.25);
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--brand-700);
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-chip strong {
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.contact-form-card {
    padding: 2.1rem 2.2rem;
    background: var(--white);
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 54px rgba(var(--brand-rgb), 0.12);
}

.contact-form-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--slate-900);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.contact-form-intro {
    margin: 0 0 1.75rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.contact-sidebar {
    display: grid;
    gap: 1.1rem;
}

.contact-office-card {
    padding: 1.45rem 1.4rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-office-card:hover {
    border-color: rgba(var(--brand-rgb), 0.35);
    box-shadow: 0 16px 42px rgba(var(--brand-rgb), 0.12);
}

.contact-office-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.contact-office-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.2));
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-office-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

.contact-office-card address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.contact-office-card address span {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--slate-600);
}

.contact-office-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
}

.contact-office-meta i {
    color: var(--teal-600);
    width: 1rem;
    text-align: center;
}

.contact-timings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-timings-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.contact-timings-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-500);
}

.contact-form .required {
    color: #dc2626;
    font-weight: 700;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-map-block {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px dashed rgba(var(--brand-rgb), 0.3);
}

.contact-map-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-map-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--slate-900);
    margin: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .contact-map-header h2 {
        width: auto;
        flex: 1;
    }
}

.contact-map-place {
    margin: 0;
    font-size: 0.92rem;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 100%;
}

@media (min-width: 640px) {
    .contact-map-place {
        flex: 1 1 auto;
    }
}

.contact-map-place i {
    color: var(--teal-600);
}

.contact-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(var(--brand-rgb), 0.22);
    box-shadow: 0 18px 44px rgba(var(--brand-rgb), 0.13);
    background: var(--slate-100);
}

.contact-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-wrap {
        aspect-ratio: 4 / 3;
        min-height: 280px;
    }
}

.quotation-form-wrap h2 {
    font-family: var(--font-display);
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 163, 148, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Service quotation */
.page-hero--quotation {
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 45%, var(--brand-600) 100%);
    color: var(--white);
    border-bottom: none;
    padding-bottom: 2.5rem;
}

.quotation-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.quotation-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.quotation-breadcrumb a:hover {
    color: var(--white);
}

.quotation-breadcrumb span {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.page-hero--quotation .section-label,
.page-hero--quotation h1,
.page-hero--quotation p {
    color: var(--white);
}

.page-hero--quotation p {
    opacity: 0.92;
}

.quotation-section {
    background:
        radial-gradient(circle at 6% 6%, rgba(var(--brand-rgb), 0.08), transparent 42%),
        radial-gradient(circle at 95% 10%, rgba(var(--brand-rgb), 0.08), transparent 36%),
        linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.quotation-container {
    max-width: 1120px;
    margin: 0 auto;
}

.quotation-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.quotation-side {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.quotation-side-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.quotation-side-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.quotation-side-card p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.65;
}

.quotation-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.quotation-meta-chip {
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--slate-50);
    padding: 0.7rem 0.75rem;
    text-align: center;
}

.quotation-meta-chip strong {
    display: block;
    font-family: var(--font-display);
    color: var(--brand-700);
    font-size: 1.05rem;
}

.quotation-meta-chip span {
    font-size: 0.78rem;
    color: var(--slate-600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quotation-form-card {
    padding: 2rem 2.25rem 2.5rem;
    background: var(--white);
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 54px rgba(var(--brand-rgb), 0.12);
}

.quotation-form-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 1.75rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.quotation-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

@media (max-width: 980px) {
    .quotation-layout {
        grid-template-columns: 1fr;
    }

    .quotation-side {
        position: static;
    }
}

.quotation-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--slate-100);
    border-radius: var(--radius-lg);
}

.form-message { margin-top: 1rem; }

.ajax-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    color: #1e40af;
}

.ajax-success i { font-size: 1.5rem; color: var(--brand-600); }

.form-error {
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    color: #991b1b;
}

/* Footer */
.site-footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col a:hover { color: var(--white); }

.footer-col address p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col address a { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal-600);
    transform: translateY(-4px);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .slide-inner--aurora {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .banner-hub {
        max-width: 260px;
        order: 0;
    }

    .banner-slogans { order: -1; }
    .banner-panel { order: 1; }

    .hub-stats {
        flex-wrap: wrap;
        justify-content: center;
        bottom: -20px;
    }

    .slide-inner--split,
    .slide-inner--editorial,
    .slide-inner--provide,
    .about-grid,
    .contact-layout { grid-template-columns: 1fr; }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .glass-pill--amber,
    .glass-pill--sky { margin-left: 0; }

    .editorial-aside { order: -1; }
    .provide-showcase { order: -1; }

    .hero-banner-footer {
        padding-bottom: 1rem;
    }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-nav { margin-left: 0; text-align: center; }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .has-dropdown.open .dropdown { display: block; }

    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .logo-img {
        height: 44px;
        max-width: 180px;
    }

    .svc-features-grid { grid-template-columns: 1fr; }
    .svc-tech-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

/* Service detail pages — unified title header (logo brand blue) */
.svc-hero {
    padding: 3rem 0 2.5rem;
    color: var(--white);
    background: linear-gradient(90deg, var(--brand-900) 0%, var(--brand-800) 42%, var(--brand-600) 100%);
}

.svc-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.svc-breadcrumb a:hover { color: var(--white); }

.svc-breadcrumb span { margin: 0 0.35rem; opacity: 0.6; }

.svc-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.svc-intro {
    max-width: 720px;
    font-size: 1.05rem;
    opacity: 0.92;
    line-height: 1.6;
}

.svc-visual-section {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background: var(--slate-100);
}

.svc-diagram {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-diagram-center {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-600), var(--blue-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.svc-diagram-node {
    position: absolute;
    width: 56px;
    height: 56px;
}

.svc-diagram-node--left { left: 8%; top: 50%; transform: translateY(-50%); }
.svc-diagram-node--right { right: 8%; top: 50%; transform: translateY(-50%); }

.svc-node-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal-500);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

.svc-features-section { background: var(--white); }

.svc-features-section--lead {
    padding-top: 4rem;
}

.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.svc-feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.svc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-500);
}

.svc-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-600), var(--blue-500));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.svc-feature-card h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.svc-feature-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.65;
}

.svc-highlights-section {
    padding: 2rem 0;
    background: var(--slate-100);
}

.svc-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.svc-highlight-tag {
    padding: 0.45rem 1rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-700);
}

/* Why Choose (SEO) */
.svc-why-choose {
    padding: 4rem 0;
    background: var(--white);
}

.svc-why-choose-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.35;
}

.svc-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.svc-why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 2px solid var(--blue-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 1.35rem;
    background: rgba(var(--brand-rgb), 0.06);
}

.svc-why-item p {
    font-size: 0.95rem;
    color: var(--slate-700);
    line-height: 1.55;
    margin: 0;
    padding-top: 0.35rem;
}

@media (max-width: 992px) {
    .svc-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .svc-why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Service detail: process lifecycle (reusable via config process_flow) */
.svc-process-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #ffffff 100%);
    border-block: 1px solid var(--slate-200);
}

.svc-process-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.svc-process-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.35rem 0.15rem;
    max-width: 1180px;
    margin: 0 auto;
}

.svc-process-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    font-size: 1rem;
    padding: 0 0.15rem;
    flex-shrink: 0;
}

.svc-process-card {
    flex: 1 1 150px;
    max-width: 200px;
    min-width: 140px;
    padding: 1.35rem 1rem 1.5rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    border-color: var(--slate-300);
}

.svc-process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.45rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.svc-process-card--navy .svc-process-icon {
    background: linear-gradient(145deg, #1d4ed8, #1e3a8a);
}

.svc-process-card--violet .svc-process-icon {
    background: linear-gradient(145deg, #8b5cf6, #6d28d9);
}

.svc-process-card--emerald .svc-process-icon {
    background: linear-gradient(145deg, var(--brand-600), var(--brand-800));
}

.svc-process-card--rose .svc-process-icon {
    background: linear-gradient(145deg, #f43f5e, #be123c);
}

.svc-process-card--sky .svc-process-icon {
    background: linear-gradient(145deg, var(--brand-400), var(--brand-700));
}

.svc-process-step-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.svc-process-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.svc-process-bullets li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8rem;
    color: var(--slate-600);
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.svc-process-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-500);
}

@media (max-width: 991px) {
    .svc-process-track {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .svc-process-chevron {
        transform: rotate(90deg);
        padding: 0.35rem 0;
    }

    .svc-process-card {
        max-width: 360px;
        width: 100%;
    }
}

/* Platform split (Android / iOS) */
.svc-platform-section {
    background: var(--white);
}

.svc-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.svc-platform-card {
    scroll-margin-top: calc(var(--header-h) + 1rem);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.svc-platform-card:hover {
    border-color: rgba(var(--brand-rgb), 0.35);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.svc-platform-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.svc-platform-brand-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.18));
    color: var(--brand-600);
    border: 1px solid rgba(var(--brand-rgb), 0.25);
}

.svc-platform-card:nth-child(2) .svc-platform-brand-icon {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.06), rgba(71, 85, 105, 0.1));
    color: var(--slate-800);
    border-color: var(--slate-200);
}

.svc-platform-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 0.25rem;
    line-height: 1.25;
}

.svc-platform-card-tag {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.svc-platform-card-body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-600);
}

@media (max-width: 900px) {
    .svc-platform-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment gateways (e.g. API Integration page) */
.svc-payment-gateways {
    background: var(--white);
    border-block: 1px solid var(--slate-200);
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.svc-payment-gateways-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin: 0 0 2.25rem;
    letter-spacing: -0.02em;
}

.svc-payment-gateways-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-payment-gateway-item {
    flex: 0 1 auto;
    min-width: min(160px, 42vw);
    min-height: 88px;
    padding: 1rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px dashed var(--slate-300);
    background: var(--slate-50);
    transition: var(--transition);
}

.svc-payment-gateway-item:hover {
    border-color: var(--brand-400);
    background: var(--white);
    box-shadow: 0 8px 28px rgba(67, 56, 202, 0.12);
}

.svc-payment-gateway-item img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

@media (max-width: 576px) {
    .svc-payment-gateway-item {
        min-width: calc(50% - 1rem);
        min-height: 76px;
        padding: 0.75rem 1rem;
    }

    .svc-payment-gateway-item img {
        max-height: 44px;
    }
}

/* Technologies — light modern grid (matches site brand, no gradient block) */
.svc-tech-section {
    background: var(--white);
    border-block: 1px solid var(--slate-200);
    text-align: center;
    padding: 4.5rem 0;
}

.svc-tech-header {
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.svc-tech-header .section-label {
    display: block;
    margin-bottom: 0.5rem;
}

.svc-tech-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
    letter-spacing: -0.02em;
}

.svc-tech-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.75rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
}

.svc-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.svc-tech-item {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 1.15rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.svc-tech-item:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: rgba(var(--brand-rgb), 0.35);
    box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.1);
}

.svc-tech-item img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(15%);
    opacity: 0.92;
    transition: filter var(--transition), opacity var(--transition);
}

.svc-tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (min-width: 768px) {
    .svc-tech-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.1rem;
    }
}

.svc-mockup-section {
    padding: 3rem 0;
    background: var(--slate-100);
}

.svc-mockup-wrap {
    text-align: center;
}

.svc-responsive-img {
    max-width: 100%;
    width: min(100%, 1100px);
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
