/* ============================================
   HACKLANCER v3.1 — MAIN STYLESHEET
   Premium 2026 Design System
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================ */
:root {
    /* Colors — Obsidian Foundation */
    --hl-bg: #0B0D12;
    --hl-bg-2: #11131A;
    --hl-bg-3: #161923;
    --hl-bg-card: #1A1D28;
    --hl-bg-elevated: #1E2230;
    
    /* Text */
    --hl-text: #F4F4F6;
    --hl-text-2: #B8BCC8;
    --hl-text-muted: #7A7E8C;
    --hl-text-dim: #5A5E6C;
    
    /* Borders */
    --hl-border: rgba(255, 255, 255, 0.08);
    --hl-border-2: rgba(255, 255, 255, 0.12);
    --hl-border-crimson: rgba(220, 20, 60, 0.25);
    --hl-border-amber: rgba(212, 175, 55, 0.25);
    
    /* Brand Accents */
    --hl-crimson: #DC143C;
    --hl-crimson-hover: #B01030;
    --hl-crimson-soft: rgba(220, 20, 60, 0.12);
    --hl-crimson-glow: rgba(220, 20, 60, 0.25);
    
    --hl-amber: #D4AF37;
    --hl-amber-hover: #B8941F;
    --hl-amber-soft: rgba(212, 175, 55, 0.10);
    
    --hl-violet: #8B5CF6;
    --hl-cyan: #22D3EE;
    --hl-success: #10B981;
    --hl-error: #EF4444;
    
    /* WhatsApp */
    --hl-whatsapp: #25D366;
    --hl-whatsapp-hover: #1EBE5D;
    
    /* Typography */
    --hl-font-display: 'Space Grotesk', system-ui, sans-serif;
    --hl-font-body: 'Inter', system-ui, sans-serif;
    --hl-font-mono: 'JetBrains Mono', ui-monospace, monospace;
    
    /* Spacing */
    --hl-space-1: 0.25rem;
    --hl-space-2: 0.5rem;
    --hl-space-3: 0.75rem;
    --hl-space-4: 1rem;
    --hl-space-5: 1.5rem;
    --hl-space-6: 2rem;
    --hl-space-7: 3rem;
    --hl-space-8: 4rem;
    --hl-space-9: 6rem;
    --hl-space-10: 8rem;
    
    /* Border Radius */
    --hl-radius-sm: 6px;
    --hl-radius-md: 12px;
    --hl-radius-lg: 20px;
    --hl-radius-xl: 28px;
    --hl-radius-pill: 999px;
    
    /* Shadows */
    --hl-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
    --hl-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --hl-shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.45);
    --hl-shadow-crimson: 0 16px 60px rgba(220, 20, 60, 0.18);
    --hl-shadow-amber: 0 16px 60px rgba(212, 175, 55, 0.12);
    
    /* Motion */
    --hl-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --hl-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --hl-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --hl-container: 1320px;
    --hl-container-narrow: 780px;
    --hl-header-height: 76px;
    --hl-contact-bar-height: 40px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--hl-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hl-text);
    background: var(--hl-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(220, 20, 60, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hl-crimson); text-decoration: none; transition: color var(--hl-transition-fast); }
a:hover { color: var(--hl-amber); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hl-font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--hl-text);
}

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

/* Accessibility */
.hl-skip-link {
    position: absolute;
    top: -100%;
    left: var(--hl-space-4);
    background: var(--hl-crimson);
    color: white;
    padding: var(--hl-space-2) var(--hl-space-4);
    border-radius: var(--hl-radius-sm);
    z-index: 9999;
    transition: top var(--hl-transition-fast);
}
.hl-skip-link:focus { top: var(--hl-space-4); }

:focus-visible {
    outline: 2px solid var(--hl-crimson);
    outline-offset: 2px;
    border-radius: var(--hl-radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   LAYOUT
   ============================================ */
.hl-container {
    width: 100%;
    max-width: var(--hl-container);
    margin: 0 auto;
    padding: 0 var(--hl-space-5);
    position: relative;
    z-index: 1;
}

.hl-container--narrow { max-width: var(--hl-container-narrow); }
.hl-container--form { max-width: 880px; }

.hl-text-center { text-align: center; }

/* Text utilities */
.hl-text--crimson { color: var(--hl-crimson); }
.hl-text--amber { color: var(--hl-amber); }
.hl-text--green { color: var(--hl-success); }

/* ============================================
   GLASS CARD
   ============================================ */
.hl-glass-card {
    background: linear-gradient(145deg, rgba(26, 29, 40, 0.85) 0%, rgba(22, 25, 35, 0.75) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    position: relative;
}

.hl-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--hl-space-2);
    font-family: var(--hl-font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--hl-radius-pill);
    transition: all var(--hl-transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    text-decoration: none;
}

.hl-btn--primary {
    background: linear-gradient(135deg, var(--hl-crimson) 0%, #E01E44 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.25);
}

.hl-btn--primary:hover {
    background: linear-gradient(135deg, var(--hl-crimson-hover) 0%, #C01538 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.35);
}

.hl-btn--primary:active { transform: translateY(0); }

.hl-btn--ghost {
    background: transparent;
    color: var(--hl-text);
    border: 1px solid var(--hl-border-2);
}

.hl-btn--ghost:hover {
    border-color: var(--hl-crimson);
    color: var(--hl-crimson);
    background: var(--hl-crimson-soft);
}

.hl-btn--outline {
    background: transparent;
    color: var(--hl-crimson);
    border: 1px solid var(--hl-border-crimson);
}

.hl-btn--outline:hover {
    background: var(--hl-crimson);
    color: white;
    border-color: var(--hl-crimson);
}

.hl-btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }
.hl-btn--xl { padding: 1.1rem 2.25rem; font-size: 1rem; }
.hl-btn--full { width: 100%; }

.hl-btn i { transition: transform var(--hl-transition-fast); }
.hl-btn:hover i.fa-arrow-right { transform: translateX(4px); }

.hl-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.hl-section-header {
    max-width: 780px;
    margin-bottom: var(--hl-space-8);
}

.hl-section-header.hl-text-center { margin-left: auto; margin-right: auto; }

.hl-section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    font-family: var(--hl-font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hl-crimson);
    margin-bottom: var(--hl-space-4);
}

.hl-section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--hl-crimson);
}

.hl-section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    margin-bottom: var(--hl-space-4);
}

.hl-section-title--xl {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.hl-section-subtitle {
    font-size: 1.05rem;
    color: var(--hl-text-2);
    line-height: 1.7;
}

/* ============================================
   CONTACT BAR
   ============================================ */
.hl-contact-bar {
    background: var(--hl-bg-2);
    border-bottom: 1px solid var(--hl-border);
    font-size: 0.8rem;
    position: relative;
    z-index: 100;
}

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

.hl-contact-bar-left,
.hl-contact-bar-right {
    display: flex;
    align-items: center;
    gap: var(--hl-space-4);
}

.hl-contact-item {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    color: var(--hl-text-2);
    transition: color var(--hl-transition-fast);
}

.hl-contact-item:hover { color: var(--hl-crimson); }
.hl-contact-item i { font-size: 0.85rem; }

.hl-contact-whatsapp:hover { color: var(--hl-whatsapp); }

.hl-contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--hl-text-muted);
    border-radius: 50%;
    transition: all var(--hl-transition-fast);
}

