/* ======================================================
   MOREKOD — Premium Light Theme
   ====================================================== */

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

:root {
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --purple: #7c3aed;
    --green: #059669;
    --amber: #d97706;
    --pink: #ec4899;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
    --font: 'Outfit', -apple-system, sans-serif;
    --font-display: 'Exo 2', var(--font);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-size: 0.95rem; font-weight: 600;
    padding: 14px 28px; border: none; border-radius: var(--radius-sm); cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white); transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 0.95rem; font-weight: 600;
    padding: 14px 28px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    color: var(--gray-700); background: var(--white); cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gray-900); color: var(--gray-900); transform: translateY(-2px); }

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

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 0; transition: padding 0.4s;
}
.nav.scrolled { padding: 8px 0; }

.nav-inner {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 60px; padding: 6px 6px 6px 24px;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.03),
        0 2px 8px rgba(0,0,0,0.03),
        0 12px 36px rgba(0,0,0,0.05);
    transition: all 0.4s;
}
.nav.scrolled .nav-inner {
    background: rgba(255,255,255,0.82);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.04),
        0 20px 48px rgba(0,0,0,0.06);
}

.logo {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
    letter-spacing: -0.03em; margin-right: auto;
    display: flex; align-items: center; gap: 10px;
}
.logo-mark {
    width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    position: relative;
}
.logo-mark::after {
    content: 'M'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 0.7rem;
    color: var(--white); letter-spacing: 0;
}

.nav-center { display: flex; align-items: center; gap: 0; margin-right: 8px; }
.nav-center a {
    font-size: 0.82rem; font-weight: 500; color: var(--gray-400);
    padding: 8px 16px; border-radius: 50px; transition: all 0.3s;
    position: relative; white-space: nowrap;
}
.nav-center a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
    background: var(--blue); border-radius: 2px;
    transform: translateX(-50%); transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-center a:hover { color: var(--gray-700); }
.nav-center a:hover::after { width: 16px; }
.nav-center a.nav-active { color: var(--gray-900); font-weight: 600; }
.nav-center a.nav-active::after { width: 20px; background: var(--blue); }

.nav-divider {
    width: 1px; height: 20px; background: var(--gray-200); margin: 0 4px; flex-shrink: 0;
}

