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

/* ================================
   CSS CUSTOM PROPERTIES FOR ANIMATED GRADIENTS
   ================================ */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@property --glow-opacity {
    syntax: '<number>';
    initial-value: 0;
    inherits: false;
}

:root {
    --black: #000000;
    --bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.025);
    --card-border: rgba(255, 255, 255, 0.06);
    --orange: #FF6B35;
    --orange-light: #FF9500;
    --pink: #FF2D87;
    --purple: #7C3AED;
    --purple-light: #8B5CF6;
    --cyan: #00D4FF;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-300: #B0B0B0;
    --gray-400: #888888;
    --gray-500: #666666;
    --font-display: 'Outfit', sans-serif;
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image: radial-gradient(circle 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Cursor gradient glow — follows mouse */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, rgba(178, 75, 243, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 10;
    will-change: transform;
    filter: blur(2px);
}

main {
    position: relative;
    z-index: 1;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================
   GRADIENT TEXT — replaces flat orange/purple
   ================================ */
.orange {
    background: linear-gradient(135deg, #FF6B35, #FF4500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.purple {
    background: linear-gradient(135deg, #FF6B35, #FF4500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   TYPOGRAPHY — Syne for headings
   ================================ */
h1, h2, h3 {
    font-family: var(--font-display);
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 18px 0;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.01em;
}
.nav-logo svg { width: 36px; height: 36px; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-300);
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FF6B35, #B24BF3);
}
.nav-links .has-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-links .chevron {
    width: 12px; height: 12px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}
.nav-links li:hover > .has-dropdown .chevron {
    transform: rotate(180deg);
}

/* Dropdown menus */
.nav-links li {
    position: relative;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 600;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.nav-links li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(12px);
}
.nav-dropdown li { position: static; }
.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--gray-300) !important;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease !important;
    white-space: nowrap;
}
.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white) !important;
}
.nav-dropdown a.active { color: var(--white) !important; }
.nav-dropdown a.active::after { display: none; }
.nav-links li:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 16px;
}

/* ================================
   HOLOGRAPHIC BUTTONS
   ================================ */
.btn-book {
    display: inline-block;
    padding: 11px 26px;
    background: rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmerSlide 3s ease-in-out infinite;
    pointer-events: none;
}
.btn-book:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.2), 0 0 48px rgba(255, 69, 0, 0.06);
}

@keyframes rotateBorder {
    to { --border-angle: 360deg; }
}

/* Primary CTA button — warm glass glow */
.btn-glow {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255, 107, 53, 0.06);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    background-size: 200% 100%;
    animation: shimmerSlide 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmerSlide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.btn-glow:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.15), 0 0 60px rgba(255, 69, 0, 0.06);
}

/* Legacy button compat — same warm glass style */
.btn-purple {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255, 107, 53, 0.06);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.btn-purple::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    background-size: 200% 100%;
    animation: shimmerSlide 3s ease-in-out infinite;
    pointer-events: none;
}
.btn-purple:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.15), 0 0 48px rgba(255, 69, 0, 0.06);
}

.btn-white {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    background-size: 200% 100%;
    animation: shimmerSlide 3s ease-in-out infinite;
    pointer-events: none;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

/* Mouse tracking for buttons */
.btn-book, .btn-glow, .btn-purple, .btn-white {
    cursor: pointer;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 499;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
}

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 48px 80px;
}

/* Gradient blob — enhanced cursor reactivity + idle breathing */
.hero-blob {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 40%,
        rgba(90, 20, 180, 0.9) 0%,
        rgba(60, 10, 130, 0.8) 20%,
        rgba(200, 80, 40, 0.6) 50%,
        rgba(245, 124, 0, 0.8) 70%,
        rgba(245, 124, 0, 0.3) 85%,
        transparent 100%
    );
    filter: blur(40px);
    will-change: transform;
    animation: blobIdle 12s ease-in-out infinite alternate;
}
@keyframes blobIdle {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-48%, -52%) scale(1.04) rotate(3deg); }
    100% { transform: translate(-52%, -48%) scale(0.97) rotate(-2deg); }
}