.hl-contact-social:hover {
    color: var(--hl-crimson);
    background: var(--hl-crimson-soft);
}

.hl-contact-bar-divider {
    width: 1px;
    height: 16px;
    background: var(--hl-border);
}

.hl-contact-bar-payment {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    color: var(--hl-text-muted);
    font-family: var(--hl-font-mono);
    font-size: 0.72rem;
}

.hl-contact-bar-payment i { color: var(--hl-amber); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.hl-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--hl-transition-base);
}

.hl-header.scrolled {
    background: rgba(11, 13, 18, 0.95);
    border-bottom-color: var(--hl-border);
    box-shadow: var(--hl-shadow-sm);
}

.hl-header--landing {
    background: rgba(11, 13, 18, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hl-border);
}

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

.hl-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hl-logo img {
    height: 40px;
    width: auto;
}

.hl-nav { flex: 1; display: flex; justify-content: center; }

.hl-nav-menu {
    display: flex;
    align-items: center;
    gap: var(--hl-space-1);
}

.hl-nav-menu > li { position: relative; }

.hl-nav-menu > li > a {
    display: block;
    padding: var(--hl-space-3) var(--hl-space-4);
    color: var(--hl-text-2);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--hl-font-display);
    border-radius: var(--hl-radius-sm);
    transition: all var(--hl-transition-fast);
    position: relative;
}

.hl-nav-menu > li > a:hover,
.hl-nav-menu > li.current-menu-item > a {
    color: var(--hl-text);
    background: var(--hl-bg-3);
}

.hl-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: var(--hl-space-4);
    right: var(--hl-space-4);
    height: 2px;
    background: var(--hl-crimson);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--hl-transition-base);
}

.hl-nav-menu > li:hover > a::after,
.hl-nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

/* Submenu */
.hl-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-md);
    padding: var(--hl-space-2);
    box-shadow: var(--hl-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--hl-transition-base);
}

.hl-nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hl-nav-menu .sub-menu a {
    display: block;
    padding: var(--hl-space-2) var(--hl-space-3);
    color: var(--hl-text-2);
    font-size: 0.875rem;
    border-radius: var(--hl-radius-sm);
    transition: all var(--hl-transition-fast);
}

.hl-nav-menu .sub-menu a:hover {
    color: var(--hl-crimson);
    background: var(--hl-crimson-soft);
}

.hl-header-cta { flex-shrink: 0; }

/* Mobile toggle */
.hl-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--hl-space-2);
    z-index: 101;
}

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

.hl-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: var(--hl-space-8) var(--hl-space-5);
    overflow-y: auto;
}

.hl-mobile-menu.active { display: block; }

.hl-mobile-close {
    position: absolute;
    top: var(--hl-space-5);
    right: var(--hl-space-5);
    font-size: 2rem;
    color: var(--hl-text);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-2);
    margin-top: var(--hl-space-6);
}

.hl-mobile-nav a {
    display: block;
    padding: var(--hl-space-4);
    color: var(--hl-text);
    font-family: var(--hl-font-display);
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: var(--hl-radius-md);
    transition: all var(--hl-transition-fast);
}

.hl-mobile-nav a:hover {
    background: var(--hl-bg-card);
    color: var(--hl-crimson);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hl-hero {
    position: relative;
    min-height: calc(100vh - var(--hl-header-height) - var(--hl-contact-bar-height));
    display: flex;
    align-items: center;
    padding: var(--hl-space-9) 0;
    overflow: hidden;
}

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

.hl-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(11, 13, 18, 0.4) 0%, rgba(11, 13, 18, 0.85) 70%, var(--hl-bg) 100%),
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(220, 20, 60, 0.08) 0%, transparent 60%);
}

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

.hl-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hl-hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--hl-space-8);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    font-family: var(--hl-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-5);
    padding: var(--hl-space-2) var(--hl-space-3);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-pill);
}

.hl-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--hl-success);
    border-radius: 50%;
    animation: hl-pulse 2s ease-in-out infinite;
}

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

.hl-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: var(--hl-space-5);
}

.hl-hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: hl-reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hl-hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hl-hero-title-line:nth-child(2) { animation-delay: 0.25s; }
.hl-hero-title-line:nth-child(3) { animation-delay: 0.4s; }

.hl-hero-title-accent {
    background: linear-gradient(135deg, var(--hl-crimson) 0%, var(--hl-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes hl-reveal-up {
    to { opacity: 1; transform: translateY(0); }
}

.hl-hero-subhead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--hl-text-2);
    line-height: 1.7;
    margin-bottom: var(--hl-space-3);
    max-width: 640px;
    opacity: 0;
    animation: hl-fade-in 0.6s ease 0.6s forwards;
}

.hl-hero-subhead strong { color: var(--hl-amber); font-weight: 600; }

.hl-hero-supporting {
    font-size: 0.95rem;
    color: var(--hl-text-muted);
    margin-bottom: var(--hl-space-7);
    max-width: 560px;
    opacity: 0;
    animation: hl-fade-in 0.6s ease 0.75s forwards;
}

@keyframes hl-fade-in {
    to { opacity: 1; }
}

.hl-hero-ctas {
    display: flex;
    gap: var(--hl-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--hl-space-7);
    opacity: 0;
    animation: hl-fade-in 0.6s ease 0.9s forwards;
}

.hl-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hl-space-5);
    opacity: 0;
    animation: hl-fade-in 0.6s ease 1.05s forwards;
}

.hl-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    font-size: 0.82rem;
    color: var(--hl-text-2);
}

.hl-hero-trust-item i {
    color: var(--hl-crimson);
    font-size: 0.9rem;
}

/* Hero Visual Card */
.hl-hero-visual {
    position: relative;
    opacity: 0;
    animation: hl-fade-in 0.8s ease 0.5s forwards;
}

.hl-hero-card {
    padding: var(--hl-space-5);
    max-width: 380px;
    margin-left: auto;
    box-shadow: var(--hl-shadow-crimson);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform var(--hl-transition-slow);
}

.hl-hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hl-hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--hl-space-2);
    padding-bottom: var(--hl-space-4);
    margin-bottom: var(--hl-space-4);
    border-bottom: 1px solid var(--hl-border);
}