.nav-cta {
    font-size: 0.8rem; font-weight: 600; padding: 10px 22px;
    border-radius: 50px; white-space: nowrap;
    background: var(--gray-900); color: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; gap: 7px;
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    opacity: 0; transition: opacity 0.35s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover {
    box-shadow: 0 4px 24px rgba(37,99,235,0.3);
    transform: translateY(-1px);
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta .arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block; font-size: 0.9em; position: relative; z-index: 1;
}
.nav-cta:hover .arrow { transform: translateX(3px); }

/* Hamburger */
.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative; border-radius: 50%;
    transition: background 0.2s; flex-shrink: 0;
}
.burger:hover { background: rgba(0,0,0,0.04); }
.burger span {
    display: block; height: 1.5px; background: var(--gray-800);
    position: absolute; left: 50%; transform: translateX(-50%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px;
}
.burger span:nth-child(1) { top: 14px; width: 16px; }
.burger span:nth-child(2) { top: 19px; width: 12px; }
.burger span:nth-child(3) { top: 24px; width: 16px; }
.burger.open span:nth-child(1) { top: 19px; width: 16px; transform: translateX(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { top: 19px; width: 16px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
    background: var(--white);
    display: flex; flex-direction: column; align-items: stretch; justify-content: center;
    padding: 80px 32px 40px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gray-300);
    padding: 14px 0; border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s; letter-spacing: -0.02em;
}
.mob-menu a:hover, .mob-menu a.nav-active { color: var(--gray-900); }
.mob-menu a:last-of-type:not(.mob-cta) { border-bottom: none; }
.mob-cta {
    font-size: 1rem !important; padding: 16px 36px !important; margin-top: 24px;
    background: var(--gray-900) !important; color: var(--white) !important;
    border-radius: 14px !important; text-align: center; border-bottom: none !important;
    font-family: var(--font) !important; font-weight: 600 !important;
    letter-spacing: 0 !important;
}

/* ===== HERO ===== */
.hero { position: relative; padding: 140px 0 80px; overflow: hidden; }
.hero-mesh {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 65% 40%, rgba(37,99,235,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,58,237,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 80% 90%, rgba(236,72,153,0.03) 0%, transparent 50%);
}
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }

.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 16px 6px 10px; border-radius: 100px;
    background: var(--blue-light); color: var(--blue); margin-bottom: 24px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-h1 {
    font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 4.5rem); font-weight: 700;
    line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 20px;
}
.hero-sub { font-size: 1.1rem; color: var(--gray-500); max-width: 540px; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--white);
    margin-right: -10px; background: var(--gray-200);
}
.a1 { background: linear-gradient(135deg, #818cf8, #6366f1); z-index: 4; }
.a2 { background: linear-gradient(135deg, #34d399, #059669); z-index: 3; }
.a3 { background: linear-gradient(135deg, #fbbf24, #d97706); z-index: 2; }
.a4 { background: linear-gradient(135deg, #f472b6, #ec4899); z-index: 1; }
.hero-proof span { font-size: 0.88rem; color: var(--gray-500); }
.hero-proof strong { color: var(--gray-900); }

/* Hero visual */
.hero-visual { position: relative; height: 460px; }

.hero-img-frame {
    position: absolute; top: 0; left: 0; right: 0; bottom: 40px;
    border-radius: 20px; overflow: hidden;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.1));
    padding: 3px;
    box-shadow:
        0 8px 32px rgba(37,99,235,0.15),
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-img-frame img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 18px; display: block;
}

.vis-card {
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    background: var(--white); box-shadow: var(--shadow-xl); overflow: hidden;
    display: flex; flex-direction: column;
}
.vc-main { position: absolute; top: 20px; left: 20px; right: 20px; bottom: 60px; }
.vc-bar { display: flex; gap: 6px; padding: 12px 16px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.vc-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); }
.vc-bar span:first-child { background: #ff5f57; }
.vc-bar span:nth-child(2) { background: #ffbd2e; }
.vc-bar span:last-child { background: #28ca42; }
.vc-body { padding: 20px; position: relative; }
.vc-body img.mockup-img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; z-index: 1;
}
.vc-body--img { padding: 0 !important; min-height: 200px; flex: 1; }
.vc-nav-row { height: 10px; width: 50%; background: var(--gray-100); border-radius: 5px; margin-bottom: 20px; }
.vc-hero-block { height: 80px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.06)); margin-bottom: 20px; }
.vc-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.vc-mini { height: 56px; border-radius: var(--radius-sm); background: var(--gray-50); border: 1px solid var(--gray-100); }

.vis-float {
    position: absolute; padding: 14px 18px; border-radius: var(--radius);
    background: var(--white); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
    z-index: 5; animation: float 4s ease-in-out infinite;
}
.vf-1 { top: 0; right: 0; }
.vf-2 { bottom: 20px; left: 0; animation-delay: -1.5s; }
.vf-3 { bottom: 80px; right: -10px; animation-delay: -3s; }
.vf-num { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gray-900); }
.vf-icon { display: block; font-size: 1.3rem; }
.vf-label { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.vis-ring {
    position: absolute; border-radius: 50%; border: 1px solid rgba(37,99,235,0.08);
}
.ring-1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: spin 30s linear infinite; }
.ring-2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-style: dashed; animation: spin 50s linear infinite reverse; }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.vis-glow {
    position: absolute; width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
    border-radius: 50%; filter: blur(40px); pointer-events: none;
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 20px 0; overflow: hidden; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}
.marquee-track {
    display: flex; gap: 20px; width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: 0.82rem; font-weight: 600; color: var(--gray-400); white-space: nowrap; text-transform: uppercase; letter-spacing: 1.5px; }
.marquee-track .dot { color: var(--blue); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats { padding: 80px 0; }
/* Home Stats — Premium Dark */
.home-stats-section {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a1a2e 100%);
}
.home-stats-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.home-stats-orb--1 {
    width: 380px; height: 380px; top: -80px; right: -60px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
}
.home-stats-orb--2 {
    width: 320px; height: 320px; bottom: -60px; left: -80px;
    background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
}
.home-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.home-stat-card {
    padding: 36px 24px; border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center; transition: all 0.4s;
}
.home-stat-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.home-stat-ring { flex-shrink: 0; }
.home-stat-val {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
    color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.home-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.home-stat-sub { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: -2px; }

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
    padding: 4px 14px; background: var(--blue-light); border-radius: 100px;
}
.section-h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; max-width: 620px; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; position: relative; }
.about-top { margin-bottom: 60px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-card {
    padding: 36px 30px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    background: var(--white); position: relative; overflow: hidden; transition: all 0.4s;
}
.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple)); transform: scaleX(0);
    transition: transform 0.4s; transform-origin: left;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.about-card:hover::before { transform: scaleX(1); }

.ac-icon-wrap {
    width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c) 10%, white); color: var(--c); margin-bottom: 18px;
}
.ac-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gray-100); position: absolute; top: 16px; right: 20px; line-height: 1; }
.about-card:hover .ac-number { color: var(--gray-200); }
.about-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.about-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ===== PROGRAMS ===== */
.programs { padding: 120px 0; position: relative; overflow: hidden; }
.programs-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 40% 30% at 10% 40%, rgba(37,99,235,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 90% 80%, rgba(124,58,237,0.03) 0%, transparent 70%),
        var(--gray-50);
}
.programs .wrap { position: relative; z-index: 1; }

.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.prog-card {
    padding: 40px 36px; border-radius: var(--radius-xl); background: var(--white);
    border: 1px solid var(--gray-200); position: relative; overflow: hidden;
    transition: all 0.4s; display: flex; flex-direction: column;
}

/* Large decorative background text */
.pc-bg-text {
    position: absolute; top: -8px; right: -6px;
    font-family: var(--font-display); font-size: 6.5rem; font-weight: 900;
    letter-spacing: -0.04em; line-height: 1;
    background: linear-gradient(180deg, var(--accent-bg) 0%, transparent 80%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; pointer-events: none; user-select: none;
    opacity: 0.7; transition: opacity 0.4s;
}
.prog-card:hover .pc-bg-text { opacity: 1; }

/* Top accent bar */
.pc-accent-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #fff));
    opacity: 0; transition: opacity 0.4s;
}
.prog-card:hover .pc-accent-bar { opacity: 1; }

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--accent) 12%, transparent);
    border-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

/* Header: icon + meta */
.pc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; position: relative; z-index: 1; }
.pc-icon-wrap {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent); transition: all 0.4s;
}
.prog-card:hover .pc-icon-wrap {
    background: var(--accent); color: var(--white);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent);
}
.pc-meta { display: flex; flex-direction: column; gap: 4px; }
.pc-badge {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; background: color-mix(in srgb, var(--accent) 10%, white);
    color: var(--accent); width: fit-content;
}
.pc-time { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }

.prog-card h3 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 10px; position: relative; z-index: 1;
}
.prog-card > p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1; }