.hero-blob-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%,
        rgba(30, 0, 80, 1) 0%,
        rgba(60, 10, 150, 0.9) 40%,
        rgba(140, 50, 200, 0.5) 70%,
        transparent 100%
    );
    filter: blur(20px);
    will-change: transform;
    transition: transform 0.08s linear;
}

/* Orbital rings wrapper — mouse reactive tilt */
.hero-orbitals-wrap {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.hero-orbital {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

/* Electron dots orbiting the rings */
.hero-orbital::after {
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    top: -3px; left: 50%;
    transform: translateX(-50%);
}

.hero-orbital-1 {
    width: 500px; height: 500px;
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg);
    animation: orbital1 20s linear infinite;
}
.hero-orbital-1::after {
    background: #FF6B35;
    box-shadow: 0 0 12px #FF6B35, 0 0 24px rgba(255, 107, 53, 0.4);
}

.hero-orbital-2 {
    width: 650px; height: 650px;
    transform: translate(-50%, -50%) rotateX(72deg) rotateZ(40deg);
    animation: orbital2 28s linear infinite;
    border-color: rgba(255, 107, 53, 0.07);
}
.hero-orbital-2::after {
    background: #B24BF3;
    box-shadow: 0 0 12px #B24BF3, 0 0 24px rgba(178, 75, 243, 0.4);
    width: 4px; height: 4px;
}

.hero-orbital-3 {
    width: 780px; height: 780px;
    transform: translate(-50%, -50%) rotateX(55deg) rotateZ(-20deg);
    animation: orbital3 35s linear infinite;
    border-color: rgba(124, 58, 237, 0.06);
}
.hero-orbital-3::after {
    background: #00D4FF;
    box-shadow: 0 0 10px #00D4FF, 0 0 20px rgba(0, 212, 255, 0.3);
    width: 3px; height: 3px;
}

@keyframes orbital1 { to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); } }
@keyframes orbital2 { to { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(400deg); } }
@keyframes orbital3 { to { transform: translate(-50%, -50%) rotateX(55deg) rotateZ(340deg); } }

/* Floating quantum particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.q-particle {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    animation: particleFloat linear infinite;
}
.q-particle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5), transparent 70%);
}
.q-particle:nth-child(even)::after {
    background: radial-gradient(circle, rgba(178, 75, 243, 0.5), transparent 70%);
}
.q-particle:nth-child(3n)::after {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.6); }
    8% { opacity: 0.5; }
    85% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-500px) scale(0.8); }
}

.hero-orange-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(245, 124, 0, 0.15) 65%, rgba(245, 124, 0, 0.4) 80%, var(--orange) 100%);
    pointer-events: none;
}
.hero-edge-fade {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 12%),
        linear-gradient(to top, var(--black) 0%, transparent 15%),
        linear-gradient(to right, var(--black) 0%, transparent 12%),
        linear-gradient(to left, var(--black) 0%, transparent 12%);
    pointer-events: none;
}

/* Noise/grain overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}
.hero h1 {
    font-size: clamp(48px, 7.5vw, 96px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--gray-300);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

/* ================================
   PARTNERS
   ================================ */
.partners {
    padding: 100px 48px;
    text-align: center;
}
.partners h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.partners-sub {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 56px;
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.partner-logo {
    font-size: 32px;
    font-weight: 400;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 12px;
}
.partner-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ================================
   CAPABILITIES — Glass 3D tilt cards
   ================================ */
.capabilities {
    padding: 100px 48px 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.capabilities h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    perspective: 1200px;
}

.cap-card {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 44px 36px;
    transition: border-color 0.4s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    animation: cardFloat 6s ease-in-out infinite;
}
.cap-card:nth-child(1) { animation-delay: 0s; }
.cap-card:nth-child(2) { animation-delay: -2s; }
.cap-card:nth-child(3) { animation-delay: -4s; }

@keyframes cardFloat {
    0%, 100% { transform: perspective(800px) translateY(0px); }
    50% { transform: perspective(800px) translateY(-8px); }
}

.cap-card:hover {
    animation-play-state: paused;
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(255, 107, 53, 0.03);
}

/* Animated gradient border on hover */
.cap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 40%,
        rgba(255, 107, 53, 0.4) 48%,
        rgba(178, 75, 243, 0.4) 52%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.cap-card:hover::before { opacity: 1; }

/* Inner mouse-following glow */
.cap-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 107, 53, 0.18), rgba(255, 107, 53, 0.06) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.cap-card:hover::after { opacity: 1; }
.cap-card:hover p {
    color: var(--gray-100);
    transition: color 0.4s ease;
}
.cap-card:hover h3 {
    color: #fff;
    transition: color 0.4s ease;
}