.hl-hero-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hl-dot--red { background: #FF5F57; }
.hl-dot--amber { background: #FEBC2E; }
.hl-dot--green { background: #28C840; }

.hl-hero-card-title {
    font-family: var(--hl-font-mono);
    font-size: 0.72rem;
    color: var(--hl-text-muted);
    margin-left: var(--hl-space-3);
}

.hl-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--hl-space-3) 0;
    border-bottom: 1px solid var(--hl-border);
}

.hl-stat-row:last-of-type { border-bottom: none; }

.hl-stat-label {
    font-size: 0.82rem;
    color: var(--hl-text-2);
}

.hl-stat-value {
    font-family: var(--hl-font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.hl-hero-card-bar {
    margin-top: var(--hl-space-4);
    height: 4px;
    background: var(--hl-bg-3);
    border-radius: var(--hl-radius-pill);
    overflow: hidden;
}

.hl-hero-card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hl-crimson), var(--hl-amber));
    border-radius: inherit;
    animation: hl-bar-grow 1.5s ease 1s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes hl-bar-grow {
    to { transform: scaleX(1); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.hl-trust-bar {
    padding: var(--hl-space-5) 0;
    background: var(--hl-bg-2);
    border-top: 1px solid var(--hl-border);
    border-bottom: 1px solid var(--hl-border);
    overflow: hidden;
}

.hl-trust-bar-track {
    display: flex;
    gap: var(--hl-space-8);
    animation: hl-scroll 40s linear infinite;
    white-space: nowrap;
}

.hl-trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-3);
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--hl-text-2);
}

.hl-trust-bar-item i {
    color: var(--hl-crimson);
    font-size: 1.1rem;
}

.hl-trust-bar-item strong {
    color: var(--hl-text);
    font-weight: 600;
}

@keyframes hl-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES GRID (BENTO)
   ============================================ */
.hl-services {
    padding: var(--hl-space-10) 0;
    position: relative;
}

.hl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: var(--hl-space-5);
}

.hl-service-card {
    position: relative;
    border-radius: var(--hl-radius-lg);
    overflow: hidden;
    transition: all var(--hl-transition-base);
}

.hl-service--wide { grid-column: span 2; }
.hl-service--tall { grid-row: span 2; }

.hl-service-card-inner {
    height: 100%;
    padding: var(--hl-space-6);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--hl-transition-base);
    position: relative;
    overflow: hidden;
}

.hl-service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hl-crimson), transparent);
    transform: scaleX(0);
    transition: transform var(--hl-transition-base);
}

.hl-service-card:hover .hl-service-card-inner {
    border-color: var(--hl-border-crimson);
    transform: translateY(-4px);
    box-shadow: var(--hl-shadow-crimson);
}

.hl-service-card:hover .hl-service-card-inner::before {
    transform: scaleX(1);
}

.hl-service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--hl-space-4);
}

.hl-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-crimson-soft);
    border: 1px solid var(--hl-border-crimson);
    border-radius: var(--hl-radius-md);
    color: var(--hl-crimson);
    font-size: 1.2rem;
    transition: all var(--hl-transition-base);
}

.hl-service-card:hover .hl-service-icon {
    background: var(--hl-crimson);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.hl-service-price {
    font-family: var(--hl-font-mono);
    font-size: 0.75rem;
    color: var(--hl-amber);
    background: var(--hl-amber-soft);
    padding: var(--hl-space-1) var(--hl-space-3);
    border-radius: var(--hl-radius-pill);
    border: 1px solid var(--hl-border-amber);
}

.hl-service-title {
    font-size: 1.25rem;
    margin-bottom: var(--hl-space-2);
}

.hl-service-desc {
    font-size: 0.9rem;
    color: var(--hl-text-2);
    line-height: 1.65;
    flex: 1;
    margin-bottom: var(--hl-space-4);
}

.hl-service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    font-family: var(--hl-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hl-crimson);
    transition: all var(--hl-transition-fast);
}

.hl-service-link:hover {
    color: var(--hl-amber);
    gap: var(--hl-space-3);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.hl-process {
    padding: var(--hl-space-10) 0;
    background: var(--hl-bg-2);
    position: relative;
}

.hl-process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--hl-space-4);
    position: relative;
}

.hl-process-step {
    position: relative;
    padding: var(--hl-space-5);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    transition: all var(--hl-transition-base);
}

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

.hl-process-step-num {
    font-family: var(--hl-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hl-crimson);
    line-height: 1;
    margin-bottom: var(--hl-space-3);
    opacity: 0.3;
    transition: opacity var(--hl-transition-base);
}

.hl-process-step:hover .hl-process-step-num { opacity: 1; }

.hl-process-step h4 {
    font-size: 1rem;
    margin-bottom: var(--hl-space-2);
}

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

.hl-process-step-line {
    display: none;
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.hl-payment {
    padding: var(--hl-space-10) 0;
    position: relative;
}

.hl-payment-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.hl-payment-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--hl-space-6);
    align-items: stretch;
}

.hl-payment-card {
    padding: var(--hl-space-7);
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-4);
}

.hl-payment-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--hl-space-2);
}

.hl-payment-percent {
    font-family: var(--hl-font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.hl-tag--crimson {
    background: var(--hl-crimson-soft);
    color: var(--hl-crimson);
    border: 1px solid var(--hl-border-crimson);
}

.hl-tag--amber {
    background: var(--hl-amber-soft);
    color: var(--hl-amber);
    border: 1px solid var(--hl-border-amber);
}

.hl-payment-tag {
    font-family: var(--hl-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--hl-space-1) var(--hl-space-3);
    border-radius: var(--hl-radius-pill);
}

.hl-payment-card h3 {
    font-size: 1.35rem;
}

.hl-payment-card p {
    color: var(--hl-text-2);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
}

.hl-payment-quote {
    font-style: italic;
    color: var(--hl-text-muted);
    font-size: 0.88rem;
    padding: var(--hl-space-4);
    background: var(--hl-bg-3);
    border-left: 3px solid var(--hl-crimson);
    border-radius: 0 var(--hl-radius-sm) var(--hl-radius-sm) 0;
    line-height: 1.6;
}

.hl-payment-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hl-text-muted);
    font-size: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.hl-testimonials {
    padding: var(--hl-space-10) 0;
    background: var(--hl-bg-2);
}

.hl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-5);
}

.hl-testimonial-card {
    padding: var(--hl-space-6);
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-4);
    transition: all var(--hl-transition-base);
}

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

.hl-testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
}

.hl-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hl-crimson), var(--hl-amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hl-font-display);
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.hl-testimonial-meta { flex: 1; min-width: 0; }

.hl-testimonial-name {
    font-family: var(--hl-font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.hl-testimonial-info {
    font-size: 0.78rem;
    color: var(--hl-text-muted);
}

.hl-testimonial-stars {
    color: var(--hl-amber);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hl-testimonial-quote {
    font-size: 0.9rem;
    color: var(--hl-text-2);
    line-height: 1.7;
    position: relative;
}

/* ============================================
   FAQ
   ============================================ */
.hl-faq {
    padding: var(--hl-space-10) 0;
}

.hl-faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--hl-space-8);
    align-items: start;
}

.hl-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-3);
}

.hl-faq-item {
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-md);
    overflow: hidden;
    transition: border-color var(--hl-transition-fast);
}

.hl-faq-item:hover { border-color: var(--hl-border-2); }

.hl-faq-item.active { border-color: var(--hl-border-crimson); }