/* Checklist items */
.pc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; position: relative; z-index: 1; }
.pc-list li {
    font-size: 0.85rem; color: var(--gray-600); display: flex; align-items: center; gap: 10px;
    padding: 0; line-height: 1.4;
}
.pc-check {
    width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    color: var(--accent); transition: all 0.3s;
}
.prog-card:hover .pc-check { background: color-mix(in srgb, var(--accent) 15%, transparent); }

.pc-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.88rem; font-weight: 700; color: var(--accent); margin-top: auto;
    padding-top: 22px; border-top: 1px solid var(--gray-100); transition: all 0.3s;
    position: relative; z-index: 1;
}
.pc-cta:hover { gap: 12px; }

/* ===== PROCESS ===== */
.process { padding: 120px 0; }
.process-header { margin-bottom: 60px; }

.timeline { position: relative; max-width: 800px; }
.tl-line { position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: var(--gray-100); }
.tl-progress { width: 100%; background: linear-gradient(180deg, var(--blue), var(--purple)); height: 0; transition: height 0.6s ease-out; border-radius: 2px; }

.tl-step { display: flex; gap: 28px; align-items: flex-start; padding: 0 0 48px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
    width: 58px; height: 58px; min-width: 58px; border-radius: 50%;
    background: var(--gray-50); border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; transition: all 0.4s; z-index: 2;
}
.tl-dot span { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--gray-400); transition: color 0.4s; }
.tl-step.active .tl-dot { background: linear-gradient(135deg, var(--blue), var(--purple)); border-color: transparent; box-shadow: 0 4px 20px rgba(37,99,235,0.3); }
.tl-step.active .tl-dot span { color: var(--white); }

.tl-content { padding-top: 12px; }
.tl-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.tl-content p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products { padding: 120px 0; background: var(--gray-50); }
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.prod-card {
    display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-200); transition: all 0.4s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pc-featured { grid-column: 1 / -1; flex-direction: row; gap: 32px; padding: 36px; }

.prod-visual { flex: 1; }
.pv-mockup { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); }
.pv-bar { display: flex; gap: 5px; padding: 10px 14px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.pv-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); }
.pv-bar span:first-child { background: #ff5f57; }
.pv-bar span:nth-child(2) { background: #ffbd2e; }
.pv-bar span:last-child { background: #28ca42; }
.pv-body { padding: 16px; position: relative; }
.pv-body img.mockup-img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; z-index: 1;
}
.pv-body--img { padding: 0 !important; min-height: 180px; }
.pv-strip { height: 8px; width: 50%; background: var(--gray-100); border-radius: 4px; margin-bottom: 14px; }
.pv-block { height: 56px; background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(124,58,237,0.05)); border-radius: var(--radius-sm); margin-bottom: 14px; }
.pv-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.pv-m { height: 36px; border-radius: 6px; background: var(--gray-50); border: 1px solid var(--gray-100); }

.prod-info { flex: 1; display: flex; flex-direction: column; }
.prod-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; width: fit-content;
}
.badge-live { background: #ecfdf5; color: #059669; }
.badge-dev { background: #eef2ff; color: #6366f1; }
.prod-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.prod-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.prod-tech { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.prod-tech span { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 6px; background: var(--gray-50); color: var(--gray-400); border: 1px solid var(--gray-100); }
.prod-link { font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-top: auto; }
.prod-more { margin-top: 32px; text-align: center; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; position: relative; overflow: hidden; }
.contact-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(37,99,235,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 30% 30% at 10% 30%, rgba(124,58,237,0.03) 0%, transparent 60%);
}
.contact .wrap { position: relative; z-index: 1; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-left .section-h2 { margin-bottom: 12px; }

.contact-info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.ci-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--gray-500); }
.ci-item svg { color: var(--blue); flex-shrink: 0; }

.contact-form {
    padding: 36px; border-radius: var(--radius-lg); background: var(--white);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; font-family: var(--font); font-size: 0.9rem;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    background: var(--gray-50); color: var(--gray-900); outline: none; transition: all 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-color: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER (legacy - keep for compat) ===== */
.footer { border-top: 1px solid var(--gray-100); padding: 64px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 20px; }

/* ===== FOOTER V2 ===== */
.footer-v2 { margin-top: auto; }

/* CTA Band */
.ft-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.ft-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ft-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ft-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 56px 0;
    position: relative;
    z-index: 1;
}
.ft-cta-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.ft-cta-text p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.ft-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.ft-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}

/* Main Footer */
.ft-main {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.ft-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 64px;
    padding: 64px 0 48px;
}
.ft-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.ft-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.ft-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
}
.ft-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
}
.ft-social {
    display: flex;
    gap: 10px;
}
.ft-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-400);
    transition: all 0.3s;
}
.ft-social-link:hover {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.ft-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 8px;
}
.ft-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ft-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 12px;
}
.ft-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 2px;
}
.ft-col a {
    font-size: 0.88rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ft-col a:hover {
    color: var(--gray-900);
    transform: translateX(4px);
}

/* Bottom Bar */
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
}
.ft-bottom p {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin: 0;
}
.ft-bottom-links {
    display: flex;
    gap: 24px;
}
.ft-bottom-links a {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}
.ft-bottom-links a:hover {
    color: var(--gray-700);
}

.footer-social { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: var(--gray-400); transition: all 0.2s;
}
.social-link:hover { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }

.footer-cols { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-900); margin-bottom: 6px; }
.footer-col a { font-size: 0.88rem; color: var(--gray-400); transition: color 0.2s; }
.footer-col a:hover { color: var(--gray-900); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--gray-100); }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-400); }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.anim.show { opacity: 1; transform: translateY(0); }