.cap-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(178, 75, 243, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
}

.cap-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: auto;
    padding-bottom: 28px;
}
.cap-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}
.cap-cta {
    text-align: center;
    padding: 20px 0 60px;
}

/* ================================
   TRUSTED BY — Scrolling client names
   ================================ */
.clients {
    padding: 50px 0;
    overflow: hidden;
}
.clients-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-fade { display: none; }
.marquee-track-outer {
    display: flex;
    width: fit-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}
.marquee-wrapper:hover .marquee-track-outer {
    animation-play-state: paused;
}
.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.client-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    transition: color 0.4s, text-shadow 0.4s;
    padding: 0 12px;
    cursor: default;
}
.client-name:hover {
    color: var(--white);
    text-shadow: 0 0 24px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.2);
}
.client-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 10px;
    padding: 0 16px;
    user-select: none;
}

/* ================================
   UNFAIR ADVANTAGE — Floating agent cards
   ================================ */
.advantage {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.advantage h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.agent-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
    perspective: 1200px;
}

.agent-card {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    animation: cardFloat 7s ease-in-out infinite;
}
.agent-card:nth-child(2) { animation-delay: -3s; }

.agent-card:hover { animation-play-state: paused; }

/* Animated gradient border on hover — warm orange light */
.agent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 35%,
        rgba(255, 107, 53, 0.4) 45%,
        rgba(255, 80, 40, 0.35) 55%,
        transparent 65%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.agent-card:hover::before { opacity: 1; }

/* Inner glow — warm orange */
.agent-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 107, 53, 0.18), rgba(255, 107, 53, 0.06) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.agent-card:hover::after { opacity: 1; }

.agent-card:hover {
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
}
.agent-card:hover .agent-card-desc {
    color: var(--gray-100);
    transition: color 0.4s ease;
}
.agent-card:hover .agent-card-title {
    color: #fff;
    transition: color 0.4s ease;
}

.agent-card-inner {
    padding: 36px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.agent-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}
.agent-card-header .logo-sm {
    width: 28px; height: 28px;
}
.agent-card-header span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-300);
}
.agent-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.agent-card-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.agent-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--orange);
    margin-right: 8px;
    margin-bottom: 8px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.agent-tag:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.15);
}

.advantage-cta {
    text-align: center;
    margin-bottom: 80px;
}

/* Testimonial carousel */
/* Testimonial — clean editorial style */
.testimonial-block {
    padding: 80px 0 60px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.testimonial-quote, .testimonial-source {
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-quote.fade-out {
    opacity: 0 !important;
    transform: translateY(-10px);
}
.testimonial-source.fade-out {
    opacity: 0 !important;
    transform: translateY(-6px);
}
.testimonial-quote.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-source.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}
.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 800;
    line-height: 0.6;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.testimonial-quote {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
    color: var(--gray-300);
    font-style: italic;
    font-weight: 300;
    border: none;
    margin: 0;
    padding: 0;
}
.testimonial-source {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray-400);
}
.testimonial-dash {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: rgba(255, 107, 53, 0.5);
}

/* ================================
   FINAL CTA
   ================================ */