.hl-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hl-space-4);
    padding: var(--hl-space-5);
    text-align: left;
    font-family: var(--hl-font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--hl-text);
    background: transparent;
    transition: all var(--hl-transition-fast);
}

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

.hl-faq-question i {
    color: var(--hl-crimson);
    transition: transform var(--hl-transition-base);
    flex-shrink: 0;
}

.hl-faq-item.active .hl-faq-question i { transform: rotate(45deg); }

.hl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--hl-transition-slow);
}

.hl-faq-item.active .hl-faq-answer { max-height: 500px; }

.hl-faq-answer p {
    padding: 0 var(--hl-space-5) var(--hl-space-5);
    color: var(--hl-text-2);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ============================================
   FINAL CTA
   ============================================ */
.hl-final-cta {
    padding: var(--hl-space-10) 0;
    position: relative;
    overflow: hidden;
}

.hl-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(220, 20, 60, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, var(--hl-bg-2) 100%);
    pointer-events: none;
}

.hl-final-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hl-final-cta-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    margin-bottom: var(--hl-space-4);
}

.hl-final-cta-sub {
    font-size: 1.05rem;
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-7);
}

.hl-final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hl-space-5);
}

.hl-final-cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--hl-space-5);
}

.hl-final-cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    color: var(--hl-text-2);
    font-size: 0.9rem;
    transition: color var(--hl-transition-fast);
}

.hl-final-cta-link:hover { color: var(--hl-crimson); }
.hl-final-cta-link i { font-size: 1rem; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.hl-whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    padding: var(--hl-space-3) var(--hl-space-4);
    background: var(--hl-whatsapp);
    color: white;
    border-radius: var(--hl-radius-pill);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    font-family: var(--hl-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--hl-transition-base);
}

.hl-whatsapp-float:hover {
    background: var(--hl-whatsapp-hover);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.hl-whatsapp-float svg { flex-shrink: 0; }

.hl-whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--hl-whatsapp);
    animation: hl-wa-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes hl-wa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

.hl-whatsapp--cookie-open {
    bottom: calc(24px + 180px);
    transition: bottom var(--hl-transition-base);
}

/* ============================================
   FOOTER
   ============================================ */
.hl-footer {
    background: var(--hl-bg-2);
    border-top: 1px solid var(--hl-border);
    padding: var(--hl-space-9) 0 var(--hl-space-5);
    position: relative;
    z-index: 1;
}

.hl-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--hl-space-8);
    margin-bottom: var(--hl-space-8);
}

.hl-footer-logo {
    display: inline-block;
    margin-bottom: var(--hl-space-4);
}

.hl-footer-logo img { height: 36px; width: auto; }

.hl-footer-desc {
    font-size: 0.88rem;
    color: var(--hl-text-2);
    line-height: 1.7;
    margin-bottom: var(--hl-space-5);
}

.hl-footer-payment {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-2);
}

.hl-footer-payment-label {
    font-size: 0.75rem;
    color: var(--hl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hl-footer-payment-icons {
    display: flex;
    gap: var(--hl-space-3);
    color: var(--hl-text-muted);
    font-size: 1.1rem;
}

.hl-footer-heading {
    font-family: var(--hl-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--hl-space-4);
    color: var(--hl-text);
    letter-spacing: 0.02em;
}

.hl-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-3);
}

.hl-footer-links a {
    font-size: 0.88rem;
    color: var(--hl-text-2);
    transition: all var(--hl-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
}

.hl-footer-links a:hover {
    color: var(--hl-crimson);
    transform: translateX(4px);
}

.hl-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-3);
}

.hl-footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
    font-size: 0.88rem;
    color: var(--hl-text-2);
}

.hl-footer-contact i {
    color: var(--hl-crimson);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.hl-footer-contact a { color: var(--hl-text-2); }
.hl-footer-contact a:hover { color: var(--hl-crimson); }

.hl-footer-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-3);
    margin-top: var(--hl-space-5);
    padding-top: var(--hl-space-5);
    border-top: 1px solid var(--hl-border);
}

.hl-footer-trust-item {
    text-align: center;
}

.hl-footer-trust-num {
    display: block;
    font-family: var(--hl-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hl-crimson);
}

.hl-footer-trust-label {
    display: block;
    font-size: 0.7rem;
    color: var(--hl-text-muted);
    margin-top: 2px;
}

/* Legal Disclaimer */
.hl-footer-legal {
    padding: var(--hl-space-5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(220, 20, 60, 0.02) 100%);
    border: 1px solid var(--hl-border-amber);
    border-radius: var(--hl-radius-md);
    margin-bottom: var(--hl-space-6);
}

.hl-footer-legal-inner {
    display: flex;
    gap: var(--hl-space-4);
    align-items: flex-start;
}

.hl-footer-legal-inner > i {
    color: var(--hl-amber);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hl-footer-legal p {
    font-size: 0.85rem;
    color: var(--hl-text-2);
    line-height: 1.7;
}

.hl-footer-legal strong {
    display: block;
    color: var(--hl-amber);
    font-family: var(--hl-font-display);
    font-size: 0.9rem;
    margin-bottom: var(--hl-space-2);
}

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

.hl-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--hl-space-4);
}

.hl-footer-sep { opacity: 0.3; }

/* Landing page footer */
.hl-landing-footer {
    padding: var(--hl-space-5) 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--hl-text-muted);
    border-top: 1px solid var(--hl-border);
    background: var(--hl-bg);
    position: relative;
    z-index: 1;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.hl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(17, 19, 26, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--hl-border);
    padding: var(--hl-space-4);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.hl-cookie-inner {
    max-width: var(--hl-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--hl-space-5);
    padding: 0 var(--hl-space-5);
}

.hl-cookie-icon {
    color: var(--hl-amber);
    flex-shrink: 0;
}

.hl-cookie-content { flex: 1; }

.hl-cookie-content h3 {
    font-size: 1rem;
    margin-bottom: var(--hl-space-1);
}

.hl-cookie-content p {
    font-size: 0.85rem;
    color: var(--hl-text-2);
    line-height: 1.6;
}

.hl-cookie-link {
    color: var(--hl-amber);
    text-decoration: underline;
}

.hl-cookie-actions {
    display: flex;
    gap: var(--hl-space-2);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.hl-cookie-btn {
    padding: var(--hl-space-2) var(--hl-space-4);
    border-radius: var(--hl-radius-pill);
    font-family: var(--hl-font-display);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--hl-transition-fast);
    white-space: nowrap;
}

.hl-cookie-btn--primary {
    background: var(--hl-crimson);
    color: white;
}

.hl-cookie-btn--primary:hover { background: var(--hl-crimson-hover); }

.hl-cookie-btn--outline {
    background: transparent;
    color: var(--hl-text);
    border: 1px solid var(--hl-border-2);
}

.hl-cookie-btn--outline:hover {
    border-color: var(--hl-crimson);
    color: var(--hl-crimson);
}

.hl-cookie-btn--ghost {
    background: transparent;
    color: var(--hl-text-2);
}

.hl-cookie-btn--ghost:hover { color: var(--hl-text); }