/* ===== SELECTION ===== */
::selection { background: rgba(37,99,235,0.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-wrap { grid-template-columns: 1fr; }
    .hero-visual { height: 360px; margin-top: 40px; }
    .prog-grid { grid-template-columns: 1fr; }
    .about-cards { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: 1fr; }
    .pc-featured { flex-direction: column; }
}
@media (max-width: 768px) {
    .nav-center, .nav-cta, .nav-divider { display: none; }
    .burger { display: flex; align-items: center; justify-content: center; }
    .nav-inner { padding: 6px 6px 6px 18px; }
    .hero { padding: 120px 0 60px; }
    .hero-visual { height: 280px; }
    .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-cols { flex-wrap: wrap; gap: 32px; }
    .ft-cta-inner { flex-direction: column; text-align: center; padding: 40px 0; }
    .ft-cta-text h3 { font-size: 1.3rem; }
    .ft-grid { grid-template-columns: 1fr; gap: 40px; }
    .ft-links { grid-template-columns: repeat(3, 1fr); }
    .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .wrap { padding: 0 16px; }
    .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { display: none; }
}

/* ===== SUB-PAGE SHARED ===== */
.page-hero { padding: 140px 0 60px; }
.page-hero .section-tag,
.page-hero-title,
.page-hero-sub,
.page-hero .breadcrumb { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; color: var(--gray-900); }
.page-hero-sub { font-size: 1.1rem; color: var(--gray-500); max-width: 680px; line-height: 1.7; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 500; color: var(--gray-400); margin-bottom: 20px; transition: color 0.2s; }
.breadcrumb:hover { color: var(--blue); }
.nav-active { color: var(--gray-900) !important; }

/* Product detail — Gallery */
.pd-gallery-section { padding: 40px 0 0; }
.pd-gallery-grid {
    display: grid; grid-template-columns: 1fr 280px; gap: 16px; align-items: start;
}
.pd-gallery-solo { max-width: 900px; margin: 0 auto; }

.pd-gallery-frame {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-200); background: var(--white);
    box-shadow: var(--shadow-lg);
}
.pd-frame-dots {
    display: flex; gap: 6px; padding: 10px 14px;
    background: var(--gray-50); border-bottom: 1px solid var(--gray-100);
}
.pd-frame-dots span { width: 10px; height: 10px; border-radius: 50%; }
.pd-frame-dots span:nth-child(1) { background: #ff5f57; }
.pd-frame-dots span:nth-child(2) { background: #ffbd2e; }
.pd-frame-dots span:nth-child(3) { background: #28ca42; }
.pd-gallery-frame img {
    width: 100%; height: auto; display: block;
}

.pd-gallery-main .pd-gallery-frame img {
    aspect-ratio: 16/10; object-fit: cover;
}

.pd-gallery-side {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pd-gallery-thumb {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200); background: var(--white);
    box-shadow: var(--shadow-sm); position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pd-gallery-thumb:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-color: var(--gray-300);
}
.pd-gallery-thumb img {
    width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.pd-thumb-more { cursor: pointer; }
.pd-thumb-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.45); backdrop-filter: blur(2px);
    color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .pd-gallery-grid { grid-template-columns: 1fr; }
    .pd-gallery-side { grid-template-columns: repeat(4, 1fr); }
    .pd-gallery-thumb img { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
    .pd-gallery-side { grid-template-columns: repeat(2, 1fr); }
}

/* Product detail */
.product-hero { padding: 140px 0 80px; }
.product-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.product-hero-badges { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.product-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; }
.product-hero-tagline { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.product-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.product-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.product-status-live { background: #ecfdf5; color: #059669; }
.product-status-live .status-dot { background: #059669; }
.product-status-dev { background: #eef2ff; color: #6366f1; }
.product-status-dev .status-dot { background: #6366f1; }
.product-status-soon { background: #fffbeb; color: #d97706; }
.product-status-soon .status-dot { background: #d97706; }
.product-category { font-size: 0.8rem; color: var(--gray-400); }

.product-mockup { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); box-shadow: var(--shadow-lg); }
.mockup-header-bar { display: flex; gap: 6px; padding: 12px 16px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca42; }
.mockup-content { padding: 20px; position: relative; }
.mockup-content img.mockup-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm);
    position: absolute; inset: 0; z-index: 1;
}
.mockup-content--img { padding: 0 !important; min-height: 180px; }
.mockup-nav-strip { height: 10px; width: 50%; background: var(--gray-100); border-radius: 5px; margin-bottom: 20px; }
.mockup-hero-block { height: 70px; background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(124,58,237,0.05)); border-radius: var(--radius-sm); margin-bottom: 20px; }
.mockup-cards-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mockup-mini-card { height: 48px; background: var(--gray-50); border-radius: 6px; border: 1px solid var(--gray-100); }
.mockup-table-block { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.mockup-table-row { height: 12px; background: var(--gray-100); border-radius: 3px; }
.mockup-table-row:nth-child(2) { width: 85%; }
.mockup-table-row:nth-child(3) { width: 92%; }

.product-tech-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.product-tech-stack span { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 6px; background: var(--gray-50); color: var(--gray-400); border: 1px solid var(--gray-200); }

/* Product metrics bar */
.product-metrics-bar { padding: 40px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.metrics-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.pm-val { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.pm-label { font-size: 0.82rem; color: var(--gray-400); }

/* Features */
.product-features { padding: 120px 0; }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pf-card { padding: 32px 28px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); transition: all 0.4s; }
.pf-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pf-card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); margin-bottom: 18px; }
.pf-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pf-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* Tech */
.product-tech-section { padding: 120px 0; background: var(--gray-50); }
.pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pt-item { padding: 24px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); }
.pt-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.pt-item p { font-size: 0.9rem; color: var(--gray-500); }

/* Product CTA */
.product-cta-section { padding: 120px 0; }
.product-cta-box {
    text-align: center; padding: 72px 40px; border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gray-50), rgba(37,99,235,0.03));
    border: 1px solid var(--gray-200);
}
.product-cta-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.product-cta-box p { color: var(--gray-500); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.product-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Products listing page */
.products-page-hero { background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, transparent 60%); }

/* Products intro strip */
.products-intro { padding: 0 0 80px; }
.products-intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Products approach */
.products-approach { padding: 100px 0; background: var(--gray-50); }
.pa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; counter-reset: pa-step; }
.pa-step {
    padding: 32px 24px; border-radius: var(--radius-lg); background: var(--white);
    border: 1px solid var(--gray-200); position: relative; transition: all 0.4s;
}
.pa-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pa-step-num {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white);
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; margin-bottom: 16px;
}
.pa-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pa-step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }
.pa-connector {
    position: absolute; top: 50px; right: -12px; width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--gray-200), transparent);
}

