/* ============================================
   Fyone Global — Light + Orange Theme
   Clean • Professional • Modern
   ============================================ */

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --primary-deep: #c2410c;
    --amber: #fbbf24;
    --sky: #2563eb;
    --green: #16a34a;
    --red: #ef4444;

    --grad-main: linear-gradient(135deg, #f97316, #ea580c);
    --grad-warm: linear-gradient(135deg, #f97316, #fbbf24);
    --grad-fire: linear-gradient(135deg, #fbbf24, #f97316, #ea580c);
    --grad-cool: linear-gradient(135deg, #2563eb, #3b82f6);
    --grad-sunset: linear-gradient(135deg, #f97316, #ef4444);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));

    --bg-body: #ffffff;
    --bg-alt: #f7f8fb;
    --bg-surface: #ffffff;
    --bg-elevated: #f0f2f5;

    --text-heading: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-faint: #9ca3af;

    --border: rgba(0,0,0,0.08);
    --border-light: rgba(0,0,0,0.05);
    --border-glow: rgba(249,115,22,0.2);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-glow: 0 8px 30px rgba(249,115,22,0.12);

    --orange: #f97316;
    --orange-light: #fb923c;
    --pink: #f97316;
    --pink-light: #fb923c;
    --purple: #7c3aed;
    --purple-deep: #6d28d9;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --cyan: #0891b2;
    --magenta: #db2777;
    --yellow: #fbbf24;
    --gold: #f59e0b;
    --neon-green: #16a34a;
    --orange-hot: #ef4444;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: #fff; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-heading); }

.container { max-width: 1360px; margin: 0 auto; padding: 0 28px; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed; inset: 0;
    background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.loader-ring {
    position: absolute; inset: 0;
    border: 3px solid transparent; border-top-color: var(--primary);
    border-radius: 50%; animation: spin 0.9s linear infinite;
}
.loader-ring::before {
    content: ''; position: absolute; inset: 7px;
    border: 3px solid transparent; border-top-color: var(--amber);
    border-radius: 50%; animation: spin 0.6s linear infinite reverse;
}
.loader-ring::after {
    content: ''; position: absolute; inset: 16px;
    border: 3px solid transparent; border-top-color: var(--primary-dark);
    border-radius: 50%; animation: spin 1.2s linear infinite;
}
.loader-text {
    font-family: var(--font-mono); font-weight: 800; font-size: 13px;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.03) 0%, rgba(251,191,36,0.01) 40%, transparent 70%);
    pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
}

/* ============================================
   GLASSMORPHISM NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0 12px; transition: var(--transition);
}
.navbar.scrolled {
    padding: 12px 0 8px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-dropdown-toggle { color: #374151; }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar.scrolled .nav-dropdown-toggle:hover { color: var(--primary); }
.navbar.scrolled .logo-name { color: #111827; }
.navbar.scrolled .logo-tagline { color: var(--primary-dark); }
.navbar.scrolled .mobile-toggle span { background: #111827; }
.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
    height: 46px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    flex-shrink: 0;
    transition: filter 0.3s;
}
.logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}
.logo-name {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s;
}
.logo-tagline {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 10.5px;
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: color 0.3s;
}
.footer-logo-mark { height: 60px; }
.footer-logo-wordmark .logo-name { font-size: 24px; letter-spacing: 4px; color: #fff; }
.footer-logo-wordmark .logo-tagline { font-size: 12px; color: var(--primary); }

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
    min-width: 0;
    margin-left: 18px;
}
.nav-actions{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.nav-link {
    color: rgba(255,255,255,0.76); font-size: 14px; font-weight: 600;
    transition: var(--transition); position: relative; padding: 6px 0;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after, .nav-link:hover::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: var(--grad-main); border-radius: 1px;
}

.nav-dropdown-toggle{
    background: none;
    border: none;
    font-family: var(--font-main);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.nav-dropdown-toggle i{
    font-size: 10px;
    opacity: 0.8;
    transition: transform .25s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i{ transform: rotate(180deg); }

.nav-dropdown{ position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.mega-menu{
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    min-width: 260px;
    width: max-content;
    max-width: min(calc(100vw - 24px), 1120px);
    background: #1a1a1f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    padding: 20px 24px 22px;
    display: none;
    z-index: 1200;
}
.nav-dropdown:hover > .mega-menu,
.nav-dropdown.open > .mega-menu{ display: block; }

.mega-menu-2col,
.mega-menu-4col,
.mega-menu-5col{
    display: none;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px 26px;
}
.nav-dropdown:hover > .mega-menu-2col,
.nav-dropdown.open > .mega-menu-2col,
.nav-dropdown:hover > .mega-menu-4col,
.nav-dropdown.open > .mega-menu-4col,
.nav-dropdown:hover > .mega-menu-5col,
.nav-dropdown.open > .mega-menu-5col{ display: grid; }

.mega-menu-4col{
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    width: min(880px, calc(100vw - 48px));
    min-width: min(880px, calc(100vw - 48px));
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 64px !important;
}
.mega-menu-5col{
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    width: min(860px, calc(100vw - 48px));
    min-width: min(860px, calc(100vw - 48px));
}
.mega-menu-industries{
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    width: min(820px, calc(100vw - 48px));
    min-width: min(820px, calc(100vw - 48px));
    gap: 14px 22px;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 64px !important;
}
.mega-menu-industries .mega-col{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mega-menu-industries .mega-col a{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    padding: 7px 0;
    font-size: 13.5px;
}
.mega-menu-industries .mega-col a i{
    width: 16px;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.mega-menu-simple{
    display: none;
    min-width: min(360px, calc(100vw - 48px));
    padding: 20px 28px;
}
.nav-dropdown:hover > .mega-menu-simple,
.nav-dropdown.open > .mega-menu-simple{ display: block; }

.mega-menu-product a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.mega-menu-product a i{
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.mega-col h4{
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 800;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.mega-menu a{
    display: block;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    padding: 6px 0;
    transition: var(--transition);
}
.mega-menu a:hover{ color: #f59e0b; transform: none; }

.nav-btn-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: var(--grad-main); color: #fff;
    border-radius: var(--radius-xl); font-size: 12px; font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(249,115,22,0.3);
    white-space: nowrap; flex-shrink: 0;
}
.nav-btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(249,115,22,0.5);
}
.nav-btn-ai{
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 12.5px; font-weight: 700;
    white-space: nowrap;
    color: #fff;
    border: 1.5px solid transparent;
    background:
        linear-gradient(rgba(8,12,26,0.82), rgba(8,12,26,0.82)) padding-box,
        linear-gradient(100deg, #3b82f6 0%, #7c3aed 45%, #f97316 100%) border-box;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 8px 28px rgba(15,23,42,0.35);
    transition: var(--transition);
}
.nav-btn-ai:hover{
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(99,102,241,0.35), 0 10px 34px rgba(59,130,246,0.22);
}
.ai-popout{
    position: relative;
}
.ai-popout-menu{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    background: linear-gradient(180deg, #232327 0%, #1a1a1f 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.52);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.ai-popout.open .ai-popout-menu,
.ai-popout:hover .ai-popout-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ai-popout-menu h4{
    margin: 0 0 10px;
    color: #f59e0b;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.22);
}
.ai-popout-menu h4 i{
    font-size: 18px;
}
.ai-popout-menu a{
    display: block;
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 4px 0;
}
.ai-popout-menu a:hover{
    color: #f59e0b;
}
.navbar.scrolled .nav-btn-ai{
    color: #111827;
    background:
        linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)) padding-box,
        linear-gradient(100deg, #3b82f6 0%, #8b5cf6 45%, #f97316 100%) border-box;
    box-shadow: 0 0 0 1px rgba(148,163,184,0.24), 0 6px 20px rgba(15,23,42,0.12);
}

.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.mobile-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px; border-radius: var(--radius-xl);
    font-size: 15px; font-weight: 700; cursor: pointer; border: none;
    font-family: var(--font-main); transition: var(--transition); text-decoration: none;
}
.btn-primary {
    background: var(--grad-main); color: #fff;
    box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 48px rgba(249,115,22,0.5), 0 0 80px rgba(249,115,22,0.15);
}
.btn-secondary {
    background: var(--grad-cool); color: #fff;
    box-shadow: 0 4px 24px rgba(56,189,248,0.2);
}
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 48px rgba(56,189,248,0.35);
}
.btn-outline {
    background: rgba(255,255,255,0.8); color: var(--text-heading);
    border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.btn-ghost { background: var(--bg-alt); color: var(--text-heading); border: 1px solid var(--border); }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-lg { padding: 18px 44px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION SHARED
   ============================================ */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--bg-alt); }
.section-surface { background: var(--bg-body); }
.section-deep { background: var(--bg-alt); }
.section-gradient {
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 50%, #fff 100%);
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 16px;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title {
    font-size: clamp(32px, 4.5vw, 52px); font-weight: 900;
    line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 18px;
}
.section-desc { font-size: 17px; color: var(--text-muted); line-height: 1.8; }

.grad-text {
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-cyan {
    background: var(--grad-cool);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-warm {
    background: var(--grad-warm);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Page hero for sub-pages */
.page-hero {
    padding: 160px 0 80px; position: relative; overflow: hidden; text-align: center;
    background: #0a0a0a; color: #fff;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(249,115,22,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(251,191,36,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-xl); font-size: 13px; font-weight: 600;
    color: var(--primary-light); margin-bottom: 24px;
}
.page-hero h1 {
    font-size: clamp(40px, 5.5vw, 68px); font-weight: 900;
    line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px; color: #fff;
}
.page-hero p { font-size: 18px; color: #a3a3a3; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: var(--transition); position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.icon-box {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); font-size: 24px;
    margin-bottom: 20px; transition: var(--transition);
}
.icon-box-cyan {
    background: rgba(37,99,235,0.08); color: var(--sky);
    border: 1px solid rgba(37,99,235,0.15);
}
.icon-box-orange {
    background: rgba(249,115,22,0.08); color: var(--primary);
    border: 1px solid rgba(249,115,22,0.15);
}
.icon-box-magenta {
    background: rgba(219,39,119,0.08); color: var(--magenta);
    border: 1px solid rgba(219,39,119,0.15);
}
.icon-box-green {
    background: rgba(22,163,74,0.08); color: var(--green);
    border: 1px solid rgba(22,163,74,0.15);
}

/* ============================================
   HERO SECTION — Split Layout
   ============================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
    padding: 120px 0 40px;
    background: #000;
    color: #fff;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter: saturate(1.05) contrast(1.05) brightness(0.55);
    transform: scale(1.02);
}

.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(251,191,36,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(249,115,22,0.03) 0%, transparent 50%);
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-particle {
    position: absolute; border-radius: 50%; opacity: 0;
    animation: float-particle 10s infinite;
}
@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* Split layout */
.hero-split {
    position: relative; z-index: 5;
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 40px; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 0 60px;
}

.hero-text { max-width: 690px; width: 100%; padding-left: 10px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px;
    background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-xl); font-size: 13px; font-weight: 600;
    color: var(--primary-light); margin-bottom: 32px;
}
.badge-dot {
    width: 8px; height: 8px; background: var(--green); border-radius: 50%;
    animation: pulse-dot 2s infinite; box-shadow: 0 0 8px var(--green);
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(34px, 4.2vw, 56px); font-weight: 900;
    line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px;
    color: #fff;
}
.hero-title .text-accent {
    color: var(--primary);
}
.hero-typed-wrap{
    display:inline-flex;
    align-items:baseline;
    min-width: 360px;
}
.hero-expertise-line{
    display:block;
}
.hero-typed-text{
    display:inline-block;
    white-space:nowrap;
}
.hero-typed-cursor{
    display:inline-block;
    width: 3px;
    height: 0.92em;
    margin-left: 7px;
    border-radius: 2px;
    background: #fb923c;
    box-shadow: 0 0 14px rgba(249,115,22,0.45);
    animation: hero-caret-blink 0.9s steps(1) infinite;
    transform: translateY(2px);
}
@keyframes hero-caret-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 16px; color: #a3a3a3;
    max-width: 620px; line-height: 1.8; margin-bottom: 36px;
}

.hero-actions {
    display: flex; gap: 14px; flex-wrap: nowrap; margin-bottom: 0;
    align-items: center;
}

/* Client logos below hero split */
.hero-clients {
    position: relative; z-index: 5;
    margin-top: 56px; padding: 0 60px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
.hero-clients-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: #666; margin-bottom: 18px;
}
.hero-clients-row {
    display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.hero-client {
    font-size: 15px; font-weight: 700; color: #666;
    display: flex; align-items: center; gap: 8px;
    opacity: 0.4; transition: var(--transition);
}
.hero-client:hover { opacity: 1; color: #e5e5e5; }
.hero-client i { font-size: 20px; }

/* ============================================
   HERO VISUAL — CSS Illustration
   ============================================ */
.hero-visual {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background glow */
.vis-glow {
    position: absolute;
    top: 40%; left: 35%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, rgba(249,115,22,0.02) 40%, transparent 70%);
    pointer-events: none;
    animation: vis-glow-pulse 4s ease-in-out infinite;
}
@keyframes vis-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Central hub — positioned upper-left area */
.vis-hub {
    position: absolute;
    top: 28%; left: 30%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(249,115,22,0.06);
    border: 1px solid rgba(249,115,22,0.15);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
}
.vis-hub i {
    font-size: 38px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(249,115,22,0.5));
}
.vis-hub-ring {
    position: absolute; inset: -16px;
    border: 1px solid rgba(249,115,22,0.12);
    border-radius: 50%;
    animation: hub-ring-pulse 3s ease-in-out infinite;
}
.vis-hub-ring::before {
    content: ''; position: absolute; inset: -12px;
    border: 1px dashed rgba(249,115,22,0.08);
    border-radius: 50%;
    animation: spin 25s linear infinite;
}
@keyframes hub-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Orbital ring with dots */
.vis-orbit {
    position: absolute;
    top: 28%; left: 30%;
    width: 260px; height: 260px;
    margin-top: -130px; margin-left: -130px;
    border: 1px dashed rgba(249,115,22,0.08);
    border-radius: 50%;
    animation: spin 30s linear infinite;
    z-index: 2;
}
.orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(249,115,22,0.5);
}
.orbit-dot-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-dot-2 { bottom: 15%; right: 0; transform: translate(50%, 50%); }
.orbit-dot-3 { bottom: 15%; left: 0; transform: translate(-50%, 50%); }

/* Shared floating card styles */
.vis-card {
    position: absolute;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 18px;
    z-index: 4;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.vis-card-dots {
    display: flex; gap: 5px; margin-bottom: 12px;
}
.vis-card-dots span {
    width: 7px; height: 7px; border-radius: 50%;
}
.vis-card-dots span:nth-child(1) { background: #ef4444; }
.vis-card-dots span:nth-child(2) { background: #fbbf24; }
.vis-card-dots span:nth-child(3) { background: #22c55e; }

.vis-card-title {
    font-size: 11px; font-weight: 700; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}

/* Dashboard card — top right, spread out */
.vis-card-dashboard {
    top: 0; right: -10px;
    width: 210px;
    animation: vis-float 6s ease-in-out infinite;
}
.vis-bars {
    display: flex; align-items: flex-end; gap: 6px; height: 70px;
}
.vis-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: var(--grad-main);
    height: var(--h);
    opacity: 0.85;
    animation: vis-bar-grow 2s ease-out forwards;
    transform-origin: bottom;
}
.vis-bar:nth-child(even) {
    background: rgba(249,115,22,0.4);
}
@keyframes vis-bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Code card — left side, mid */
.vis-card-code {
    bottom: 28%; left: -20px;
    max-width: 270px;
    animation: vis-float 7s ease-in-out -2s infinite;
}
.vis-card-code code {
    font-family: var(--font-mono);
    font-size: 11px; line-height: 1.8;
    color: var(--text-mid);
    display: block;
}
.c-kw { color: #c084fc; }
.c-fn { color: #38bdf8; }
.c-str { color: #4ade80; }
.c-key { color: #38bdf8; }
.c-num { color: #fb923c; }

/* Stats card — bottom center-left */
.vis-card-stats {
    bottom: 5%; left: 10%;
    display: flex; gap: 24px;
    animation: vis-float 5s ease-in-out -1s infinite;
}
.vis-mini-stat {
    text-align: center;
}
.vis-mini-stat strong {
    display: block; font-size: 20px; font-weight: 900;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vis-mini-stat span {
    font-size: 10px; color: var(--text-dim); text-transform: uppercase;
    letter-spacing: 1px; font-weight: 600;
}

/* Response card — upper left */
.vis-card-response {
    top: 5%; left: 0;
    max-width: 175px;
    animation: vis-float 8s ease-in-out -3s infinite;
}
.vis-card-response code {
    font-family: var(--font-mono);
    font-size: 11px; line-height: 1.7;
    color: var(--text-dim);
    display: block;
}

/* Extra floating icon elements */
.vis-float-icon {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--primary);
    z-index: 4;
}
.vis-float-icon-1 {
    top: 18%; right: 0;
    animation: vis-float 5.5s ease-in-out -0.5s infinite;
}
.vis-float-icon-2 {
    bottom: 18%; left: 30%;
    animation: vis-float 6.5s ease-in-out -4s infinite;
}

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

/* Small decorative dots */
.vis-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    z-index: 1;
}
.vis-dot-1 { width: 4px; height: 4px; top: 15%; left: 15%; opacity: 0.3; animation: vis-float 4s ease-in-out infinite; }
.vis-dot-2 { width: 6px; height: 6px; top: 70%; right: 5%; opacity: 0.2; animation: vis-float 5s ease-in-out -1s infinite; }
.vis-dot-3 { width: 3px; height: 3px; bottom: 40%; left: 50%; opacity: 0.4; animation: vis-float 3.5s ease-in-out -2s infinite; }
.vis-dot-4 { width: 5px; height: 5px; top: 50%; right: 40%; opacity: 0.2; animation: vis-float 6s ease-in-out -0.5s infinite; }

/* ============================================
   CLIENTS MARQUEE
   ============================================ */
.clients-bar {
    padding: 44px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-alt); overflow: hidden;
}
.clients-label {
    text-align: center; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px; color: var(--text-faint); margin-bottom: 24px;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-inner { display: flex; gap: 64px; animation: marquee 35s linear infinite; width: max-content; }
.client-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 600; color: var(--text-faint);
    white-space: nowrap; opacity: 0.6; transition: var(--transition);
}
.client-logo:hover { opacity: 1; color: var(--primary); }
.client-logo i { font-size: 26px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    position: relative; padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-main); transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
    border-color: rgba(249,115,22,0.15);
    background: linear-gradient(135deg, rgba(249,115,22,0.03), rgba(251,191,36,0.02));
}
.service-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 5px 14px; background: var(--grad-main); color: #fff;
    font-size: 11px; font-weight: 800; border-radius: var(--radius-xl);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.service-card .icon-box { margin-bottom: 24px; }
.service-card:hover .icon-box {
    background: var(--grad-main); color: #fff; border-color: transparent;
    box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text-heading); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700; transition: var(--transition);
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-link i { -webkit-text-fill-color: var(--primary); transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
    padding: 32px 24px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.stat-card:hover {
    transform: translateY(-4px); border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}
.stat-card .stat-icon { font-size: 28px; margin-bottom: 14px; }
.stat-card .stat-number { font-size: 36px; font-weight: 900; margin-bottom: 6px; letter-spacing: -1px; color: var(--text-heading); }
.stat-card .stat-label {
    font-size: 11px; color: var(--text-faint); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* ============================================
   HOME — VALUE / MODELS / ARTICLES / PREVIEW
   ============================================ */
.value-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value-card h3{ font-size: 18px; font-weight: 900; margin-bottom: 10px; color: var(--text-heading); }
.value-card p{ font-size: 14px; color: var(--text-muted); line-height: 1.75; }

.models-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.model-card h3{ font-size: 18px; font-weight: 900; margin-bottom: 10px; color: var(--text-heading); }
.model-card p{ font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.model-list{ list-style:none; display:flex; flex-direction:column; gap: 10px; }
.model-list li{ display:flex; align-items:center; gap:10px; font-size: 13px; color: var(--text-body); }
.model-list i{ color: var(--green); }

.testimonials-preview{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.articles-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.article-card{
    display:block;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.article-card:hover{
    transform: translateY(-6px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.article-meta{
    display:flex; gap: 10px; align-items:center;
    margin-bottom: 12px;
}
.article-meta span{
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-faint);
    padding: 6px 10px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: 999px;
}
.article-card h3{ font-size: 18px; font-weight: 900; line-height: 1.25; margin-bottom: 10px; color: var(--text-heading); }
.article-card p{ font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text-block p { font-size: 16px; color: var(--text-body); margin-bottom: 18px; line-height: 1.85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 36px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.about-feature i { color: var(--green); font-size: 16px; }

/* ===== About — Full-bleed Hero ===== */
.about-hero {
    position: relative;
    padding: 160px 0 80px;
    background: #fff;
    overflow: hidden;
    text-align: center;
    color: #111827;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(249,115,22,0.06), transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(59,130,246,0.04), transparent 50%);
    pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.about-hero-label {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f97316;
    background: rgba(249,115,22,0.06);
    margin-bottom: 28px;
}
.about-hero-h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111827;
    margin: 0 0 22px;
}
.about-hero-accent {
    background: linear-gradient(105deg, #fb923c, #f97316, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.about-hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
}
.about-hero-nums {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.about-hero-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.about-hero-num strong {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}
.about-hero-num span {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
@media (max-width: 768px) {
    .about-hero { padding: 130px 0 60px; }
    .about-hero-nums { gap: 24px; }
}
@media (max-width: 480px) {
    .about-hero-nums { gap: 16px; }
    .about-hero-num strong { font-size: 28px; }
}

/* ===== About — Journey Vertical Zigzag Timeline ===== */
.jrny { background: #f9fafb; padding-top: 90px; padding-bottom: 90px; }
.jrny-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.jrny-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f97316, #fdba74 50%, rgba(249,115,22,0.15));
    border-radius: 3px;
    transform: translateX(-50%);
}
.jrny-block {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}
.jrny-left  { margin-right: auto; text-align: right; padding-left: 0; }
.jrny-right { margin-left: auto;  text-align: left;  padding-right: 0; }

.jrny-dot {
    position: absolute;
    top: 4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 0 0 6px #f9fafb, 0 0 0 9px rgba(249,115,22,0.25), 0 8px 24px rgba(249,115,22,0.2);
    z-index: 2;
}
.jrny-left .jrny-dot  { right: -24px; }
.jrny-right .jrny-dot { left: -24px; }

.jrny-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jrny-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249,115,22,0.1), 0 4px 12px rgba(0,0,0,0.06);
}
.jrny-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f97316;
    background: rgba(249,115,22,0.08);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.jrny-heading {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.3;
}
.jrny-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.jrny-current .jrny-card {
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    border-color: rgba(249,115,22,0.3);
    color: #fff;
}
.jrny-current .jrny-heading { color: #fff; }
.jrny-current .jrny-desc { color: rgba(209,213,219,0.85); }
.jrny-current .jrny-year {
    background: rgba(249,115,22,0.2);
    color: #fdba74;
}
.jrny-current .jrny-dot {
    width: 56px;
    height: 56px;
    font-size: 22px;
    box-shadow: 0 0 0 6px #f9fafb, 0 0 0 10px rgba(249,115,22,0.35), 0 8px 32px rgba(249,115,22,0.3);
    animation: jrny-pulse 2s ease-in-out infinite;
}
@keyframes jrny-pulse {
    0%, 100% { box-shadow: 0 0 0 6px #f9fafb, 0 0 0 10px rgba(249,115,22,0.35), 0 8px 32px rgba(249,115,22,0.3); }
    50% { box-shadow: 0 0 0 6px #f9fafb, 0 0 0 14px rgba(249,115,22,0.2), 0 8px 48px rgba(249,115,22,0.4); }
}
@media (prefers-reduced-motion: reduce) {
    .jrny-current .jrny-dot { animation: none; }
}

@media (max-width: 768px) {
    .jrny-line { left: 24px; }
    .jrny-block { width: 100%; padding: 0 0 40px 64px; text-align: left; }
    .jrny-left { margin-right: 0; }
    .jrny-right { margin-left: 0; }
    .jrny-left .jrny-dot,
    .jrny-right .jrny-dot { left: 0; right: auto; }
    .jrny-card { padding: 24px; }
}
@media (max-width: 480px) {
    .jrny { padding-top: 64px; padding-bottom: 64px; }
    .jrny-line { left: 20px; }
    .jrny-block { padding-left: 52px; padding-bottom: 32px; }
    .jrny-heading { font-size: 17px; }
    .jrny-desc { font-size: 14px; }
}

/* ===== About — Image block beside story ===== */
.about-image-block { position: relative; }
.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.about-img-badge i { margin-right: 8px; }

/* ===== About — Values grid ===== */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.about-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(249,115,22,0.08), 0 4px 12px rgba(0,0,0,0.05);
}
.about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #f97316;
}
.about-value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.about-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}
@media (max-width: 1024px) { .about-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-values-grid { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.2); box-shadow: var(--shadow-md), var(--shadow-glow); }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: #fff; margin: 0 auto 16px;
}
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-heading); }
.team-card span { font-size: 13px; color: var(--text-faint); }

.process-timeline { max-width: 820px; margin: 0 auto; }
.process-step {
    display: flex; align-items: flex-start; gap: 28px; padding: 36px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.process-step:hover { border-color: rgba(249,115,22,0.2); transform: translateX(8px); box-shadow: var(--shadow-md), var(--shadow-glow); }
.process-number {
    font-size: 52px; font-weight: 900; line-height: 1; min-width: 70px;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.process-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text-heading); }
.process-content p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.process-icon { margin-left: auto; font-size: 32px; color: var(--primary); opacity: 0.4; }
.process-connector {
    width: 3px; height: 36px; margin: 0 auto;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark), transparent);
    border-radius: 2px;
}

/* ============================================
   TECH TABS
   ============================================ */
.tech-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 52px; flex-wrap: wrap; }
.tech-tab {
    padding: 11px 26px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-xl); color: var(--text-muted);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: var(--transition); font-family: var(--font-main);
}
.tech-tab:hover { border-color: rgba(249,115,22,0.3); color: var(--primary); }
.tech-tab.active {
    background: var(--grad-main); border-color: transparent; color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

.tech-panel { display: none; animation: fadeIn 0.4s ease; }
.tech-panel.active { display: block; }

.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.tech-item {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 30px 18px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); transition: var(--transition);
    cursor: default; box-shadow: var(--shadow-sm);
}
.tech-item:hover {
    transform: translateY(-5px); border-color: rgba(249,115,22,0.25);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}
.tech-item i { font-size: 36px; color: var(--primary); }
.tech-item span { font-size: 13px; font-weight: 700; color: var(--text-heading); }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.industry-card {
    padding: 36px 24px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.industry-card:hover {
    transform: translateY(-8px); border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.industry-card:hover .icon-box { transform: scale(1.1); box-shadow: 0 4px 16px rgba(249,115,22,0.2); }
.industry-card .icon-box { margin: 0 auto 18px; }
.industry-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--text-heading); }
.industry-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.portfolio-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.2); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.portfolio-image { position: relative; height: 240px; overflow: hidden; }
.portfolio-visual {
    height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; padding: 28px;
}
.portfolio-visual i { font-size: 52px; opacity: 0.3; }
.portfolio-visual .code-lines { font-family: var(--font-mono); font-size: 12px; line-height: 2; text-align: left; opacity: 0.7; }
.portfolio-visual .code-lines span { display: block; }
.portfolio-overlay { position: absolute; top: 16px; left: 16px; z-index: 2; }
.portfolio-cat {
    padding: 5px 14px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
    border-radius: var(--radius-xl); font-size: 11px; font-weight: 700;
    color: #fff; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
}
.portfolio-info { padding: 28px; }
.portfolio-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text-heading); }
.portfolio-info > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.portfolio-tech { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.portfolio-tech span {
    padding: 5px 12px;
    background: rgba(249,115,22,0.08); color: var(--primary);
    border-radius: var(--radius-sm); font-size: 11px; font-weight: 700;
    border: 1px solid rgba(249,115,22,0.15);
}
.portfolio-metrics {
    display: flex; gap: 28px; padding-top: 18px;
    border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint);
}
.portfolio-metrics strong { color: var(--text-heading); font-weight: 800; }

.vis-cyan { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: var(--sky); }
.vis-magenta { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: var(--primary); }
.vis-orange { background: linear-gradient(135deg, #fffbeb, #fef3c7); color: var(--amber); }
.vis-green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: var(--green); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 48px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #f59e0b; font-size: 18px; }
.testimonial-card > p { font-size: 17px; color: var(--text-body); line-height: 1.85; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: #fff;
}
.testimonial-author strong { display: block; font-size: 16px; margin-bottom: 2px; color: var(--text-heading); }
.testimonial-author span { font-size: 13px; color: var(--text-faint); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.testimonial-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1px solid var(--border);
    color: var(--text-heading); cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    box-shadow: var(--shadow-sm);
}
.testimonial-btn:hover { background: var(--grad-main); border-color: transparent; color: #fff; box-shadow: var(--shadow-glow); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(0,0,0,0.12); cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--primary); width: 30px; border-radius: 5px;
    box-shadow: 0 0 12px var(--primary);
}
@media (min-width: 768px) {
    .testimonial-track { gap: 24px; }
    .testimonial-card { min-width: calc(50% - 12px); }
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; transition: var(--transition);
    background: #fff; box-shadow: var(--shadow-sm);
}
.faq-item.active { border-color: rgba(249,115,22,0.2); box-shadow: var(--shadow-md), var(--shadow-glow); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 28px;
    background: #fff; border: none;
    color: var(--text-heading); font-size: 16px; font-weight: 700; cursor: pointer;
    text-align: left; transition: var(--transition); font-family: var(--font-main);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question i { font-size: 14px; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--amber); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 28px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.85; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 18px; }
.contact-detail:has(span br) { align-items: flex-start; }
.contact-detail:has(span br) .contact-detail-icon { margin-top: 4px; }
.contact-map-section {
    padding: 56px 0 0;
    line-height: 0;
}
.contact-map-section .section-header { margin-bottom: 32px; }
.contact-map-section iframe {
    width: 100%;
    height: 480px;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .contact-map-section { padding: 40px 0 0; }
    .contact-map-section iframe { height: 360px; }
}
.contact-detail-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); font-size: 20px; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 14px; margin-bottom: 2px; color: var(--text-heading); }
.contact-detail span { font-size: 14px; color: var(--text-muted); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-muted); font-size: 20px;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact-social a:hover { background: var(--grad-main); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }

.contact-form-wrapper {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 44px;
    box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 18px;
    background: #fff; border: 1px solid #ddd;
    border-radius: var(--radius-sm); color: var(--text-heading); font-size: 14px;
    font-family: var(--font-main); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #fff; color: var(--text-heading); }
.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='12' fill='%23a3a3a3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-note {
    font-size: 12px; color: var(--text-faint); text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}
.form-note i { color: var(--green); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { position: relative; padding: 110px 0; overflow: hidden; background: #0a0a0a; color: #fff; }
.cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(251,191,36,0.05) 0%, transparent 60%);
}
.cta-bg::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(249,115,22,0.02), transparent, rgba(251,191,36,0.01), transparent);
    animation: rotate-bg 20s linear infinite;
}
@keyframes rotate-bg { to { transform: rotate(360deg); } }
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; z-index: 2; }
.cta-content h2 {
    font-size: clamp(30px, 4.5vw, 48px); font-weight: 900;
    line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 18px; color: #fff;
}
.cta-content > p { font-size: 17px; color: #a3a3a3; margin-bottom: 36px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-info { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.cta-info-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; }
.cta-info-item i { color: var(--green); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative; background: #0a0a0a; color: #e5e5e5;
    border-top: none; padding: 72px 0 28px; overflow: hidden;
}
.footer-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 2px; background: var(--grad-main); filter: blur(1px); opacity: 0.6;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 52px; }
.footer-brand p { font-size: 14px; color: #888; margin: 18px 0 28px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); color: #888; font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: var(--grad-main); color: #fff; border-color: transparent; }

.footer-links h4 {
    font-size: 13px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 18px; color: #fff;
}
.footer-links a { display: block; font-size: 14px; color: #888; padding: 5px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 6px; }

.footer-newsletter h4 {
    font-size: 13px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 12px; color: #fff;
}
.footer-newsletter > p { font-size: 13px; color: #888; margin-bottom: 16px; }
.footer-contact-mini{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
}
.footer-contact-mini i{ color: #f59e0b; width: 14px; }
.newsletter-form { display: flex; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-form input {
    flex: 1; padding: 10px 14px;
    background: rgba(255,255,255,0.05); border: none;
    color: #fff; font-size: 13px; font-family: var(--font-main); outline: none;
}
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
    padding: 10px 16px; background: var(--grad-main);
    border: none; color: #fff; cursor: pointer; font-size: 14px; transition: var(--transition);
}
.newsletter-form button:hover { opacity: 0.85; }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: #666; }
.footer-badges { display: flex; gap: 22px; }
.footer-badges span {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #666; font-weight: 500;
}
.footer-badges span i { color: var(--green); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 50px; height: 50px;
    background: var(--grad-main); border: none; border-radius: 50%;
    color: #fff; font-size: 18px; cursor: pointer; z-index: 100;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(249,115,22,0.4);
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 48px rgba(249,115,22,0.5); }

/* Cookie consent */
.cookie-banner{
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(420px, calc(100vw - 28px));
    background: #111827;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    padding: 16px 16px 14px;
    z-index: 1400;
}
.cookie-banner p{
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
}
.cookie-accept-btn{
    border: 0;
    background: var(--grad-main);
    color: #fff;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}
.cookie-accept-btn:hover{ filter: brightness(1.06); }

/* ============================================
   AI READY — SIDE TAB + MODAL
   ============================================ */
.ai-ready-tab{
    position: fixed;
    top: 58%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    padding: 18px 16px;
    border: none;
    border-right: none;
    background: var(--grad-main);
    color: #fff;
    border-radius: 14px 0 0 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(249,115,22,0.3);
}
.ai-ready-tab:hover{
    transform: translateY(-50%) translateX(-3px);
    box-shadow: 0 10px 36px rgba(249,115,22,0.4);
}
.ai-ready-tab-text{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ai-ready-modal{
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
}
.ai-ready-modal.open{ display: block; }
.ai-ready-backdrop{
    position:absolute; inset:0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}
.ai-ready-dialog{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(1020px, calc(100vw - 44px));
    max-height: min(620px, calc(100vh - 44px));
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
}
.ai-ready-close{
    position:absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: #666;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.ai-ready-close:hover{
    background: var(--bg-alt);
    color: var(--primary);
}

.ai-ready-left{
    position: relative;
    background: linear-gradient(145deg, #1a1008 0%, #0a0a0a 100%);
    overflow: hidden;
    color: #fff;
}
.ai-ready-left::before{
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(249,115,22,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(37,99,235,0.08) 0%, transparent 55%);
    pointer-events: none;
}
.ai-ready-left-inner{
    position: relative;
    padding: 40px 36px;
    height: 100%;
    display:flex;
    flex-direction: column;
    gap: 16px;
}
.ai-ready-left h3{
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
}
.ai-ready-points{ display:flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.ai-ready-point-title{
    display:flex; align-items:center; gap: 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
}
.ai-ready-point-title i{ color: var(--primary); font-size: 14px; }
.ai-ready-point p{ margin-top: 5px; font-size: 13px; color: #a3a3a3; line-height: 1.7; }

.ai-ready-visual{
    margin-top: auto;
    height: 160px;
    position: relative;
}
.ai-orb{
    position:absolute;
    left: 20px; bottom: -20px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(249,115,22,0.2), rgba(249,115,22,0.06) 50%, transparent 70%);
}
.ai-lines span{
    position:absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.15), transparent);
    opacity: 0.5;
}
.ai-lines span:nth-child(1){ bottom: 20px; }
.ai-lines span:nth-child(2){ bottom: 60px; }
.ai-lines span:nth-child(3){ bottom: 100px; }

.ai-ready-right{
    padding: 40px 36px;
    overflow: auto;
    background: #fff;
}
.ai-ready-right h3{ font-size: 22px; font-weight: 900; margin-bottom: 8px; color: var(--primary); }
.ai-ready-right p{ color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.ai-ready-form .form-group input,
.ai-ready-form .form-group textarea{
    width: 100%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: var(--text-heading);
}
.ai-ready-form .form-group input:focus,
.ai-ready-form .form-group textarea:focus{
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.ai-ready-form .form-group input::placeholder,
.ai-ready-form .form-group textarea::placeholder{ color: #aaa; }
.ai-ready-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.ai-ready-check{
    display:flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.ai-ready-check input{ margin-top: 3px; accent-color: var(--primary); }
.ai-ready-trust{
    margin-top: 14px;
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--text-faint);
    font-size: 12px;
}
.ai-ready-trust span{ display:flex; align-items:center; gap: 7px; }
.ai-ready-trust i{ color: var(--primary); }

@media (max-width: 900px){
    .ai-ready-dialog{
        grid-template-columns: 1fr;
        max-height: min(720px, calc(100vh - 44px));
    }
    .ai-ready-left{ display:none; }
    .ai-ready-grid{ grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.detail-hero {
    position: relative;
    padding: 130px 0 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1008 50%, #0a0a0a 100%);
}
.detail-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(249,115,22,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(56,189,248,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.detail-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}
.detail-hero-left { position: relative; z-index: 2; }
.detail-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.detail-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}
.detail-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 560px;
}
.detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    margin-bottom: 40px;
}
.detail-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.detail-point i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.detail-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.detail-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.detail-trust-item strong {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
.detail-trust-item span {
    font-size: 13px;
    color: var(--orange);
}
.detail-trust-item i {
    font-size: 11px;
}

.detail-hero-right { position: relative; z-index: 2; }
.detail-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.detail-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
    text-align: center;
}
.detail-form-sub {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}
.detail-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.detail-form input,
.detail-form textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #222;
    transition: border-color 0.2s;
    outline: none;
}
.detail-form input:focus,
.detail-form textarea:focus {
    border-color: var(--orange);
}
.detail-form input::placeholder,
.detail-form textarea::placeholder {
    color: #999;
}
.detail-form textarea {
    margin-bottom: 12px;
    resize: vertical;
}
.detail-nda {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    cursor: pointer;
}
.detail-nda input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
    flex-shrink: 0;
}
.detail-submit {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-main);
    color: #fff;
    background: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    text-align: center;
}
.detail-submit:hover {
    background: var(--orange);
    transform: translateY(-1px);
}
.detail-form-privacy {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 12px;
}
.detail-form-privacy a {
    color: var(--orange);
    text-decoration: underline;
}

.service-seo-wrap{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 34px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.service-seo-title{
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 18px;
    line-height: 1.2;
}
.service-seo-content p{
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 16px;
}
.service-seo-content h3{
    font-size: 21px;
    font-weight: 700;
    color: #111827;
    margin: 20px 0 12px;
}
.service-seo-content ul{
    margin: 0 0 16px 22px;
    padding: 0;
}
.service-seo-content li{
    margin-bottom: 8px;
    color: #374151;
    line-height: 1.6;
}

/* ============================================
   HERO B — Image on Left
   ============================================ */
.hero-image{
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fff7ed 0%, #fff 50%, #f0f9ff 100%);
    overflow: hidden;
}
.hero-image-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-image-content{ order: -1; }
.hero-image-visual{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.hero-image-visual img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.hero-image-badge{
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hero-image-badge i{ color: #22c55e; font-size: 16px; }
.hero-image-content .detail-category{
    color: #f97316;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.hero-image-content .detail-title{
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-image-content .detail-desc{
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}
.hero-image-content .detail-points{
    margin-bottom: 28px;
}
.hero-image-content .detail-point{
    color: #374151;
}
.hero-image-content .detail-point i{
    color: #f97316;
}
.hero-image-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-image-actions .btn-outline{
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
}
.hero-image-actions .btn-outline:hover{
    border-color: #f97316;
    color: #f97316;
}

/* ============================================
   HERO C — Full Banner
   ============================================ */
.hero-banner{
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 0;
    overflow: hidden;
}
.hero-banner-bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #111827;
}
.hero-banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.82) 100%);
}
.hero-banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 48px;
}
.hero-banner-cat{
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: #fb923c;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-banner-title{
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.hero-banner-desc{
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-banner-actions{
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-light{
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
}
.btn-outline-light:hover{
    border-color: #f97316;
    background: rgba(249,115,22,0.1);
    color: #fb923c;
}
.hero-banner-stats{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.hero-banner-stats-row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-banner-stat{ text-align: center; }
.hero-banner-stat strong{
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-banner-stat span{
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Zigzag (alternating image + text rows)
   ============================================ */
.svc-zigzag-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}
.svc-zigzag-row:last-child{ margin-bottom: 0; }
.svc-zigzag-row.reverse .svc-zigzag-img{ order: 2; }
.svc-zigzag-row.reverse .svc-zigzag-text{ order: 1; }
.svc-zigzag-img{
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.svc-zigzag-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.svc-zigzag-text h3{
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}
.svc-zigzag-text p{
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 16px;
}
.svc-zigzag-bullets{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.svc-zigzag-bullets li{
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-zigzag-bullets li i{
    color: #f97316;
    font-size: 11px;
}

/* ============================================
   Inline Contact Form Section
   ============================================ */
.svc-inline-form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.svc-inline-form-text .section-title-lg{
    margin-bottom: 14px;
}
.svc-inline-form-text .section-subtitle{
    text-align: left;
    margin-bottom: 24px;
}
.svc-inline-perks{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.svc-inline-perk{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.svc-inline-perk i{
    color: #f97316;
    font-size: 18px;
}
.svc-inline-form-card{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ============================================
   Layout-specific section style overrides
   ============================================ */
/* Layout-image: navbar needs dark text on light hero */
body.layout-image .navbar .nav-link,
body.layout-image .navbar .nav-dropdown-toggle,
body.page-light-hero .navbar .nav-link,
body.page-light-hero .navbar .nav-dropdown-toggle{ color: #374151; }
body.layout-image .navbar .nav-link:hover,
body.layout-image .navbar .nav-link.active,
body.layout-image .navbar .nav-dropdown-toggle:hover,
body.page-light-hero .navbar .nav-link:hover,
body.page-light-hero .navbar .nav-link.active,
body.page-light-hero .navbar .nav-dropdown-toggle:hover{ color: var(--primary); }
body.layout-image .navbar .logo-name,
body.page-light-hero .navbar .logo-name{ color: #111827; }
body.layout-image .navbar .logo-tagline,
body.page-light-hero .navbar .logo-tagline{ color: var(--primary-dark); }
body.layout-image .navbar .mobile-toggle span,
body.page-light-hero .navbar .mobile-toggle span{ background: #111827; }
body.layout-image .navbar .nav-btn-ai,
body.page-light-hero .navbar .nav-btn-ai{
    color: #111827;
    background:
        linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)) padding-box,
        linear-gradient(100deg, #3b82f6 0%, #8b5cf6 45%, #f97316 100%) border-box;
    box-shadow: 0 0 0 1px rgba(148,163,184,0.24), 0 6px 20px rgba(15,23,42,0.12);
}

body.layout-image .svc-subcat-grid{
    grid-template-columns: repeat(2, 1fr);
}
body.layout-image .svc-subcat-card{
    border-left: 3px solid #f97316;
}
body.layout-image .svc-advantage-card{
    background: linear-gradient(135deg, #fff7ed, #fff);
    border: none;
}
body.layout-image .svc-process-grid{
    grid-template-columns: repeat(3, 1fr);
}
body.layout-image .svc-process-card{
    background: #111827;
    border-color: #1f2937;
    color: #fff;
}
body.layout-image .svc-process-card h3{ color: #fff; }
body.layout-image .svc-process-card p{ color: rgba(255,255,255,0.7); }

body.layout-banner .svc-subcat-card{
    background: #f8f9fa;
    border: none;
    border-radius: 16px;
    text-align: center;
}
body.layout-banner .svc-subcat-card h3{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
body.layout-banner .svc-subcat-bullets{
    align-items: center;
}
body.layout-banner .svc-subcat-arrow{
    align-self: center;
}
body.layout-banner .svc-advantage-card{
    border: none;
    background: #111827;
    color: #fff;
}
body.layout-banner .svc-advantage-card h3{ color: #fff; }
body.layout-banner .svc-advantage-card p{ color: rgba(255,255,255,0.7); }
body.layout-banner .svc-advantage-num{
    background: rgba(249,115,22,0.15);
    color: #fb923c;
}
body.layout-banner #svcAdvantagesSection{
    background: #111827;
}
body.layout-banner #svcAdvantagesSection .section-label{ color: #fb923c; border-color: rgba(249,115,22,0.3); }
body.layout-banner #svcAdvantagesSection .section-title-lg{ color: #fff; }
body.layout-banner #svcAdvantagesSection .section-subtitle{ color: rgba(255,255,255,0.6); }
body.layout-banner .svc-tech-chip{
    background: #111827;
    border-color: #374151;
    color: #e5e7eb;
}
body.layout-banner .svc-tech-chip:hover{
    border-color: #f97316;
    color: #f97316;
}
body.layout-banner .svc-tech-chip i{ color: #9ca3af; }
body.layout-banner #svcTechSection{
    background: #0f172a;
}
body.layout-banner #svcTechSection .section-label{ color: #fb923c; border-color: rgba(249,115,22,0.3); }
body.layout-banner #svcTechSection .section-title-lg{ color: #fff; }

/* Responsive for new hero variants */
@media (max-width: 900px){
    .hero-image-grid{ grid-template-columns: 1fr; gap: 32px; }
    .hero-image-content .detail-title{ font-size: 28px; }
    .hero-image{ padding: 100px 0 40px; }
    .hero-banner-title{ font-size: 30px; }
    .hero-banner{ min-height: 420px; padding-top: 110px; }
    .hero-banner-stats-row{ gap: 16px; }
    .hero-banner-stat strong{ font-size: 22px; }
    .svc-zigzag-row{ grid-template-columns: 1fr; gap: 24px; }
    .svc-zigzag-row.reverse .svc-zigzag-img{ order: 0; }
    .svc-zigzag-row.reverse .svc-zigzag-text{ order: 0; }
    .svc-inline-form-grid{ grid-template-columns: 1fr; gap: 28px; }
    .svc-inline-perks{ gap: 14px; }
    body.layout-image .svc-subcat-grid{ grid-template-columns: 1fr; }
    body.layout-image .svc-process-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
    .hero-banner-title{ font-size: 24px; }
    .hero-image-content .detail-title{ font-size: 24px; }
    .hero-banner-actions{ flex-direction: column; align-items: center; }
    .hero-image-actions{ flex-direction: column; }
}

/* Subcategory Service Cards */
.svc-subcat-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-subcat-card{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s ease, box-shadow .25s ease;
    position: relative;
}
.svc-subcat-card:hover{
    border-color: #f97316;
    box-shadow: 0 8px 28px rgba(249,115,22,0.08);
}
.svc-subcat-card h3{
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.35;
}
.svc-subcat-card > p{
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 14px;
    flex: 1;
}
.svc-subcat-bullets{
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.svc-subcat-bullets li{
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-subcat-bullets li::before{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f97316;
    flex-shrink: 0;
}
.svc-subcat-arrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    color: #9ca3af;
    font-size: 13px;
    transition: var(--transition);
    align-self: flex-end;
    margin-top: auto;
    text-decoration: none;
}
.svc-subcat-card:hover .svc-subcat-arrow{
    border-color: #f97316;
    color: #fff;
    background: #f97316;
}

@media (max-width: 1100px){
    .svc-subcat-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
    .svc-subcat-grid{ grid-template-columns: 1fr; }
}

/* Service Highlight Cards */
.svc-highlights-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-highlight-card{
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #1f2937;
    transition: transform .25s ease, box-shadow .25s ease;
}
.svc-highlight-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.svc-highlight-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.78) 100%);
}
.svc-highlight-body{
    position: relative;
    z-index: 2;
    padding: 20px;
}
.svc-highlight-body h3{
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-highlight-body h3 i{ font-size: 14px; color: #f59e0b; }
.svc-highlight-body p{
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
}

/* Advantages grid */
.svc-advantages-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-advantage-card{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-advantage-card:hover{
    transform: translateY(-4px);
    border-color: #fed7aa;
    box-shadow: 0 12px 30px rgba(249,115,22,0.1);
}
.svc-advantage-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ea580c;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 16px;
}
.svc-advantage-card h3{
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.svc-advantage-card p{
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Service Tech Grid */
.svc-tech-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.svc-tech-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: var(--transition);
}
.svc-tech-chip:hover{
    border-color: #f97316;
    color: #f97316;
    box-shadow: 0 6px 18px rgba(249,115,22,0.08);
}
.svc-tech-chip i{ font-size: 18px; color: #6b7280; }
.svc-tech-chip:hover i{ color: #f97316; }

/* Service Process Grid */
.svc-process-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.svc-process-card{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.svc-process-card:hover{
    border-color: #fed7aa;
    box-shadow: 0 12px 30px rgba(249,115,22,0.1);
    transform: translateY(-4px);
}
.svc-process-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-main);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
}
.svc-process-card h3{
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.svc-process-card p{
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Stats Banner */
.svc-stats-banner{
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 48px 0;
}
.svc-stats-row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 28px;
}
.svc-stat-item{
    text-align: center;
}
.svc-stat-item strong{
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
    margin-bottom: 6px;
}
.svc-stat-item span{
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1100px){
    .svc-highlights-grid{ grid-template-columns: repeat(2, 1fr); }
    .svc-advantages-grid{ grid-template-columns: repeat(2, 1fr); }
    .svc-process-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .detail-hero { padding: 110px 0 50px; }
    .detail-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .detail-points {
        grid-template-columns: 1fr;
    }
    .detail-form-card { padding: 28px 22px; }
    .service-seo-wrap { padding: 26px 20px; }
}
@media (max-width: 768px){
    .svc-highlights-grid{ grid-template-columns: 1fr; }
    .svc-advantages-grid{ grid-template-columns: 1fr; }
    .svc-process-grid{ grid-template-columns: 1fr; }
    .svc-stats-row{ flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .detail-form-row { grid-template-columns: 1fr; }
    .detail-trust { flex-direction: column; gap: 16px; }
}

/* ============================================
   HOMEPAGE SECTIONS - DOTSQUARES STYLE
   ============================================ */

/* Section backgrounds */
.section-white { background: #fff; }
.section-gray { background: #f8f9fa; }
.section-dark-alt { background: #111118; }

/* Section intro styles */
.section-intro, .value-intro { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-intro-light { color: #fff; }
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f97316;
    margin-bottom: 14px;
}
.section-label-light { color: #f97316; }
.section-title-lg {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin: 0 0 18px;
}
.section-title-lg.text-white { color: #fff; }
.text-orange { color: #f97316; }
.text-white { color: #fff; }
.text-light { color: rgba(255,255,255,0.75); }
.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }

/* Client Logos Bar */
.clients-logos-bar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}
.clients-heading {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 28px;
}
.clients-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.client-logo-item {
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 28px;
    color: #9ca3af;
    transition: var(--transition);
}
.client-logo-item:hover {
    color: #374151;
    border-color: #d1d5db;
}

/* Value Stats Grid - Fyone variation */
.value-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    position: relative;
}
.value-stats-grid::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:38px;
    height:1px;
    background: linear-gradient(90deg, rgba(249,115,22,0), rgba(249,115,22,0.25), rgba(249,115,22,0));
    pointer-events:none;
}
.value-stat-card {
    padding: 24px 22px 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-stat-card:hover{
    transform: translateY(-4px);
    border-color: #fed7aa;
    box-shadow: 0 14px 34px rgba(249,115,22,0.12);
}
.value-stat-card:nth-child(2){
    background: linear-gradient(180deg, #fffaf4 0%, #ffffff 55%);
    border-color: #fdba74;
    box-shadow: 0 14px 36px rgba(249,115,22,0.16);
}
.value-stat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}
.value-stat-number {
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}
.value-stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-radius: 12px;
    font-size: 20px;
    color: #ea580c;
}
.value-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7280;
    margin-bottom: 14px;
}
.value-stat-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
}
.value-stat-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Services Grid - New */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-media-card{
    position: relative;
    min-height: 230px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    background-size: cover;
    background-position: center;
}
.service-media-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.service-media-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 20%, rgba(10,10,10,0.82) 100%);
}
.service-media-content{
    position: relative;
    z-index: 2;
    padding: 18px 18px 16px;
}
.service-media-content h3{
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-media-content h3 i{ font-size: 14px; opacity: .95; }
.service-media-content p{
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}
.service-media-1{ background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=900&q=80'); }
.service-media-2{ background-image: url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=900&q=80'); }
.service-media-3{ background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=900&q=80'); }
.service-media-4{ background-image: url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=900&q=80'); }
.service-media-5{ background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=900&q=80'); }
.service-media-6{
    background-color: #1f2937;
    background-image:
        linear-gradient(135deg, rgba(15,23,42,0.35), rgba(2,6,23,0.45)),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80');
}
.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: #f97316;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow-light { color: #f97316; }
.link-arrow-light:hover { color: #fb923c; }

/* Technology Logos Grid */
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: var(--transition);
}
.tech-logo-item:hover {
    background: #fff;
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.tech-logo-item i {
    font-size: 32px;
    color: #374151;
}
.tech-logo-item span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* Industries Grid - New */
.industries-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-item-new {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}
.industry-item-new:hover {
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.industry-item-new i {
    font-size: 20px;
    color: #f97316;
    width: 24px;
    text-align: center;
}
.industry-item-new span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Models Grid - New */
.models-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.model-card-new {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
}
.model-card-new:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.model-number {
    font-size: 48px;
    font-weight: 900;
    color: #f3f4f6;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}
.model-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}
.model-card-new p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}
.model-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}
.model-features li i {
    color: #22c55e;
    font-size: 14px;
}

/* Button variants */
.btn-outline-dark {
    background: transparent;
    color: #111827;
    border: 2px solid #111827;
    padding: 14px 32px;
}
.btn-outline-dark:hover {
    background: #111827;
    color: #fff;
}

/* Articles news cards (reference style) */
.articles-news-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}
.article-news-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
}
.article-news-thumb{
    height:186px;
    background-color:#d1d5db;
    background-size:cover;
    background-position:center;
}
.article-thumb-1{
    background-image:
        linear-gradient(135deg, rgba(17,24,39,0.2), rgba(249,115,22,0.18)),
        url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1200');
}
.article-thumb-2{
    background-image:
        linear-gradient(135deg, rgba(17,24,39,0.2), rgba(249,115,22,0.18)),
        url('https://images.pexels.com/photos/5380642/pexels-photo-5380642.jpeg?auto=compress&cs=tinysrgb&w=1200');
}
.article-thumb-3{
    background-image:
        linear-gradient(135deg, rgba(17,24,39,0.2), rgba(249,115,22,0.18)),
        url('https://images.pexels.com/photos/669610/pexels-photo-669610.jpeg?auto=compress&cs=tinysrgb&w=1200');
}
.article-news-body{ padding:16px 16px 14px; }
.article-news-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    font-size:13px;
    color:#6b7280;
}
.article-news-meta i{ color:#f59e0b; margin-right:6px; }
.article-news-tag{
    font-size:11px;
    font-weight:700;
    color:#111827;
    background:#f3f4f6;
    border:1px solid #e5e7eb;
    padding:3px 10px;
    border-radius:999px;
}
.article-news-card h3{
    margin:0 0 8px;
    font-size:23px;
    line-height:1.3;
    color:#111827;
}
.article-news-card p{
    margin:0 0 14px;
    font-size:14px;
    line-height:1.6;
    color:#4b5563;
}
.article-news-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f59e0b;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:8px 14px;
    border-radius:6px;
}
.article-news-btn:hover{ background:#ea580c; }

/* Homepage responsive */
@media (max-width: 1100px) {
    .value-stats-grid { gap: 32px; }
    .services-grid-new { grid-template-columns: repeat(2, 1fr); }
    .tech-logos-grid { grid-template-columns: repeat(4, 1fr); }
    .industries-grid-new { grid-template-columns: repeat(2, 1fr); }
    .models-grid-new { grid-template-columns: repeat(2, 1fr); }
    .articles-news-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-logos-row { gap: 24px; }
}
@media (max-width: 900px) {
    .value-stats-grid { grid-template-columns: 1fr; gap: 22px; }
    .value-stats-grid::before{ display:none; }
    .value-stat-card { max-width: 480px; margin: 0 auto; text-align: center; }
    .value-stat-top { justify-content: center; gap: 20px; }
}
@media (max-width: 768px) {
    .services-grid-new { grid-template-columns: 1fr; }
    .tech-logos-grid { grid-template-columns: repeat(3, 1fr); }
    .industries-grid-new { grid-template-columns: 1fr; }
    .models-grid-new { grid-template-columns: 1fr; }
    .articles-news-grid { grid-template-columns: 1fr; }
    .section-title-lg { font-size: 26px; }
    .section-subtitle { font-size: 15px; }
    .clients-logos-row { gap: 16px; }
    .client-logo-item { font-size: 22px; padding: 10px 16px; }
    .value-stat-number { font-size: 48px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="zoom-in"] { transform: scale(0.92); }
[data-animate].animated { opacity: 1; transform: translate(0,0) scale(1); }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-split { gap: 30px; padding: 0 40px; }
    .hero-actions { flex-wrap: wrap; }
    .value-grid{ grid-template-columns: repeat(2, 1fr); }
    .models-grid{ grid-template-columns: repeat(2, 1fr); }
    .articles-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-split { grid-template-columns: 1fr; text-align: center; padding: 0 28px; }
    .hero-text { max-width: 100%; margin: 0 auto; padding-left: 0; }
    .hero-title .text-accent { display: inline; }
    .hero-typed-wrap{ min-width: 0; }
    .hero-actions { justify-content: center; }
    .hero-visual { min-height: 420px; margin-top: 20px; }
    .hero-clients { text-align: center; padding: 0 28px; }
    .hero-clients-row { justify-content: center; }

    .testimonials-preview{ grid-template-columns: 1fr; }
}
@media (max-width: 1340px) {
    .nav-menu { gap: 12px; margin-left: 10px; }
    .nav-link, .nav-dropdown-toggle { font-size: 12.5px; }
    .nav-btn-cta { font-size: 11px; padding: 7px 13px; }
    .nav-btn-ai { font-size: 11px; padding: 7px 12px; }
    .logo-mark { height: 36px; }
    .logo-name { font-size: 16px; letter-spacing: 1.5px; }
    .logo-tagline { font-size: 8.5px; }
    .mega-menu-4col{
        grid-template-columns: repeat(4, minmax(160px, 1fr));
        width: min(840px, calc(100vw - 44px));
        min-width: min(840px, calc(100vw - 44px));
        top: 58px !important;
    }
}
@media (max-width: 1080px) {
    .nav-menu { margin-left: 0; }
    .logo-mark{ height: 38px; }
    .logo-name{ font-size: 17px; letter-spacing: 2px; }
    .logo-tagline{ font-size: 9px; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 340px; height: 100vh;
        background: #fff;
        flex-direction: column; padding: 90px 32px 32px; gap: 4px;
        transition: right 0.35s ease; border-left: 1px solid rgba(0,0,0,0.06);
        box-shadow: -20px 0 60px rgba(0,0,0,0.1); overflow-y: auto;
        white-space: normal;
    }
    .nav-menu.open { right: 0; }
    .nav-link { padding: 14px 0; font-size: 16px; white-space: normal; color: #374151; }
    .nav-link:hover, .nav-link.active { color: var(--primary); }
    .nav-link::after { display: none; }
    .nav-actions { display: none; }
    .cookie-banner{
        left: 14px;
        right: 14px;
        width: auto;
        bottom: 14px;
    }
    .ai-popout-menu{ display: none; }
    .nav-btn-cta, .nav-btn-ai { margin-top: 20px; justify-content: center; white-space: normal; }
    .mobile-toggle { display: flex; }

    .nav-dropdown{ width: 100%; padding-bottom: 0; margin-bottom: 0; }
    .nav-dropdown-toggle{
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 16px;
        white-space: normal;
        color: #374151;
    }
    .mega-menu{
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 4px 0 10px;
        border-radius: 14px;
        padding: 12px 14px;
        box-shadow: none;
        background: var(--bg-alt);
        border-color: rgba(0,0,0,0.06);
        display: none;
    }
    .nav-dropdown.open > .mega-menu{ display: grid; }
    .mega-menu-simple{ min-width: 0; }
    .mega-menu-2col,
    .mega-menu-4col,
    .mega-menu-5col{ grid-template-columns: 1fr; gap: 10px; min-width: 0; }
    .mega-menu-4col{ position: static !important; left: auto !important; transform: none !important; top: auto !important; width: 100%; min-width: 0; }
    .mega-menu-industries{ grid-template-columns: 1fr; width: 100%; min-width: 0; }
    .mega-col h4{ font-size: 14px; }
    .mega-menu a{ font-size: 14px; }
}
@media (max-width: 768px) {
    .hero { padding: 110px 0 40px; }
    .hero-video { filter: saturate(1) contrast(1.02) brightness(0.5); }
    .hero-visual {
        min-height: 360px;
        transform: scale(0.85);
        transform-origin: center center;
    }
    .vis-card-code { left: 0; max-width: 240px; }
    .vis-card-response { left: 5%; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 32px 24px; min-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 44px; }
    .hero-scroll, .cursor-glow { display: none; }
    .page-hero { padding: 140px 0 60px; }

    .value-grid{ grid-template-columns: 1fr; }
    .models-grid{ grid-template-columns: 1fr; }
    .articles-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero { padding: 100px 0 30px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-visual { transform: scale(0.7); min-height: 300px; }
    .btn { width: 100%; justify-content: center; }
    .tech-tabs { gap: 6px; }
    .tech-tab { padding: 9px 16px; font-size: 12px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-badges { flex-direction: column; gap: 8px; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-clients-row { gap: 20px; }
    .hero-client { font-size: 13px; }
}

/* ============================================
   ON-DEMAND PAGE
   ============================================ */

/* Stats bar */
.od-stats-bar {
    background: linear-gradient(100deg, #f97316, #ea580c);
    padding: 28px 0;
}
.od-stats-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.od-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
}
.od-stat strong {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1;
}
.od-stat span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

/* 3-step process */
.od-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.od-step {
    flex: 1;
    text-align: center;
    padding: 0 28px;
    position: relative;
}
.od-step-num {
    font-size: 48px;
    font-weight: 900;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.od-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f97316;
    margin: 0 auto 20px;
}
.od-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
}
.od-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}
.od-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    font-size: 24px;
    color: #f97316;
    opacity: 0.5;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .od-steps-grid { flex-direction: column; gap: 36px; }
    .od-step-arrow { display: none; }
    .od-step { padding: 0; }
}

/* Benefits cards with image */
.od-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.od-benefit {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.od-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(249,115,22,0.08), 0 4px 12px rgba(0,0,0,0.05);
}
.od-benefit-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}
.od-benefit-body {
    padding: 28px;
}
.od-benefit-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
}
.od-benefit-body h3 i {
    color: #f97316;
    margin-right: 8px;
}
.od-benefit-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}
@media (max-width: 768px) {
    .od-benefits-grid { grid-template-columns: 1fr; }
}

/* Roles grid */
.od-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.od-role {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(2,6,23,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.od-role:hover {
    transform: translateY(-4px);
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 16px 40px rgba(249,115,22,0.14);
}
.od-role-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f97316;
    margin: 0 auto 18px;
}
.od-role h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.od-role p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Career & Internship Pages */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.career-opening-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 35px rgba(2, 6, 23, 0.06);
}

.career-opening-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.career-opening-head h3 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.career-opening-tag {
    font-size: 12px;
    font-weight: 700;
    color: #9a3412;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 999px;
    padding: 6px 12px;
    white-space: nowrap;
}

.career-opening-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.career-opening-meta li {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    gap: 8px;
    align-items: center;
}

.career-opening-meta li i {
    color: #f97316;
}

.career-opening-card p {
    color: #4b5563;
    margin: 0 0 16px;
    line-height: 1.7;
}

.career-opening-form .form-row {
    margin-bottom: 12px;
}

.internship-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

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

@media (max-width: 640px) {
    .career-opening-meta {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1024px) { .od-roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .od-roles-grid { grid-template-columns: 1fr; } }

/* Engagement models */
.od-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.od-model {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 36px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.od-model:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(249,115,22,0.1), 0 4px 12px rgba(0,0,0,0.06);
}
.od-model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(100deg, #f97316, #ea580c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}
.od-model-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #f97316;
    margin: 0 auto 20px;
}
.od-model h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
}
.od-model p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 20px;
}
.od-model ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.od-model ul li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
}
.od-model ul li i {
    color: #22c55e;
    font-size: 13px;
}
@media (max-width: 1024px) { .od-models-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* Industries chips */
.od-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.od-industry {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.od-industry:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.08);
}
.od-industry i {
    font-size: 22px;
    color: #f97316;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
@media (max-width: 1024px) { .od-industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .od-industries-grid { grid-template-columns: 1fr; } }

/* Testimonial */
.od-testimonial {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.od-testimonial-quote i {
    font-size: 32px;
    color: rgba(249,115,22,0.4);
    margin-bottom: 20px;
    display: block;
}
.od-testimonial-quote p {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
    color: #111827;
    font-style: italic;
    font-weight: 400;
    margin: 0 0 28px;
}
.od-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.od-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.od-testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.od-testimonial-author span {
    font-size: 13px;
    color: #6b7280;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-wrap {
    max-width: 980px;
    display: grid;
    gap: 18px;
}
.legal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 26px 28px;
}
.legal-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
}
.legal-card p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}
.legal-card li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.legal-card a:hover { text-decoration: underline; }

/* ============================================
   RECHARGE & UTILITY PAGE
   ============================================ */
.ru-hero {
    padding: 130px 0 80px;
    background: radial-gradient(1200px 420px at 10% -10%, rgba(249,115,22,0.12), transparent 60%), #060c18;
}
.ru-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}
.ru-hero-copy h1 {
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 14px 0 16px;
    color: #fff;
}
.ru-hero-copy p {
    color: rgba(209,213,219,0.88);
    font-size: 17px;
    line-height: 1.8;
    max-width: 640px;
}
.ru-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 20px;
}
.ru-hero-points span {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
}
.ru-hero-points i { color: #22c55e; margin-right: 6px; }

.ru-hero-visual { position: relative; }
.ru-hero .hero-actions {
    margin-top: 22px;
}
.ru-hero .hero-actions .btn {
    min-width: 176px;
    justify-content: center;
}
.ru-hero-form-wrap {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 28px;
    box-shadow: 0 26px 80px rgba(0,0,0,0.34);
}
.ru-hero-form-wrap h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}
.ru-hero-form-wrap > p {
    margin: 0 0 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.ru-hero-form {
    gap: 14px;
}
.ru-hero-form .form-group label {
    color: #4b5563;
}
.ru-hero-form .form-group input,
.ru-hero-form .form-group select {
    background: #f9fafb;
}
.ru-hero-form .btn {
    margin-top: 4px;
}

.ru-metrics {
    background: linear-gradient(95deg, #f97316, #ea580c);
    padding: 28px 0;
}
.ru-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ru-metrics-grid article {
    text-align: center;
    color: #fff;
}
.ru-metrics-grid strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.ru-metrics-grid span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .9;
}

.ru-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ru-module {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.ru-module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ru-module h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}
.ru-module h3 i { color: #f97316; margin-right: 8px; }
.ru-module p {
    margin: 0 0 12px;
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
}
.ru-module ul {
    margin: 0;
    padding-left: 18px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
}

.ru-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.ru-flow-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
}
.ru-flow-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(100deg, #f97316, #ea580c);
    margin-bottom: 8px;
}
.ru-flow-step h4 { margin: 0 0 6px; font-size: 15px; color: #111827; font-weight: 800; }
.ru-flow-step p { margin: 0; font-size: 13px; color: #6b7280; line-height: 1.6; }

.ru-sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ru-sec-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}
.ru-sec-card i { font-size: 24px; color: #fb923c; margin-bottom: 10px; }
.ru-sec-card h4 { margin: 0 0 7px; font-size: 16px; font-weight: 800; color: #fff; }
.ru-sec-card p { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(209,213,219,.9); }

.ru-use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ru-use {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}
.ru-use h4 { margin: 0 0 8px; font-size: 16px; font-weight: 800; color: #111827; }
.ru-use p { margin: 0; font-size: 13px; line-height: 1.7; color: #6b7280; }

@media (max-width: 1100px) {
    .ru-hero-grid { grid-template-columns: 1fr; }
    .ru-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .ru-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .ru-flow { grid-template-columns: repeat(2, 1fr); }
    .ru-sec-grid { grid-template-columns: repeat(2, 1fr); }
    .ru-use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .ru-hero { padding: 112px 0 60px; }
    .ru-hero-form-wrap { padding: 22px; }
    .ru-metrics-grid { grid-template-columns: 1fr; gap: 16px; }
    .ru-modules-grid,
    .ru-flow,
    .ru-sec-grid,
    .ru-use-grid { grid-template-columns: 1fr; }
}

/* Careers list + job detail */
.jobs-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.job-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.05);
}

.job-list-main h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.job-list-meta {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.job-list-item .btn {
    white-space: nowrap;
}

.job-detail-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.job-detail-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 20px;
    padding: 0;
    list-style: none;
}

.job-detail-meta li {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: #4b5563;
}

.job-detail-meta li i {
    color: #f97316;
    margin-right: 8px;
}

.job-detail-desc {
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

.job-apply-panel {
    margin-top: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #f8fafc;
    padding: 20px;
}

.job-apply-panel[hidden] {
    display: none;
}

@media (max-width: 860px) {
    .job-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-detail-meta {
        grid-template-columns: 1fr;
    }
}