.hl-cookie-prefs {
    max-width: var(--hl-container);
    margin: var(--hl-space-4) auto 0;
    padding: var(--hl-space-5);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-md);
}

.hl-cookie-prefs h4 {
    font-size: 1rem;
    margin-bottom: var(--hl-space-4);
}

.hl-cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hl-space-4);
    padding: var(--hl-space-4) 0;
    border-bottom: 1px solid var(--hl-border);
    cursor: pointer;
}

.hl-cookie-toggle:last-of-type { border-bottom: none; }

.hl-cookie-toggle strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.hl-cookie-toggle em {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--hl-text-muted);
    line-height: 1.5;
}

.hl-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: var(--hl-space-2);
    flex-shrink: 0;
}

.hl-toggle-wrapper input[type="checkbox"] {
    width: 44px;
    height: 24px;
    appearance: none;
    background: var(--hl-bg-3);
    border-radius: var(--hl-radius-pill);
    position: relative;
    cursor: pointer;
    transition: background var(--hl-transition-fast);
    border: 1px solid var(--hl-border);
}

.hl-toggle-wrapper input[type="checkbox"]:checked {
    background: var(--hl-crimson);
    border-color: var(--hl-crimson);
}

.hl-toggle-wrapper input[type="checkbox"]:disabled {
    background: var(--hl-crimson);
    border-color: var(--hl-crimson);
    opacity: 0.6;
    cursor: not-allowed;
}

.hl-toggle-wrapper input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform var(--hl-transition-fast);
}

.hl-toggle-wrapper input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.hl-toggle-status {
    font-size: 0.72rem;
    color: var(--hl-text-muted);
    font-family: var(--hl-font-mono);
}

.hl-cookie-prefs-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--hl-space-2);
    margin-top: var(--hl-space-4);
    padding-top: var(--hl-space-4);
    border-top: 1px solid var(--hl-border);
}

/* ============================================
   SERVICE PAGES
   ============================================ */
.hl-service-hero {
    position: relative;
    padding: var(--hl-space-9) 0 var(--hl-space-8);
    overflow: hidden;
}

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

.hl-service-hero-inner { position: relative; z-index: 1; }

.hl-service-hero-meta {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
    margin-bottom: var(--hl-space-5);
    flex-wrap: wrap;
}

.hl-service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-crimson-soft);
    border: 1px solid var(--hl-border-crimson);
    border-radius: var(--hl-radius-md);
    color: var(--hl-crimson);
    font-size: 1.3rem;
}

.hl-service-price-tag {
    font-family: var(--hl-font-mono);
    font-size: 0.85rem;
    color: var(--hl-amber);
    background: var(--hl-amber-soft);
    padding: var(--hl-space-2) var(--hl-space-4);
    border-radius: var(--hl-radius-pill);
    border: 1px solid var(--hl-border-amber);
}

.hl-service-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: var(--hl-space-4);
    max-width: 900px;
}

.hl-service-subhead {
    font-size: 1.1rem;
    color: var(--hl-text-2);
    line-height: 1.75;
    margin-bottom: var(--hl-space-6);
    max-width: 780px;
}

.hl-service-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--hl-space-6);
    flex-wrap: wrap;
}

.hl-service-stat {
    padding: var(--hl-space-3) var(--hl-space-6) var(--hl-space-3) 0;
    text-align: left;
}

.hl-service-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--hl-border);
    margin-right: var(--hl-space-6);
}

.hl-service-stat-value {
    display: block;
    font-family: var(--hl-font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.hl-service-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--hl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.hl-service-hero-ctas {
    display: flex;
    gap: var(--hl-space-3);
    flex-wrap: wrap;
    margin-bottom: var(--hl-space-5);
}

.hl-service-trust-mini {
    display: flex;
    gap: var(--hl-space-5);
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--hl-text-muted);
}

.hl-service-trust-mini span {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
}

.hl-service-trust-mini i { color: var(--hl-crimson); }

/* Service opening */
.hl-service-opening {
    padding: var(--hl-space-7) 0;
}

.hl-service-opening-text {
    font-size: 1.15rem;
    color: var(--hl-text);
    line-height: 1.8;
    margin-bottom: var(--hl-space-4);
}

.hl-service-opening-text--secondary {
    font-size: 1rem;
    color: var(--hl-text-2);
}

/* Feature grid */
.hl-service-features,
.hl-service-recoverable {
    padding: var(--hl-space-9) 0;
    background: var(--hl-bg-2);
}

.hl-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hl-space-4);
}

.hl-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--hl-space-3);
    padding: var(--hl-space-4);
}

.hl-feature-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-crimson-soft);
    border-radius: 50%;
    color: var(--hl-crimson);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hl-feature-item span {
    font-size: 0.92rem;
    color: var(--hl-text-2);
    line-height: 1.6;
}

/* Service tiers */
.hl-service-tiers {
    padding: var(--hl-space-9) 0;
}

.hl-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-5);
    align-items: stretch;
}

.hl-tier-card {
    padding: var(--hl-space-6);
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-4);
    position: relative;
    transition: all var(--hl-transition-base);
}

.hl-tier-card:hover {
    transform: translateY(-6px);
    border-color: var(--hl-border-crimson);
}

.hl-tier--featured {
    border-color: var(--hl-border-crimson);
    box-shadow: var(--hl-shadow-crimson);
    transform: scale(1.02);
}

.hl-tier-badge {
    position: absolute;
    top: -1px;
    right: var(--hl-space-5);
    background: linear-gradient(135deg, var(--hl-crimson), var(--hl-amber));
    color: white;
    font-family: var(--hl-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--hl-space-1) var(--hl-space-3);
    border-radius: 0 0 var(--hl-radius-sm) var(--hl-radius-sm);
}

.hl-tier-header {
    padding-bottom: var(--hl-space-4);
    border-bottom: 1px solid var(--hl-border);
}

.hl-tier-name {
    font-size: 1.15rem;
    margin-bottom: var(--hl-space-2);
}

.hl-tier-price {
    font-family: var(--hl-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hl-crimson);
}

.hl-tier-who,
.hl-tier-includes,
.hl-tier-rationale {
    font-size: 0.88rem;
}

.hl-tier-who strong,
.hl-tier-includes strong,
.hl-tier-rationale strong {
    display: block;
    font-size: 0.82rem;
    font-family: var(--hl-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hl-text-muted);
    margin-bottom: var(--hl-space-2);
}

.hl-tier-who p { color: var(--hl-text-2); line-height: 1.65; }

.hl-tier-includes ul {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-2);
}

.hl-tier-includes li {
    display: flex;
    gap: var(--hl-space-2);
    font-size: 0.85rem;
    color: var(--hl-text-2);
    line-height: 1.5;
}

