/* ===== CSS Variables & Reset ===== */
:root {
    --bg: #04000b;
    --bg-secondary: #0a0614;
    --surface: #0f0b1a;
    --surface-hover: #151025;
    --border: rgba(255, 214, 10, 0.08);
    --border-hover: rgba(255, 214, 10, 0.2);
    --text: #e0e0e8;
    --text-muted: #8888a4;
    --text-dim: #555570;
    --heading: #ffffff;
    --cyan: #FFD60A;
    --cyan-dark: #E6B800;
    --cyan-glow: rgba(255, 214, 10, 0.15);
    --cyan-glow-strong: rgba(255, 214, 10, 0.3);
    --gradient: linear-gradient(135deg, #FFD60A 0%, #FFC107 30%, #E6B800 60%, #FFB300 100%);
    --gradient-text: linear-gradient(135deg, #FFD60A, #FFC107, #E6B800, #FFB300, #FFD60A);
    --nav-scrolled-bg: rgba(4, 0, 11, 0.85);
    --nav-mobile-bg: rgba(4, 0, 11, 0.95);
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--cyan-glow);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ===== Light Theme ===== */
[data-theme="light"] {
    --bg: #f8f9fc;
    --bg-secondary: #eef0f5;
    --surface: #ffffff;
    --surface-hover: #f0f2f8;
    --border: rgba(230, 81, 0, 0.12);
    --border-hover: rgba(230, 81, 0, 0.3);
    --text: #3a3f55;
    --text-muted: #5c6280;
    --text-dim: #8890a8;
    --heading: #1a1e30;
    --cyan: #E65100;
    --cyan-dark: #BF4400;
    --cyan-glow: rgba(230, 81, 0, 0.1);
    --cyan-glow-strong: rgba(230, 81, 0, 0.2);
    --gradient: linear-gradient(135deg, #E65100 0%, #D84A00 30%, #BF4400 60%, #F57C00 100%);
    --gradient-text: linear-gradient(135deg, #E65100, #D84A00, #BF4400, #F57C00, #E65100);
    --nav-scrolled-bg: rgba(248, 249, 252, 0.9);
    --nav-mobile-bg: rgba(248, 249, 252, 0.97);
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 40px rgba(230, 81, 0, 0.08);
}

[data-theme="light"] .logo-text,
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .service-card h3,
[data-theme="light"] .step-content h3,
[data-theme="light"] .feature h4,
[data-theme="light"] .faq-question span,
[data-theme="light"] .testimonial-author strong,
[data-theme="light"] .footer-col h4 {
    color: var(--heading);
}

[data-theme="light"] .stat-number,
[data-theme="light"] .result-number {
    color: var(--heading);
}

[data-theme="light"] .cursor-glow {
    background: radial-gradient(circle, rgba(230, 81, 0, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .hero-badge {
    background: rgba(230, 81, 0, 0.06);
    border-color: rgba(230, 81, 0, 0.2);
}

[data-theme="light"] .btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 24px rgba(230, 81, 0, 0.2);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(230, 81, 0, 0.3), 0 4px 16px rgba(230, 81, 0, 0.15);
}

[data-theme="light"] .btn-ghost {
    border-color: rgba(230, 81, 0, 0.25);
    color: var(--text);
}

[data-theme="light"] .btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(230, 81, 0, 0.05);
}

[data-theme="light"] .service-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-card:hover {
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .service-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, rgba(230, 81, 0, 0.04) 100%);
}

[data-theme="light"] .service-badge {
    background: var(--gradient);
    color: #fff;
}

[data-theme="light"] .service-icon {
    background: rgba(230, 81, 0, 0.06);
    border-color: rgba(230, 81, 0, 0.15);
}

[data-theme="light"] .step-number {
    background: var(--bg);
    border-color: rgba(230, 81, 0, 0.3);
}

[data-theme="light"] .process-step:hover .step-number {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

[data-theme="light"] .orbit-dot {
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(230, 81, 0, 0.3);
}

[data-theme="light"] .visual-ring {
    border-color: rgba(230, 81, 0, 0.12) !important;
}

[data-theme="light"] .ring-2 { border-color: rgba(230, 81, 0, 0.18) !important; }
[data-theme="light"] .ring-3 { border-color: rgba(230, 81, 0, 0.25) !important; }

[data-theme="light"] .visual-core {
    background: radial-gradient(circle, rgba(230, 81, 0, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .floating-tag {
    background: #fff;
    border-color: rgba(230, 81, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .result-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .package-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .package-card:hover {
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .package-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, rgba(230, 81, 0, 0.04) 100%);
}

[data-theme="light"] .package-badge {
    background: var(--gradient);
    color: #fff;
}

[data-theme="light"] .package-icon {
    background: rgba(230, 81, 0, 0.06);
    border-color: rgba(230, 81, 0, 0.15);
}

[data-theme="light"] .nav-dropdown-menu {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-dropdown-menu a:hover {
    background: rgba(230, 81, 0, 0.06);
}

[data-theme="light"] .faq-question {
    color: var(--heading);
}

[data-theme="light"] .contact-form {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: var(--bg);
    color: var(--text);
    border-color: rgba(230, 81, 0, 0.15);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 16px rgba(230, 81, 0, 0.1);
}

[data-theme="light"] .social-link {
    background: var(--bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .social-link:hover {
    background: rgba(230, 81, 0, 0.06);
}

[data-theme="light"] .nav-toggle span {
    background: var(--heading);
}

[data-theme="light"] .nav-links.open {
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .logo-dot {
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(230, 81, 0, 0.3);
}

[data-theme="light"] .scroll-line {
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
    border-color: var(--cyan);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--cyan);
    transition: transform 0.4s var(--ease);
}

.theme-toggle:hover svg {
    transform: rotate(30deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon { position: absolute; transition: opacity 0.3s ease, transform 0.4s var(--ease); }

.theme-toggle .icon-sun { opacity: 1; }
.theme-toggle .icon-moon { opacity: 0; }

[data-theme="light"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan-dark) var(--bg);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body *, body *::before, body *::after {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

body:hover .cursor-glow { opacity: 1; }

/* ===== Particle Canvas ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 47px;
    margin-bottom: 16px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--heading);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan-glow-strong);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    color: var(--cyan);
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 30px var(--cyan-glow-strong);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 214, 10, 0.06);
    color: var(--cyan);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    z-index: 1;
    overflow: hidden;
}

/* Hero 3D scene */
#heroThree {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#heroThree canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 32px;
    background: rgba(255, 214, 10, 0.03);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--heading);
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 40px rgba(255, 214, 10, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(255, 214, 10, 0.3), 0 4px 20px rgba(255, 214, 10, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid var(--border-hover);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(255, 214, 10, 0.05);
}

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

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--heading);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.3; height: 40px; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* ===== Sections ===== */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--cyan-dark);
}

.section-tag::before { right: calc(100% + 12px); }
.section-tag::after { left: calc(100% + 12px); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--heading);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--cyan-glow);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 214, 10, 0.03) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--cyan);
    color: var(--bg);
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 10, 0.06);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--cyan);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    background: rgba(255, 214, 10, 0.12);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.service-card:hover .service-tags span {
    border-color: var(--border-hover);
    color: var(--text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    transition: gap 0.3s var(--ease);
}

.service-link:hover { gap: 12px; }

/* ===== Process Section ===== */
.process {
    background: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient);
    transition: height 0.1s linear;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

.process-step:nth-child(odd) .step-content { grid-column: 1; text-align: right; }
.process-step:nth-child(odd) .step-number { grid-column: 2; }
.process-step:nth-child(odd) .step-visual { grid-column: 3; }

.process-step:nth-child(even) .step-visual { grid-column: 1; text-align: right; }
.process-step:nth-child(even) .step-number { grid-column: 2; }
.process-step:nth-child(even) .step-content { grid-column: 3; }

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    background: var(--bg);
    border: 2px solid var(--border-hover);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.process-step:hover .step-number {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 30px var(--cyan-glow-strong);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Orbit animation in process steps */
.step-visual {
    display: flex;
    justify-content: center;
}

.orbit-ring {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    animation: ring-rotate 8s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-glow-strong);
}

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

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left .section-tag::before,
.about-left .section-tag::after { display: none; }

.about-left .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 10, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--cyan);
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About visual / floating rings */
.about-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 214, 10, 0.1);
    animation: ring-rotate 20s linear infinite;
}

.visual-ring:first-child {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(255, 214, 10, 0.15) !important;
    animation-direction: reverse !important;
    animation-duration: 15s !important;
}

.ring-3 {
    width: 45%;
    height: 45%;
    top: 27.5%;
    left: 27.5%;
    border-color: rgba(255, 214, 10, 0.2) !important;
    animation-duration: 10s !important;
}

.visual-core {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.core-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
}

.core-logo {
    width: 80px;
    height: auto;
    display: block;
}

.floating-tag {
    position: absolute;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    animation: float 6s ease-in-out infinite;
}

.tag-1 { top: 5%; left: 10%; animation-delay: 0s; }
.tag-2 { top: 15%; right: 5%; animation-delay: 1s; }
.tag-3 { bottom: 15%; left: 0; animation-delay: 2s; }
.tag-4 { bottom: 5%; right: 10%; animation-delay: 3s; }
.tag-5 { top: 50%; right: -5%; animation-delay: 4s; }

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

/* ===== Results Section ===== */
.results {
    background: var(--bg-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s var(--ease);
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.result-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading);
    display: inline;
}

.result-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
    display: inline;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 16px;
}

.result-bar {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.result-fill {
    height: 100%;
    width: 0;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 1.5s var(--ease);
}

.result-card.visible .result-fill {
    width: var(--width);
}

/* ===== Packages Section ===== */
.packages {
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--cyan-glow);
}

.package-card:hover::before { opacity: 1; }

.package-card.featured {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 214, 10, 0.03) 100%);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--cyan);
    color: var(--bg);
    border-radius: 100px;
}

.package-header {
    margin-bottom: 24px;
}

.package-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 10, 0.06);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--cyan);
    transition: all 0.4s var(--ease);
}

.package-card:hover .package-icon {
    background: rgba(255, 214, 10, 0.12);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.package-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading);
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-features li svg {
    color: var(--cyan);
    min-width: 16px;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--heading);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--cyan); }

.faq-question svg {
    min-width: 20px;
    color: var(--text-dim);
    transition: transform 0.4s var(--ease), color 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .section-tag::before,
.contact-left .section-tag::after { display: none; }

.contact-left .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-left > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-item svg { color: var(--cyan); min-width: 20px; }
.contact-item a { transition: color 0.3s ease; }
.contact-item a:hover { color: var(--cyan); }

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(255, 214, 10, 0.06);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan-dark);
    box-shadow: 0 0 20px var(--cyan-glow);
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== Reveal Animations ===== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { grid-template-columns: 1fr; gap: 16px; text-align: center !important; }
    .process-step .step-content,
    .process-step .step-number,
    .process-step .step-visual { grid-column: 1 !important; text-align: center !important; }
    .process-line { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { width: 300px; height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(4, 0, 11, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .hero-title { letter-spacing: -1px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .stat-divider { width: 40px; height: 1px; }

    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
    }

    .nav-dropdown-menu a {
        padding: 8px 0;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
    .results-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}