/* Products stats */
.products-stats { padding: 80px 0; background: linear-gradient(135deg, var(--gray-900), #1a1a2e); }
.products-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.ps-stat-val { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ps-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.products-listing { padding: 80px 0 0; }
.product-listing-featured {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 40px;
    border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--white);
    margin-bottom: 24px; transition: all 0.4s; text-decoration: none; color: inherit;
}
.product-listing-featured:hover { border-color: transparent; box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.plc-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.plc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.plc-desc { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.plc-metrics { display: flex; gap: 20px; margin-bottom: 20px; padding: 14px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.plc-metric-val { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.plc-metric-label { font-size: 0.75rem; color: var(--gray-400); }
.plc-visual { display: flex; align-items: center; }
.product-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 700; color: var(--blue); }

.products-listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.product-listing-card {
    display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); background: var(--white); transition: all 0.4s; text-decoration: none; color: inherit;
}
.product-listing-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.product-listing-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.product-listing-card .product-link { margin-top: auto; padding-top: 14px; }
.products-listing-cta {
    text-align: center; padding: 56px 32px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--gray-50), rgba(37,99,235,0.03));
}
.products-listing-cta h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.products-listing-cta p { color: var(--gray-500); max-width: 540px; margin: 0 auto 20px; line-height: 1.7; }

@media (max-width: 1024px) {
    .product-hero-layout, .product-listing-featured { grid-template-columns: 1fr; }
    .pf-grid, .pt-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .products-listing-grid { grid-template-columns: 1fr; }
    .products-intro-grid { grid-template-columns: 1fr; }
    .pa-grid { grid-template-columns: repeat(2, 1fr); }
    .pa-connector { display: none; }
    .products-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pf-grid, .pt-grid { grid-template-columns: 1fr; }
    .product-hero { padding: 120px 0 60px; }
    .product-hero-ctas { flex-direction: column; }
    .product-hero-ctas .btn-primary, .product-hero-ctas .btn-outline { width: 100%; justify-content: center; }
    .product-listing-featured { padding: 24px; }
    .cta-animated { padding: 56px 24px; }
    .pa-grid { grid-template-columns: 1fr; }
    .products-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.about-hero-bg {
    background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, transparent 60%);
}

/* Vision & Mission */
.vm-section { padding: 80px 0 100px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
    padding: 44px 40px; border-radius: var(--radius-xl); border: 1px solid var(--gray-200);
    background: var(--white); position: relative; overflow: hidden; transition: all 0.4s;
}
.vm-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: transparent; }

/* Large decorative background text */
.vm-bg-text {
    position: absolute; top: -12px; right: -8px;
    font-family: var(--font-display); font-size: 7rem; font-weight: 900;
    letter-spacing: -0.04em; line-height: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 80%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; pointer-events: none; user-select: none;
}

/* Top accent bar */
.vm-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.vm-card--vision .vm-accent { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.vm-card--mission .vm-accent { background: linear-gradient(90deg, var(--green), #10b981); }

/* Card hover glow */
.vm-card--vision:hover { box-shadow: 0 20px 60px rgba(37,99,235,0.1); }
.vm-card--mission:hover { box-shadow: 0 20px 60px rgba(5,150,105,0.1); }

/* Header row: icon + title inline */
.vm-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; position: relative; z-index: 1; }
.vm-icon-wrap {
    width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vm-vision { background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.08)); color: var(--blue); }
.vm-mission { background: linear-gradient(135deg, rgba(5,150,105,0.12), rgba(16,185,129,0.08)); color: var(--green); }
.vm-card h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0; }
.vm-card > p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1; }

/* Checklist items */
.vm-list { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.vm-list li {
    font-size: 0.88rem; color: var(--gray-600); display: flex; align-items: center; gap: 12px;
    line-height: 1.5; padding: 0;
}
.vm-check {
    width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vm-card--vision .vm-check { background: rgba(37,99,235,0.08); color: var(--blue); }
.vm-card--mission .vm-check { background: rgba(5,150,105,0.08); color: var(--green); }

/* What We Do / Pillars */
.about-what { padding: 100px 0; background: var(--gray-50); }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pillar {
    padding: 36px 28px; border-radius: var(--radius-lg); background: var(--white);
    border: 1px solid var(--gray-200); position: relative; overflow: hidden; transition: all 0.4s;
}
.pillar::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple)); transform: scaleX(0);
    transition: transform 0.4s; transform-origin: left;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
    color: var(--gray-100); position: absolute; top: 12px; right: 20px; line-height: 1;
}
.pillar:hover .pillar-num { color: var(--gray-200); }
.pillar-icon {
    width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c) 10%, white); color: var(--c); margin-bottom: 20px;
}
.pillar h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* Values — Galaxy Dark */
.about-values {
    padding: 120px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a1a2e 100%);
}