.hl-tier-includes li i {
    color: var(--hl-crimson);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.hl-tier-rationale {
    padding: var(--hl-space-4);
    background: var(--hl-bg-3);
    border-radius: var(--hl-radius-md);
    border-left: 3px solid var(--hl-amber);
}

.hl-tier-rationale p { color: var(--hl-text-2); line-height: 1.65; font-size: 0.85rem; }

.hl-tier-card .hl-btn { margin-top: auto; }

/* Pricing rationale */
.hl-service-rationale {
    padding: var(--hl-space-7) 0;
}

.hl-rationale-card {
    padding: var(--hl-space-6);
}

.hl-rationale-header {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
    margin-bottom: var(--hl-space-3);
}

.hl-rationale-header i {
    color: var(--hl-amber);
    font-size: 1.3rem;
}

.hl-rationale-header h3 {
    font-size: 1.15rem;
    margin: 0;
}

.hl-rationale-card p {
    color: var(--hl-text-2);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Crypto pricing model */
.hl-service-model {
    padding: var(--hl-space-9) 0;
    background: var(--hl-bg-2);
}

.hl-model-steps {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-4);
    margin-bottom: var(--hl-space-6);
}

.hl-model-step {
    display: flex;
    gap: var(--hl-space-4);
    align-items: flex-start;
    padding: var(--hl-space-5);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
}

.hl-model-step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-crimson);
    color: white;
    border-radius: 50%;
    font-family: var(--hl-font-display);
    font-weight: 700;
    flex-shrink: 0;
}

.hl-model-step p {
    color: var(--hl-text-2);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-top: 6px;
}

.hl-model-example {
    padding: var(--hl-space-5);
    background: var(--hl-amber-soft);
    border: 1px solid var(--hl-border-amber);
    border-radius: var(--hl-radius-md);
    margin-bottom: var(--hl-space-5);
}

.hl-model-example strong {
    display: block;
    color: var(--hl-amber);
    font-family: var(--hl-font-display);
    margin-bottom: var(--hl-space-2);
}

.hl-model-example p {
    color: var(--hl-text-2);
    font-family: var(--hl-font-mono);
    font-size: 0.88rem;
    line-height: 1.7;
}

.hl-model-note p {
    color: var(--hl-text-2);
    line-height: 1.75;
    font-size: 0.95rem;
}

.hl-model-note strong { color: var(--hl-text); }

/* Service table */
.hl-service-table-section {
    padding: var(--hl-space-9) 0;
}

.hl-service-table-wrapper {
    overflow-x: auto;
    border-radius: var(--hl-radius-lg);
    border: 1px solid var(--hl-border);
}

.hl-service-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hl-bg-card);
}

.hl-service-table th {
    text-align: left;
    padding: var(--hl-space-4);
    background: var(--hl-bg-3);
    font-family: var(--hl-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hl-text);
    border-bottom: 1px solid var(--hl-border);
}

.hl-service-table td {
    padding: var(--hl-space-4);
    font-size: 0.9rem;
    color: var(--hl-text-2);
    border-bottom: 1px solid var(--hl-border);
}

.hl-service-table tr:last-child td { border-bottom: none; }

.hl-service-table tr:hover td { background: var(--hl-bg-elevated); }

/* Service process */
.hl-service-process {
    padding: var(--hl-space-9) 0;
    background: var(--hl-bg-2);
}

.hl-service-process .hl-process-steps {
    grid-template-columns: repeat(3, 1fr);
}

/* After recovery */
.hl-service-after {
    padding: var(--hl-space-7) 0;
}

.hl-service-after-text {
    font-size: 1.05rem;
    color: var(--hl-text-2);
    line-height: 1.8;
}

/* Refund */
.hl-service-refund {
    padding: var(--hl-space-7) 0;
}

.hl-refund-card {
    padding: var(--hl-space-7);
    text-align: center;
}

.hl-refund-card i {
    font-size: 2.5rem;
    color: var(--hl-amber);
    margin-bottom: var(--hl-space-4);
}

.hl-refund-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--hl-space-4);
}

.hl-refund-card p {
    font-style: italic;
    color: var(--hl-text-2);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Service CTA */
.hl-service-cta {
    padding: var(--hl-space-8) 0;
}

.hl-service-cta-inner {
    padding: var(--hl-space-7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hl-space-6);
    flex-wrap: wrap;
}

.hl-service-cta h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    margin-bottom: var(--hl-space-2);
}

.hl-service-cta p {
    color: var(--hl-text-2);
    font-size: 0.95rem;
}

.hl-service-cta-actions {
    display: flex;
    gap: var(--hl-space-3);
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.hl-pricing-hero {
    position: relative;
    padding: var(--hl-space-9) 0 var(--hl-space-7);
    overflow: hidden;
}

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

.hl-pricing-hero-inner { position: relative; z-index: 1; }

.hl-pricing-disclaimer {
    display: flex;
    gap: var(--hl-space-3);
    padding: var(--hl-space-5);
    background: var(--hl-amber-soft);
    border: 1px solid var(--hl-border-amber);
    border-radius: var(--hl-radius-md);
    margin-top: var(--hl-space-6);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hl-pricing-disclaimer i {
    color: var(--hl-amber);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hl-pricing-disclaimer p {
    font-size: 0.88rem;
    color: var(--hl-text-2);
    line-height: 1.7;
}

.hl-pricing-disclaimer strong { color: var(--hl-amber); }

.hl-pricing-table-section {
    padding: var(--hl-space-8) 0;
}

.hl-pricing-table-wrapper {
    overflow-x: auto;
    border-radius: var(--hl-radius-lg);
    border: 1px solid var(--hl-border);
}

.hl-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hl-bg-card);
}

.hl-pricing-table th {
    text-align: left;
    padding: var(--hl-space-4);
    background: var(--hl-bg-3);
    font-family: var(--hl-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hl-text);
    border-bottom: 1px solid var(--hl-border);
    white-space: nowrap;
}

.hl-pricing-table td {
    padding: var(--hl-space-4);
    font-size: 0.9rem;
    color: var(--hl-text-2);
    border-bottom: 1px solid var(--hl-border);
}

.hl-pricing-table tr:last-child td { border-bottom: none; }
.hl-pricing-table tr:hover td { background: var(--hl-bg-elevated); }

.hl-refund-policy-section {
    padding: var(--hl-space-7) 0;
    background: var(--hl-bg-2);
}

.hl-refund-policy-card {
    padding: var(--hl-space-7);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hl-refund-policy-card i {
    font-size: 2.5rem;
    color: var(--hl-amber);
    margin-bottom: var(--hl-space-4);
}

.hl-refund-policy-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--hl-space-4);
}

.hl-refund-policy-card blockquote {
    font-style: italic;
    color: var(--hl-text-2);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hl-hiw-hero {
    position: relative;
    padding: var(--hl-space-9) 0 var(--hl-space-7);
    overflow: hidden;
}

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

.hl-hiw-hero-inner { position: relative; z-index: 1; }

.hl-hiw-steps {
    padding: var(--hl-space-9) 0;
}

.hl-hiw-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-5);
}

.hl-hiw-step {
    padding: var(--hl-space-6);
    transition: all var(--hl-transition-base);
}

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

.hl-hiw-step-num {
    font-family: var(--hl-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hl-crimson);
    line-height: 1;
    margin-bottom: var(--hl-space-3);
    opacity: 0.3;
    transition: opacity var(--hl-transition-base);
}

