:root {
    --bg: #000000;
    --bg-alt: #080808;
    --bg-card: #0a0a0a;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --emerald: #50C878;
    --emerald-rgb: 80, 200, 120;
    --text: #FFFFFF;
    --text-dim: #999999;
    --text-muted: #555555;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
    z-index: 1001;
    transition: width 0.1s linear;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

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

.back-to-top:hover {
    background: rgba(var(--gold-rgb), 0.2);
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Staggered reveal delays */
[data-reveal] { transition-delay: 0s; }
.services-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.stats-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.stats-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.stats-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.stats-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.pricing-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.pricing-grid [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.premium-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.premium-grid [data-reveal]:nth-child(2) { transition-delay: 0.05s; }
.premium-grid [data-reveal]:nth-child(3) { transition-delay: 0.1s; }
.premium-grid [data-reveal]:nth-child(4) { transition-delay: 0.15s; }
.premium-grid [data-reveal]:nth-child(5) { transition-delay: 0.2s; }
.premium-grid [data-reveal]:nth-child(6) { transition-delay: 0.25s; }

.noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    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");
    pointer-events: none;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}

.text-gold {
    background: linear-gradient(135deg, #FFD700, var(--gold), #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0,0,0,0.95);
    box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
}

.logo img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 2.5px;
    font-weight: 600;
}

.nav { display: flex; gap: 2.5rem; align-items: center; }
.nav-mobile-actions { display: none; }

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

.header-actions { display: flex; gap: 0.75rem; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-green {
    background: var(--emerald);
    color: #000;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--emerald-rgb), 0.3);
    background: #5ee68b;
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background: rgba(var(--gold-rgb), 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-whatsapp svg { width: 16px; height: 16px; }

.arrow, .plane { display: inline-block; transition: transform 0.3s ease; }
.btn-green:hover .arrow { transform: translateX(4px); }
.btn-submit:hover .plane { transform: translate(4px, -4px); }

/* === MOBILE TOGGLE === */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(var(--gold-rgb), 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(var(--emerald-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald);
    animation: pulse 2s infinite;
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }

.hero-metrics {
    display: flex;
    gap: 2.5rem;
}

.hm-item { display: flex; flex-direction: column; }

.hm-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hm-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Orb */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-container {
    position: relative;
    width: 340px;
    height: 340px;
}

.orb-core {
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 2px solid var(--border);
}

.orb-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    animation: orb-spin 8s linear infinite;
}

.orb-ring-2 {
    inset: 30px;
    border-color: rgba(var(--emerald-rgb), 0.08);
    animation-duration: 12s;
    animation-direction: reverse;
}

.orb-ring-3 {
    inset: 15px;
    border-color: rgba(var(--gold-rgb), 0.06);
    border-style: dashed;
    animation-duration: 16s;
}

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

.orb-label {
    position: absolute;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    animation: float-label 4s ease-in-out infinite;
}

.orb-l-1 { top: -5%; right: -5%; animation-delay: 0s; }
.orb-l-2 { bottom: 10%; left: -10%; animation-delay: 1.5s; }
.orb-l-3 { top: 45%; right: -20%; animation-delay: 3s; }

@keyframes float-label {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(5px); }
}

/* Marquee */
.marquee {
    margin-top: 4rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: rgba(255,255,255,0.01);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #444;
}

@keyframes marquee-scroll {
    to { transform: translateX(-50%); }
}

/* === SECTIONS === */
.section {
    padding: 7rem 0;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-header { margin-bottom: 3.5rem; }

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card.featured {
    border-color: rgba(var(--emerald-rgb), 0.2);
    box-shadow: 0 0 40px rgba(var(--emerald-rgb), 0.04);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--emerald);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 1px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--gold-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.service-card.featured .service-icon {
    background: rgba(var(--emerald-rgb), 0.1);
}

.service-card.featured .service-icon svg { color: var(--emerald); }

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
}

.service-features li::before {
    content: '→';
    color: var(--emerald);
    font-weight: 600;
}

/* === STATS === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: rgba(var(--gold-rgb), 0.25);
    box-shadow: 0 0 50px rgba(var(--gold-rgb), 0.05);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: #000;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 2px;
}

.pricing-header { margin-bottom: 2rem; }

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.pricing-amount {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dim);
    vertical-align: top;
    margin-right: 2px;
}

.pricing-amount .amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
}

.pricing-features li::before {
    content: '✓';
    color: var(--emerald);
    font-weight: 700;
}

/* === PREMIUM STACK === */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.premium-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.premium-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.premium-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--gold-rgb), 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.premium-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.premium-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.premium-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* === WORK / PORTFOLIO === */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.work-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.work-image {
    height: 200px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.work-placeholder svg {
    width: 48px;
    height: 48px;
    color: #333;
}

.work-info {
    padding: 1.5rem;
}

.work-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--emerald);
    background: rgba(var(--emerald-rgb), 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.work-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.work-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

.work-cta {
    text-align: center;
    margin-top: 3rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* === PARTNERS === */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.partner-logo { margin-bottom: 1.5rem; }

.partner-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.partner-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.partner-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* === PROCESS === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(var(--gold-rgb), 0.15);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* === FAQ === */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 0;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-dim);
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    overflow: hidden;
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* === CONTACT === */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.contact-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-benefits li {
    font-size: 0.9rem;
    color: var(--text-dim);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-benefits .check {
    color: var(--emerald);
    font-weight: 700;
}

.contact-direct {
    display: flex;
    gap: 1rem;
}

.form-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.form-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--emerald);
    background: rgba(var(--emerald-rgb), 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    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='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald);
    background: #151515;
}

.field-error {
    font-size: 0.7rem;
    color: #ff4444;
    margin-top: 0.35rem;
    display: none;
    font-weight: 500;
}

.form-note {
    font-size: 0.75rem;
    color: #444;
    text-align: center;
    margin-top: 1.25rem;
}

/* === FOOTER === */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

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

.footer-brand .logo { margin-bottom: 1rem; }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    padding: 0.35rem 0;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--text); }

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

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover { color: var(--text); }

/* === REVEAL ANIMATIONS === */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3.25rem; }
    .hero-actions { justify-content: center; }
    .hero-metrics { justify-content: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-visual { margin-top: 3rem; }
    .services-grid,
    .stats-grid,
    .pricing-grid,
    .premium-grid,
    .work-grid,
    .testimonials-grid,
    .partners-grid,
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }

    .nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

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

    .nav.active .nav-link { 
        font-size: 1.25rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-mobile-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; letter-spacing: -1px; }
    .hero-title { font-size: 2.75rem; letter-spacing: -1.5px; }
    .orb-container { width: 260px; height: 260px; }
    .orb-core { inset: 45px; }
    .orb-ring-2 { inset: 22px; }
    .orb-ring-3 { inset: 10px; }
    .orb-l-1 { top: -10%; right: -5%; }
    .orb-l-2 { bottom: 5%; left: -15%; }
    .orb-l-3 { top: 40%; right: -25%; }
    .services-grid,
    .stats-grid,
    .pricing-grid,
    .premium-grid,
    .work-grid,
    .testimonials-grid,
    .partners-grid,
    .process-grid { grid-template-columns: 1fr; }
    .contact-inner { gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-direct { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-metrics { gap: 1.5rem; }
    .pricing-amount .amount { font-size: 2.5rem; }
    .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.25rem; letter-spacing: -1px; }
    .header-inner { height: 60px; }
    .logo img { width: 32px; height: 32px; }
    .logo-name { font-size: 0.9rem; }
    .logo-tagline { display: none; }
    .hero { padding-top: calc(70px + 3rem); }
    .hero-actions { 
        flex-direction: column; 
        width: 100%;
        gap: 0.75rem;
    }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-metrics { 
        flex-wrap: wrap; 
        gap: 1.25rem 1.5rem;
        justify-content: center;
    }
    .hm-value { font-size: 1.35rem; }
    .orb-container { 
        width: 220px; 
        height: 220px; 
    }
    .orb-core { inset: 40px; }
    .orb-ring-2 { inset: 20px; }
    .orb-ring-3 { inset: 8px; }
    .orb-label {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }
    .orb-l-1 { top: -15%; right: -10%; }
    .orb-l-2 { bottom: 0%; left: -20%; }
    .orb-l-3 { top: 40%; right: -30%; }
    .section-title { font-size: 1.85rem; }
    .section { padding: 4rem 0; }
    .form-card, .service-card, .stat-card, .pricing-card, .premium-card, .process-step, .testimonial-card, .partner-card, .work-info { padding: 1.5rem; }
    .contact-inner { gap: 1.5rem; }
    .marquee-track { gap: 2rem; }
    .pricing-amount .amount { font-size: 2.2rem; }
    .stat-value { font-size: 2.2rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.85rem; }
    .logo-name { font-size: 0.8rem; display: block; }
    .orb-container { 
        width: 180px; 
        height: 180px; 
    }
    .orb-core { inset: 30px; }
    .orb-ring-2 { inset: 15px; }
    .orb-ring-3 { inset: 5px; }
    .orb-l-1 { top: -20%; right: -15%; }
    .orb-l-2 { bottom: -5%; left: -25%; }
    .orb-l-3 { top: 45%; right: -35%; }
    .section-title { font-size: 1.6rem; }
    .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
    .hm-value { font-size: 1.2rem; }
    .work-image { height: 160px; }
    .form-card, .service-card, .stat-card, .pricing-card, .premium-card, .process-step, .testimonial-card, .partner-card { padding: 1.25rem; }
}

/* === SPINNER, TOASTS & ACCESSIBILITY FOR CONTACT FORM === */
.de-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #50C878;
    animation: de-spin 0.8s ease-in-out infinite;
    margin-left: 8px;
    vertical-align: middle;
}

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

.de-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.de-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    animation: de-toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.de-toast--success {
    border-color: rgba(80, 200, 120, 0.3);
    background: rgba(10, 25, 15, 0.85);
}

.de-toast--success::before {
    content: "✦";
    color: #50C878;
    font-weight: bold;
}

.de-toast--error {
    border-color: rgba(255, 68, 68, 0.3);
    background: rgba(25, 10, 10, 0.85);
}

.de-toast--error::before {
    content: "✕";
    color: #ff4444;
    font-weight: bold;
}

.de-toast.de-toast--out {
    animation: de-toast-out 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes de-toast-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes de-toast-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

/* Glassmorphism focus state for inputs */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.15);
}

/* Screen reader only utility class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