/* Background orbs */
.val-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.val-orb--1 { width: 500px; height: 500px; top: -150px; left: -150px; background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%); }
.val-orb--2 { width: 400px; height: 400px; bottom: -120px; right: -120px; background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%); }
.val-orb--3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%); }

/* Orbit container */
.values-orbit {
    position: relative; width: 100%; max-width: 800px;
    height: 720px; margin: 0 auto;
}

/* Decorative orbit rings */
.orbit-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 560px; height: 560px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}
.orbit-ring--2 {
    width: 360px; height: 360px;
    border: 1px dashed rgba(255,255,255,0.06);
}
.orbit-ring--3 {
    width: 180px; height: 180px;
    border: 1px dotted rgba(255,255,255,0.08);
}

/* Connecting lines SVG */
.orbit-lines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}

/* Center hub */
.orbit-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 3;
}
.orbit-center-glow {
    position: absolute; inset: -20px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    animation: orbitPulse 4s ease-in-out infinite;
    pointer-events: none;
}
.orbit-logo {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
    color: var(--white); line-height: 1; letter-spacing: -0.04em;
    position: relative; z-index: 1;
}
.orbit-title {
    font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
    color: rgba(255,255,255,0.75); letter-spacing: 0.08em; text-transform: lowercase;
    margin-top: 2px; position: relative; z-index: 1;
}
.orbit-sub {
    font-size: 0.52rem; color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
    position: relative; z-index: 1;
}

/* Satellite value items */
.orbit-item {
    position: absolute;
    top: calc(50% + var(--oy)); left: calc(50% + var(--ox));
    transform: translate(-50%, -50%);
    width: 156px; height: 156px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2; cursor: default;
    animation: orbitFloat 6s ease-in-out infinite;
    animation-delay: var(--d);
}
.orbit-item:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255,255,255,0.08);
    border-color: color-mix(in srgb, var(--c) 40%, transparent);
    box-shadow: 0 0 40px color-mix(in srgb, var(--c) 15%, transparent);
    z-index: 5;
}

/* Orbit icon */
.orbit-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c) 15%, transparent);
    color: var(--c); margin-bottom: 8px; flex-shrink: 0;
    transition: all 0.4s;
}
.orbit-item:hover .orbit-icon {
    background: var(--c); color: #fff;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--c) 30%, transparent);
}

.orbit-name {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    color: rgba(255,255,255,0.9); line-height: 1.3;
}
.orbit-desc {
    font-size: 0.58rem; color: rgba(255,255,255,0.35); line-height: 1.4;
    margin-top: 4px; max-height: 0; overflow: hidden;
    transition: all 0.4s;
}
.orbit-item:hover .orbit-desc { max-height: 50px; color: rgba(255,255,255,0.5); }

/* Float animation */
@keyframes orbitFloat {
    0%, 100% { transform: translate(-50%, calc(-50% + 0px)); }
    50% { transform: translate(-50%, calc(-50% - 10px)); }
}

/* Ring spin */
@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbit-ring { animation: orbitSpin 120s linear infinite; }
.orbit-ring--2 { animation: orbitSpin 80s linear infinite reverse; }
.orbit-ring--3 { animation: orbitSpin 50s linear infinite; }

/* Pulse glow */
@keyframes orbitPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Mobile fallback */
.values-mobile-grid { display: none; }
.val-mob-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 28px 20px; border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); transition: all 0.4s;
}
.val-mob-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: color-mix(in srgb, var(--c) 30%, transparent);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.val-mob-card .orbit-icon { margin-bottom: 0; }
.val-mob-card h3 {
    font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
    color: rgba(255,255,255,0.9); margin: 12px 0 6px;
}
.val-mob-card p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* About Stats */
.about-stats-section { padding: 80px 0; background: linear-gradient(135deg, var(--gray-900), #1a1a2e); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.about-stat-val { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.about-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* About CTA */
.about-cta-section { padding: 100px 0; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
/* Contact V2 */
.contact-v2 { padding: 0 0 100px; }
.cv2-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }

.cv2-info { position: sticky; top: 120px; }
.cv2-info-header { margin-bottom: 40px; }
.cv2-info-header h2 {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 12px; color: var(--gray-900);
}
.cv2-info-header p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; max-width: 380px; }

.cv2-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.cv2-detail {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s;
}
.cv2-detail:first-child { padding-top: 0; }
.cv2-detail:last-child { border-bottom: none; }
.cv2-detail:hover { padding-left: 8px; }
.cv2-detail-icon {
    width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-light), rgba(124,58,237,0.06));
    color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.cv2-detail-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.cv2-detail-text { display: flex; flex-direction: column; }
.cv2-detail-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; color: var(--gray-400); margin-bottom: 2px;
}
.cv2-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); }