.hl-hiw-step:hover .hl-hiw-step-num { opacity: 1; }

.hl-hiw-step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--hl-space-2);
}

.hl-hiw-step p {
    font-size: 0.88rem;
    color: var(--hl-text-2);
    line-height: 1.7;
}

.hl-hiw-why {
    padding: var(--hl-space-9) 0;
    background: var(--hl-bg-2);
    position: relative;
    overflow: hidden;
}

.hl-hiw-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(220, 20, 60, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hl-hiw-why-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hl-hiw-quote {
    font-size: 1.1rem;
    color: var(--hl-text-2);
    line-height: 1.85;
    font-style: italic;
    padding: var(--hl-space-5);
    background: var(--hl-bg-card);
    border-left: 3px solid var(--hl-crimson);
    border-radius: 0 var(--hl-radius-md) var(--hl-radius-md) 0;
    margin-top: var(--hl-space-5);
}

.hl-hiw-unsatisfied {
    padding: var(--hl-space-9) 0;
}

.hl-unsatisfied-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-4);
    margin-bottom: var(--hl-space-6);
}

.hl-unsatisfied-item {
    padding: var(--hl-space-5);
    text-align: center;
}

.hl-unsatisfied-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-crimson-soft);
    border-radius: 50%;
    color: var(--hl-crimson);
    font-size: 1.3rem;
    margin: 0 auto var(--hl-space-3);
}

.hl-unsatisfied-item p {
    font-size: 0.9rem;
    color: var(--hl-text-2);
    line-height: 1.65;
}

.hl-unsatisfied-item strong { color: var(--hl-text); }

.hl-unsatisfied-note {
    text-align: center;
    font-style: italic;
    color: var(--hl-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FORM
   ============================================ */
.hl-quote-hero {
    position: relative;
    padding: var(--hl-space-8) 0 var(--hl-space-6);
    overflow: hidden;
}

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

.hl-quote-hero-inner { position: relative; z-index: 1; }

.hl-quote-form-section {
    padding: var(--hl-space-7) 0 var(--hl-space-9);
}

.hl-quote-form {
    padding: var(--hl-space-7);
}

.hl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--hl-space-4);
}

.hl-form-group {
    margin-bottom: var(--hl-space-4);
}

.hl-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hl-text);
    margin-bottom: var(--hl-space-2);
}

.hl-required {
    color: var(--hl-crimson);
    margin-left: 2px;
}

.hl-form-group input[type="text"],
.hl-form-group input[type="email"],
.hl-form-group input[type="tel"],
.hl-form-group select,
.hl-form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--hl-bg);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-md);
    color: var(--hl-text);
    font-family: var(--hl-font-body);
    font-size: 0.95rem;
    transition: all var(--hl-transition-fast);
}

.hl-form-group input:focus,
.hl-form-group select:focus,
.hl-form-group textarea:focus {
    outline: none;
    border-color: var(--hl-crimson);
    background: var(--hl-bg-2);
    box-shadow: 0 0 0 4px var(--hl-crimson-soft);
}

.hl-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8BCC8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.hl-form-group select option {
    background: var(--hl-bg);
    color: var(--hl-text);
}

.hl-form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.hl-form-group optgroup {
    font-family: var(--hl-font-display);
    font-weight: 600;
    color: var(--hl-text-muted);
    background: var(--hl-bg-2);
}

.hl-form-group optgroup option {
    font-family: var(--hl-font-body);
    font-weight: 400;
    color: var(--hl-text);
}

.hl-form-privacy {
    display: flex;
    gap: var(--hl-space-3);
    padding: var(--hl-space-4);
    background: var(--hl-crimson-soft);
    border: 1px solid var(--hl-border-crimson);
    border-radius: var(--hl-radius-md);
    margin-bottom: var(--hl-space-5);
}

.hl-form-privacy i {
    color: var(--hl-crimson);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hl-form-privacy p {
    font-size: 0.88rem;
    color: var(--hl-text-2);
    line-height: 1.6;
}

.hl-form-privacy strong { color: var(--hl-text); }

.hl-form-direct {
    padding: var(--hl-space-4);
    background: var(--hl-bg-3);
    border-radius: var(--hl-radius-md);
    margin-bottom: var(--hl-space-5);
}

.hl-form-direct strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: var(--hl-space-3);
    color: var(--hl-text);
}

.hl-form-direct-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hl-space-3) var(--hl-space-5);
}

.hl-form-direct-links a {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    color: var(--hl-text-2);
    font-size: 0.88rem;
    transition: color var(--hl-transition-fast);
}

.hl-form-direct-links a:hover { color: var(--hl-crimson); }
.hl-form-direct-links i { color: var(--hl-crimson); }

.hl-form-submit { margin-bottom: var(--hl-space-3); }

.hl-form-note {
    font-size: 0.82rem;
    color: var(--hl-text-muted);
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
}

.hl-form-note i { color: var(--hl-amber); }

.hl-form-status {
    margin-top: var(--hl-space-3);
    padding: var(--hl-space-3);
    border-radius: var(--hl-radius-md);
    font-size: 0.9rem;
    display: none;
}

.hl-form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--hl-success);
}

.hl-form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--hl-error);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.hl-thankyou {
    min-height: calc(100vh - var(--hl-header-height) - var(--hl-contact-bar-height) - 200px);
    display: flex;
    align-items: center;
    padding: var(--hl-space-9) 0;
}

.hl-thankyou-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.hl-thankyou-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--hl-space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    animation: hl-check-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hl-check-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.hl-thankyou-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    margin-bottom: var(--hl-space-3);
}

.hl-thankyou-text {
    font-size: 1.05rem;
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-7);
}

.hl-thankyou-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hl-space-3);
    margin-bottom: var(--hl-space-7);
}

.hl-thankyou-detail {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
    padding: var(--hl-space-4);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-md);
    text-align: left;
}

.hl-thankyou-detail i {
    color: var(--hl-crimson);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hl-thankyou-detail strong {
    display: block;
    font-size: 0.88rem;
    color: var(--hl-text);
}

.hl-thankyou-detail span {
    display: block;
    font-size: 0.78rem;
    color: var(--hl-text-muted);
}

.hl-thankyou-next {
    text-align: left;
    padding: var(--hl-space-6);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    margin-bottom: var(--hl-space-6);
}

.hl-thankyou-next h3 {
    font-size: 1.1rem;
    margin-bottom: var(--hl-space-4);
}

.hl-thankyou-next ol {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-3);
    padding-left: var(--hl-space-5);
}

.hl-thankyou-next li {
    color: var(--hl-text-2);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hl-thankyou-contact {
    text-align: center;
}

.hl-thankyou-contact p {
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-4);
}

.hl-thankyou-contact-links {
    display: flex;
    justify-content: center;
    gap: var(--hl-space-3);
    flex-wrap: wrap;
}

/* ============================================
   LANDING PAGE
   ============================================ */
.hl-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--hl-space-8) 0;
    overflow: hidden;
}

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