.final-cta {
    position: relative;
    padding: 140px 48px 120px;
    overflow: hidden;
}
.final-cta-blob {
    position: absolute;
    top: -20%; right: -15%;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(200, 80, 40, 0.5) 0%,
        rgba(245, 124, 0, 0.4) 30%,
        rgba(140, 50, 180, 0.3) 60%,
        transparent 80%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: ctaBlobShift 10s ease-in-out infinite alternate;
}
@keyframes ctaBlobShift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-20px, 20px); }
}
.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.final-cta h2 {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}
.final-cta p {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 48px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    padding: 72px 48px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    max-width: 1400px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}
.footer-brand svg { width: 44px; height: 44px; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
    font-size: 15px;
    color: var(--gray-400);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .cap-grid { grid-template-columns: 1fr; max-width: 600px; }
    .agent-showcase { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-right { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .partners, .capabilities, .advantage { padding-left: 24px; padding-right: 24px; }
    .clients { padding: 40px 0; }
    .final-cta { padding: 100px 24px 80px; }
    .footer { padding: 48px 24px 32px; }
    .hero-blob { width: 600px; height: 600px; }
    .partners-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cap-card { padding: 32px 24px; min-height: auto; }
}

/* ================================
   SUBPAGE SHARED STYLES
   ================================ */

/* Page header */
.page-header {
    padding: 180px 48px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.page-header h1 {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.page-header .page-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    background: linear-gradient(135deg, #FF6B35, #FF4500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.page-header .page-desc {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 36px;
}

/* Section styling */
.section {
    padding: 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-dark {
    background: rgba(255, 255, 255, 0.015);
    max-width: 100%;
    padding: 80px 48px;
}
.section-dark .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section h2 .orange {
    background: linear-gradient(135deg, #FF6B35, #FF4500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section h2 .purple {
    background: linear-gradient(135deg, #FF6B35, #FF4500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section p.section-text {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.75;
    max-width: 800px;
    margin-bottom: 48px;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.process-step {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 40%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.process-step:hover::before { opacity: 1; }
.process-step:hover {
    border-color: rgba(255, 107, 53, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.06), 0 16px 48px rgba(0,0,0,0.3);
}
.process-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.process-step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 40%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    border-color: rgba(255, 107, 53, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.06), 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Package / checklist */
.package-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px;
    max-width: 700px;
    margin: 48px auto 0;
}
.package-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.6;
}
.check-item .check-icon {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.package-cta {
    text-align: center;
    margin-top: 40px;
}

/* Case study cards */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.case-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 40%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.case-card:hover::before { opacity: 1; }
.case-card:hover {
    border-color: rgba(255, 107, 53, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.06), 0 16px 48px rgba(0,0,0,0.3);
}
.case-card .case-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.case-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.case-card .case-subtitle {
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 16px;
    font-weight: 500;
}
.case-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Compliance badges */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--orange);
}
.badge svg {
    width: 16px;
    height: 16px;
}

/* FAQ accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    padding: 0;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--orange); }
.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--gray-400);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}
.faq-answer p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.75;
}

/* Security architecture diagram */
.arch-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 48px 0;
    padding: 40px 0;
}
.arch-node {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.arch-node:hover {
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.06);
}
.arch-node h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.arch-node p {
    font-size: 12px;
    color: var(--gray-500);
}
.arch-arrow {
    color: var(--gray-500);
    font-size: 24px;
}

/* Contact form */
.contact-form {
    max-width: 600px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-300);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 0 20px rgba(255, 107, 53, 0.06);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

/* Legal/text pages */
.legal-content {
    max-width: 800px;
    padding: 180px 48px 100px;
    margin: 0 auto;
}
.legal-content h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.legal-content .legal-updated {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 48px;
}
.legal-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--white);
}
.legal-content p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}
.legal-content li {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.legal-content li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--orange);
}
.legal-content a {
    color: var(--purple-light);
    transition: color 0.3s;
}
.legal-content a:hover { color: var(--orange); }

/* Booking page */
.booking-section {
    padding: 180px 48px 100px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.booking-section h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.booking-section .booking-desc {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.65;
}
.booking-embed {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solutions grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Language section */
.lang-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(255, 107, 53, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px;
    margin-top: 60px;
}
.lang-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.lang-section p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.75;
    max-width: 700px;
}

/* Subpage responsive */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: 1fr; max-width: 600px; }
    .solutions-grid { grid-template-columns: 1fr; max-width: 600px; }
    .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .page-header { padding: 140px 24px 60px; }
    .section { padding: 60px 24px; }
    .section-dark { padding: 60px 24px; }
    .process-grid { grid-template-columns: 1fr; }
    .package-box { padding: 32px 24px; }
    .legal-content { padding: 140px 24px 80px; }
    .booking-section { padding: 140px 24px 80px; }
    .arch-diagram { flex-direction: column; }
    .arch-arrow { transform: rotate(90deg); }
}