.cv2-social { display: flex; align-items: center; gap: 16px; }
.cv2-social-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; color: var(--gray-400);
}
.cv2-social-links { display: flex; gap: 8px; }
.cv2-social-btn {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-50); color: var(--gray-400);
    border: 1px solid var(--gray-100); transition: all 0.3s;
}
.cv2-social-btn:hover {
    background: var(--blue); color: #fff;
    border-color: var(--blue); transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.cv2-form-area {
    padding: 44px; border-radius: 20px; background: var(--white);
    border: 1px solid var(--gray-200); box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.cv2-form { display: flex; flex-direction: column; gap: 20px; }
.cv2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cv2-field { display: flex; flex-direction: column; gap: 6px; }
.cv2-field label {
    font-size: 0.78rem; font-weight: 700; color: var(--gray-500);
    letter-spacing: 0.3px; text-transform: uppercase;
}
.cv2-field input,
.cv2-field select,
.cv2-field textarea {
    padding: 13px 16px; border-radius: 12px; border: 1px solid var(--gray-200);
    font-size: 0.92rem; font-family: var(--font-body); color: var(--gray-900);
    background: var(--gray-50); transition: all 0.3s; width: 100%;
}
.cv2-field input:focus,
.cv2-field select:focus,
.cv2-field textarea:focus {
    outline: none; border-color: var(--blue); background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.cv2-field textarea { resize: vertical; min-height: 120px; }
.cv2-success {
    text-align: center; padding: 48px 24px;
}
.cv2-success-icon {
    width: 80px; height: 80px; margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
    display: flex; align-items: center; justify-content: center;
    color: #22c55e;
}
.cv2-success h3 {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 8px;
}
.cv2-success p {
    font-size: 0.95rem; color: var(--gray-500); line-height: 1.7;
}
.cv2-field select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 40px;
}

/* FAQ */
.contact-faq { padding: 100px 0; background: var(--gray-50); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card {
    padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    background: var(--white); transition: all 0.3s;
}
.faq-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.faq-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ======================================================
   ANIMATED CTA (shared)
   ====================================================== */
.cta-animated {
    text-align: center; padding: 80px 40px; border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a1a2e 100%);
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.cta-animated .section-tag { background: rgba(37,99,235,0.2); color: #60a5fa; }
.cta-animated .section-h2 { color: var(--white); }
.cta-animated .section-sub { color: rgba(255,255,255,0.5); }
.cta-animated p { color: rgba(255,255,255,0.5); }

/* Orbs */
.cta-orb {
    position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px);
}
.cta-orb-1 {
    width: 300px; height: 300px; top: -80px; right: -60px;
    background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
    animation: cta-float 8s ease-in-out infinite;
}
.cta-orb-2 {
    width: 250px; height: 250px; bottom: -60px; left: -40px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent 70%);
    animation: cta-float 10s ease-in-out infinite reverse;
}
.cta-orb-3 {
    width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%);
    animation: cta-float 6s ease-in-out infinite 2s;
}
@keyframes cta-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* Grid */
.cta-grid-pattern {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Rotating ring */
.cta-ring {
    position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.08);
    pointer-events: none;
}
.cta-ring-1 {
    width: 400px; height: 400px; top: -100px; right: -100px;
    animation: spin 40s linear infinite;
}
.cta-ring-2 {
    width: 300px; height: 300px; bottom: -80px; left: -80px;
    animation: spin 30s linear infinite reverse;
}

/* Floating particles */
.cta-particle {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.15); pointer-events: none;
    animation: particle-drift 12s ease-in-out infinite;
}
.cta-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.cta-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: -3s; width: 3px; height: 3px; }
.cta-particle:nth-child(3) { top: 40%; left: 60%; animation-delay: -6s; width: 5px; height: 5px; background: rgba(37,99,235,0.3); }
.cta-particle:nth-child(4) { top: 80%; left: 30%; animation-delay: -9s; width: 3px; height: 3px; }
.cta-particle:nth-child(5) { top: 15%; left: 70%; animation-delay: -2s; background: rgba(124,58,237,0.3); }
.cta-particle:nth-child(6) { top: 70%; left: 45%; animation-delay: -5s; width: 6px; height: 6px; background: rgba(236,72,153,0.2); }
@keyframes particle-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(20px, -30px); opacity: 1; }
    50% { transform: translate(-15px, -60px); opacity: 0.5; }
    75% { transform: translate(10px, -20px); opacity: 0.8; }
}

.cta-animated .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.cta-animated .btn-outline {
    border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: transparent;
}
.cta-animated .btn-outline:hover {
    border-color: rgba(255,255,255,0.5); color: var(--white);
}

.cta-content { position: relative; z-index: 2; }

/* ======================================================
   HOME CTA
   ====================================================== */
.home-cta { padding: 100px 0; }

/* ======================================================
   ABOUT TEASER (Home)
   ====================================================== */
.about-teaser-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.about-teaser-cards { display: flex; flex-direction: column; gap: 16px; }

/* ======================================================
   PORTFOLIO PAGE
   ====================================================== */
.portfolio-hero-bg {
    background: linear-gradient(180deg, rgba(124,58,237,0.03) 0%, transparent 60%);
}

/* Clients grid */
.pf-clients { padding: 0 0 100px; }
.clients-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.client-pillar .pillar-num {
    font-size: 4rem;
}

/* Projects section */
.pf-projects { padding: 100px 0; background: var(--gray-50); }