.hl-landing-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--hl-space-8);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hl-landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    font-family: var(--hl-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-5);
    padding: var(--hl-space-2) var(--hl-space-3);
    background: var(--hl-bg-card);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-pill);
}

.hl-landing-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: var(--hl-space-4);
    line-height: 1.05;
}

.hl-landing-subhead {
    font-size: 1.05rem;
    color: var(--hl-text-2);
    line-height: 1.75;
    margin-bottom: var(--hl-space-6);
}

.hl-landing-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--hl-space-3);
    margin-bottom: var(--hl-space-6);
}

.hl-landing-benefits li {
    display: flex;
    align-items: center;
    gap: var(--hl-space-3);
    font-size: 0.95rem;
    color: var(--hl-text-2);
}

.hl-landing-benefits i {
    color: var(--hl-success);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hl-landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hl-space-4);
    font-size: 0.82rem;
    color: var(--hl-text-muted);
}

.hl-landing-trust span {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
}

.hl-landing-trust i { color: var(--hl-crimson); }

.hl-landing-form-col {
    position: relative;
}

.hl-landing-form-card {
    padding: var(--hl-space-6);
    position: sticky;
    top: calc(var(--hl-header-height) + var(--hl-space-4));
}

.hl-landing-form-title {
    font-size: 1.35rem;
    margin-bottom: var(--hl-space-2);
}

.hl-landing-form-sub {
    font-size: 0.9rem;
    color: var(--hl-text-2);
    margin-bottom: var(--hl-space-5);
}

.hl-landing-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--hl-text-muted);
    margin-top: var(--hl-space-3);
}

.hl-landing-wa-alt {
    margin-top: var(--hl-space-4);
    padding-top: var(--hl-space-4);
    border-top: 1px solid var(--hl-border);
    text-align: center;
}

.hl-landing-wa-alt span {
    display: block;
    font-size: 0.82rem;
    color: var(--hl-text-muted);
    margin-bottom: var(--hl-space-2);
}

.hl-landing-wa-link {
    display: inline-flex;
    align-items: center;
    gap: var(--hl-space-2);
    color: var(--hl-whatsapp);
    font-weight: 600;
    font-size: 0.9rem;
}

.hl-landing-wa-link:hover { color: var(--hl-whatsapp-hover); }

/* ============================================
   DEFAULT PAGE
   ============================================ */
.hl-default-page {
    padding: var(--hl-space-9) 0;
}

.hl-default-page-header {
    margin-bottom: var(--hl-space-7);
    padding-bottom: var(--hl-space-5);
    border-bottom: 1px solid var(--hl-border);
}

.hl-default-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.hl-default-page-content {
    color: var(--hl-text-2);
    line-height: 1.8;
}

.hl-default-page-content h2,
.hl-default-page-content h3,
.hl-default-page-content h4 {
    color: var(--hl-text);
    margin: var(--hl-space-6) 0 var(--hl-space-3);
}

.hl-default-page-content p { margin-bottom: var(--hl-space-4); }

.hl-default-page-content ul {
    list-style: disc;
    padding-left: var(--hl-space-5);
    margin-bottom: var(--hl-space-4);
}

.hl-default-page-content li { margin-bottom: var(--hl-space-2); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hl-nav { display: none; }
    .hl-header-cta { display: none; }
    .hl-mobile-toggle { display: flex; }
    
    .hl-contact-bar-right .hl-contact-bar-payment { display: none; }
    
    .hl-hero-inner {
        grid-template-columns: 1fr;
        gap: var(--hl-space-7);
    }
    
    .hl-hero-visual { order: -1; }
    
    .hl-hero-card {
        margin: 0 auto;
        transform: none;
    }
    
    .hl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hl-service--wide { grid-column: span 2; }
    .hl-service--tall { grid-row: span 1; }
    
    .hl-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hl-payment-grid {
        grid-template-columns: 1fr;
        gap: var(--hl-space-5);
    }
    
    .hl-payment-divider {
        transform: rotate(90deg);
        padding: var(--hl-space-3) 0;
    }
    
    .hl-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hl-faq-container {
        grid-template-columns: 1fr;
        gap: var(--hl-space-6);
    }
    
    .hl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--hl-space-6);
    }
    
    .hl-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .hl-tier--featured { transform: none; }
    
    .hl-landing-inner {
        grid-template-columns: 1fr;
        gap: var(--hl-space-6);
    }
    
    .hl-landing-form-card { position: static; }
    
    .hl-hiw-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hl-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hl-service-process .hl-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hl-unsatisfied-grid {
        grid-template-columns: 1fr;
    }
    
    .hl-thankyou-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --hl-space-8: 3rem;
        --hl-space-9: 4rem;
        --hl-space-10: 5rem;
    }
    
    .hl-contact-bar { display: none; }
    
    .hl-services-grid {
        grid-template-columns: 1fr;
    }
    
    .hl-service--wide { grid-column: span 1; }
    
    .hl-process-steps {
        grid-template-columns: 1fr;
    }
    
    .hl-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hl-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--hl-space-6);
    }
    
    .hl-footer-trust {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hl-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hl-footer-bottom-right {
        justify-content: center;
    }
    
    .hl-form-row {
        grid-template-columns: 1fr;
    }
    
    .hl-service-stats {
        gap: var(--hl-space-4);
    }
    
    .hl-service-stat {
        padding: var(--hl-space-3) var(--hl-space-4) var(--hl-space-3) 0;
    }
    
    .hl-service-stat-divider { display: none; }
    
    .hl-hiw-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hl-service-process .hl-process-steps {
        grid-template-columns: 1fr;
    }
    
    .hl-service-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .hl-service-cta-actions {
        justify-content: center;
    }
    
    .hl-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--hl-space-3);
    }
    
    .hl-cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .hl-whatsapp-float .hl-whatsapp-label { display: none; }
    
    .hl-whatsapp-float {
        left: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
    
    .hl-whatsapp--cookie-open {
        bottom: calc(16px + env(safe-area-inset-bottom) + 200px);
    }
    
    .hl-final-cta-contact {
        flex-direction: column;
        gap: var(--hl-space-3);
    }
    
    .hl-quote-form { padding: var(--hl-space-5); }
    
    .hl-hero-trust {
        gap: var(--hl-space-3) var(--hl-space-4);
    }
    
    .hl-thankyou-detail {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hl-btn--lg, .hl-btn--xl {
        width: 100%;
    }
    
    .hl-hero-ctas {
        flex-direction: column;
    }
    
    .hl-service-hero-ctas {
        flex-direction: column;
    }
    
    .hl-service-hero-ctas .hl-btn {
        width: 100%;
    }
    
    .hl-thankyou-contact-links {
        flex-direction: column;
    }
    
    .hl-thankyou-contact-links .hl-btn {
        width: 100%;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .hl-contact-bar,
    .hl-header,
    .hl-footer,
    .hl-whatsapp-float,
    .hl-cookie-banner,
    .hl-final-cta {
        display: none !important;
    }
    
    body { background: white; color: black; }
}