.project-card {
    border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
    background: var(--white); overflow: hidden; transition: all 0.4s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

.project-card-featured {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 24px; align-items: stretch;
}
.project-card-featured .project-visual {
    padding: 28px; background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.project-card-featured .project-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.product-mockup--featured { width: 100%; }
.mockup-content--featured-img {
    padding: 0; position: relative; overflow: hidden; max-height: 360px;
}
.mockup-content--featured-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.project-card-featured .project-desc {
    font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px;
}

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.project-card-visual-sm { padding: 20px 20px 0; }

.project-info { padding: 24px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.project-tag {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    color: var(--tc); background: var(--tbg);
}
.project-card h3 {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    margin-bottom: 10px; letter-spacing: -0.01em;
}
.project-card-featured h3 { font-size: 1.4rem; margin-bottom: 8px; }
.project-desc {
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px;
}

.project-results { display: flex; gap: 24px; margin-bottom: 20px; padding: 16px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.project-result { display: flex; flex-direction: column; }
.pr-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gray-900); }
.project-card-featured .pr-val { font-size: 1.6rem; }
.pr-label { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }

.project-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.project-tech span {
    font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 6px;
    background: var(--gray-50); color: var(--gray-400); border: 1px solid var(--gray-100);
}

/* Portfolio stats */
.pf-stats-section {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a1a2e 100%);
}
.pf-stats-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.pf-stats-orb--1 {
    width: 400px; height: 400px; top: -100px; left: -100px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
}
.pf-stats-orb--2 {
    width: 350px; height: 350px; bottom: -80px; right: -80px;
    background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
}
.pf-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.pf-stat-card {
    padding: 36px 24px; border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    transition: all 0.4s;
}
.pf-stat-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pf-stat-ring { flex-shrink: 0; }
.pf-stat-val {
    display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
    color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.pf-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

/* Industries */
.pf-industries { padding: 100px 0; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Testimonials */
.pf-testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    background: var(--white); transition: all 0.4s;
    display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.tm-quote {
    font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px;
    flex: 1; font-style: italic;
}
.tm-author { display: flex; align-items: center; gap: 12px; }
.tm-avatar {
    width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--white);
}
.tm-name { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; }
.tm-role { font-size: 0.78rem; color: var(--gray-400); }

/* ======================================================
   RESPONSIVE: NEW PAGES
   ====================================================== */
@media (max-width: 1024px) {
    .vm-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-orbit { transform: scale(0.75); transform-origin: center center; height: 540px; }
    .orbit-item { width: 140px; height: 140px; }
    .orbit-name { font-size: 0.68rem; }
    .orbit-center { width: 120px; height: 120px; }
    .orbit-logo { font-size: 1.8rem; }
    .cv2-grid { grid-template-columns: 1fr; }
    .cv2-info { position: static; }
    .about-teaser-layout { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card-featured { grid-template-columns: 1fr; }
    .mockup-content--featured-img { max-height: 260px; }
    .projects-grid { grid-template-columns: 1fr; }
    .pf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .products-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .values-orbit { display: none; }
    .values-mobile-grid {
        display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cv2-form-area { padding: 28px 20px; }
    .cv2-form-row { grid-template-columns: 1fr; }
    .home-cta-box { padding: 56px 24px; }
    .vm-card { padding: 28px 24px; }
    .clients-grid { grid-template-columns: 1fr; }
    .project-card-featured .project-info, .project-card-featured .project-visual { padding: 24px; }
    .project-results { gap: 16px; }
    .pf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-links { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ft-cta-text h3 { font-size: 1.15rem; }
    .ft-cta-btn { width: 100%; justify-content: center; }
    .error-link-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== 404 ERROR PAGE ========== */
.error-page {
    padding: 120px 0 100px;
    min-height: 70vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.error-content {
    text-align: center;
    max-width: 600px; margin: 0 auto;
}

.error-visual {
    position: relative; margin-bottom: 48px;
    display: flex; justify-content: center;
}
.error-num {
    display: flex; align-items: center; gap: 0; justify-content: center;
    position: relative; z-index: 2;
}
.en-4 {
    font-family: var(--font-display);
    font-size: clamp(6rem, 14vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.en-orbit {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin: 0 -8px;
}
.en-planet {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    position: relative;
    animation: en-float 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.3), 0 0 120px rgba(124, 58, 237, 0.15);
}
.en-ring {
    position: absolute; inset: -16px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    transform: rotateX(65deg);
    animation: en-spin 6s linear infinite;
}
.en-ring::after {
    content: '';
    position: absolute; top: -4px; left: 50%;
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue);
}

.error-particles {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
}
.error-particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: en-particle 3s ease-in-out infinite;
}
.error-particles span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.error-particles span:nth-child(2) { top: 20%; right: 18%; animation-delay: 0.5s; width: 6px; height: 6px; background: #7c3aed; }
.error-particles span:nth-child(3) { bottom: 25%; left: 22%; animation-delay: 1s; width: 3px; height: 3px; }
.error-particles span:nth-child(4) { bottom: 15%; right: 12%; animation-delay: 1.5s; width: 5px; height: 5px; background: #7c3aed; }
.error-particles span:nth-child(5) { top: 40%; left: 5%; animation-delay: 2s; }
.error-particles span:nth-child(6) { top: 35%; right: 8%; animation-delay: 2.5s; width: 3px; height: 3px; background: #7c3aed; }

@keyframes en-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes en-spin {
    from { transform: rotateX(65deg) rotateZ(0deg); }
    to { transform: rotateX(65deg) rotateZ(360deg); }
}
@keyframes en-particle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.error-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.error-desc {
    font-size: 1rem; color: var(--gray-500);
    line-height: 1.7; margin-bottom: 36px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.error-actions {
    display: flex; gap: 12px; justify-content: center;
    margin-bottom: 56px; flex-wrap: wrap;
}

.error-links {
    border-top: 1px solid var(--gray-100);
    padding-top: 36px;
}
.error-links > span {
    display: block;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.error-link-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.error-link-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px 16px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-500);
    font-size: 0.85rem; font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}
.error-link-card:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}
.error-link-card svg { opacity: 0.5; transition: opacity 0.3s; }
.error-link-card:hover svg { opacity: 1; }
