:root {
    --orange: #FF6B35;
    --orange-dark: #E65A2B;
    --orange-light: #FF8456;
    --black: #0D0D0D;
    --black-soft: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray-mid: #666666;
    --gray-light: #999999;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --green: #25D366;
    --green-dark: #20BA56;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Mobile app-like experience */
@media (max-width: 767px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        touch-action: pan-y;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--white);
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: var(--black);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px var(--space-lg) var(--space-xl);
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 177.77vh;
    height: 56.25vw;
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.5) 0%,
        rgba(13, 13, 13, 0.75) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--orange), #ff8c52);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ea952);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.hero-cta-whatsapp:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Hero Trust Bar */
.hero-trust-bar {
    position: relative;
    z-index: 10;
    padding: 0 var(--space-lg);
    margin-top: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-stars {
    color: #FFD700;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.badge-text {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.stek-logo {
    height: 18px;
    width: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-width: 120px;
}

.hero-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.2;
}

.hero-stat-number::after {
    content: '+';
}

.hero-stat:nth-child(3) .hero-stat-number::after {
    content: '%';
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-md);
    position: relative;
    z-index: 10;
}

.hero-scroll-hint span {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    color: var(--orange);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.section-intro h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.reassurance {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
    position: relative;
}

.reassurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Pain Points Carousel */
.pain-points-carousel {
    position: relative;
}

.pain-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    transition: transform 0.5s ease-in-out;
}

.pain-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-2xl);
}

.pain-card {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.pain-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.pain-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.pain-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

.proof {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    padding: var(--space-3xl) 0;
}

/* ===== PROMO BANNER - Service Credit Offer ===== */
.promo-banner {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.promo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, rgba(255, 107, 53, 0.1) 30%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Ramadan Lantern Decorations */
.lantern {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    z-index: 0;
    animation: swingLantern 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

.lantern-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.lantern-right {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes swingLantern {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.promo-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-header {
    margin-bottom: var(--space-2xl);
}

.promo-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6); }
}

.promo-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.promo-title .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto;
}

.promo-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.promo-card-featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.35);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
    animation: breathe 3s ease-in-out infinite;
}

.promo-card-featured:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 12px 50px rgba(255, 107, 53, 0.25);
    animation-play-state: paused;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.25);
    }
}

.promo-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--black);
    padding: 0.375rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.promo-card-content {
    text-align: center;
}

.promo-service {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.promo-credit {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.credit-value {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange) 0%, #ffb380 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.credit-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.promo-credit-label {
    font-size: 0.875rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Flat Discount Styling */
.promo-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.discount-flat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.discount-value {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange) 0%, #ffb380 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0.25rem 0;
}

.discount-currency {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: -0.25rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.promo-features li {
    color: var(--gray-light);
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.promo-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.urgency-icon {
    font-size: 1.25rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.urgency-text {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9375rem;
}

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

.promo-footer {
    text-align: center;
}

.promo-redeem {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.promo-note {
    color: var(--gray-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
}

.promo-note strong {
    color: var(--orange);
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.promo-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.promo-terms {
    margin-top: var(--space-lg);
    color: var(--gray-mid);
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .promo-cards {
        flex-direction: row;
        gap: var(--space-xl);
    }
    
    .promo-card {
        flex: 1;
    }
    
    .promo-card-featured {
        transform: scale(1.05);
    }
    
    .promo-card-featured:hover {
        transform: scale(1.05) translateY(-4px);
    }
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
}

.proof-stat {
    padding: var(--space-xl);
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-number::after {
    content: '%';
    font-size: 0.5em;
    color: var(--orange-light);
}

.proof-stat:first-child .stat-number::after {
    content: '+';
}

.proof-stat:last-child .stat-number::after {
    content: '';
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9375rem;
}

.clarity {
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 50%, var(--black-soft) 100%);
    position: relative;
}

.clarity::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 80px;
}

.services-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: visible;
    min-height: 450px;
    width: 100%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.service-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
    transition: all 0.6s ease;
}

.service-item:hover .service-bg-image {
    opacity: 0.4;
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(13, 13, 13, 0.75) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: 1;
}

.service-primary {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(13, 13, 13, 0.95) 100%
    );
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.service-primary .service-bg-image {
    opacity: 0.5;
}

.service-primary:hover .service-bg-image {
    opacity: 0.7;
}

.service-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: var(--orange);
    color: var(--black);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.3;
    position: relative;
    z-index: 2;
}

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

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.service-content > p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-benefits li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-light);
    font-size: 0.9375rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.service-cta {
    margin-top: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--orange-light);
    transform: translateX(4px);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 107, 53, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-2xl);
}

/* Swipe hint - hidden on desktop, shown on mobile */
.swipe-hint {
    display: none;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 107, 53, 0.7);
}

/* Experience Video Section */
.experience-video-section {
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: var(--space-3xl) var(--space-lg);
}

.experience-video-container {
    position: relative;
    max-width: 1400px;
    margin: var(--space-2xl) auto 0;
    width: 100%;
    height: 70vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 0;
}

.experience-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.experience-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.2);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

/* Featured Video in Video Showcase */
.featured-video-container {
    margin-bottom: var(--space-3xl);
}

.featured-video-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 70vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black);
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-top: var(--space-sm);
}

.process {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Process Carousel */
.process-carousel {
    position: relative;
}

.process-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-2xl);
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--orange);
    border: 4px solid var(--black-soft);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.timeline-content p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.ppf-deepdive {
    background-color: var(--black-soft);
    position: relative;
}

.ppf-deepdive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ppf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.ppf-card {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.ppf-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.ppf-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.ppf-card p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.ppf-card p:last-child {
    margin-bottom: 0;
}

.ppf-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.ppf-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-light);
    line-height: 1.6;
}

.ppf-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.ppf-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

.ppf-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-2xl);
    background-color: var(--orange);
    color: var(--black);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-base);
    border: 2px solid var(--orange);
}

.ppf-cta-btn:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* Protection Tabs Section */
.protection-tabs-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
    position: relative;
}

.protection-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.protection-tabs {
    position: relative;
    z-index: 1;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xs);
    background: rgba(26, 26, 26, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.tab-btn {
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    color: var(--gray-light);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--white);
    background: rgba(255, 107, 53, 0.1);
}

.tab-btn.active {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.tab-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.tab-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tab-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.tab-card p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.tab-card p:last-child {
    margin-bottom: 0;
}

.tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tab-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-light);
    line-height: 1.6;
}

.tab-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.protection-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.cta-question {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.protection-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-2xl);
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-base);
}

.protection-cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

@media (min-width: 768px) {
    .tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-btn {
        padding: var(--space-sm) var(--space-xl);
    }
}

@media (max-width: 767px) {
    .protection-tabs-section {
        padding: var(--space-2xl) 0;
    }
    
    .tabs-nav {
        gap: 4px;
        padding: 4px;
        margin: 0 -8px;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 4px);
        text-align: center;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .tab-card {
        padding: var(--space-md);
    }
    
    .tab-card h3 {
        font-size: 1rem;
    }
    
    .tab-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .protection-cta {
        padding: var(--space-lg);
        margin-top: var(--space-lg);
    }
}

.gallery {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.7) 60%, transparent 100%);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.gallery-content p {
    color: var(--gray-light);
    font-size: 0.9375rem;
}

.video-showcase {
    background-color: var(--black-soft);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.video-card {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.video-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: var(--black);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: var(--space-xl);
}

.video-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.video-info p {
    color: var(--gray-light);
    line-height: 1.6;
}

.confidence {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 50%, var(--black-soft) 100%);
    position: relative;
}

.confidence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.trust-item {
    padding: var(--space-xl);
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.trust-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.trust-item p {
    color: var(--gray-light);
    line-height: 1.6;
}

.testimonials {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.testimonial-card {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.author-detail {
    font-size: 0.875rem;
    color: var(--gray-mid);
}

.reviews {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.google-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: var(--gray-mid);
}

.star.filled {
    color: #FFB800;
}

.rating-count {
    color: var(--gray-light);
    font-size: 0.9375rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.review-card {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-base);
}

.review-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.0625rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
}

.review-stars .star {
    font-size: 1rem;
}

.google-logo {
    flex-shrink: 0;
    margin-left: auto;
}

.review-text {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.review-date {
    color: var(--gray-mid);
    font-size: 0.875rem;
}

.reviews-cta {
    text-align: center;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-base);
}

.google-review-btn:hover {
    border-color: var(--orange);
    background-color: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.google-icon-lg {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.faq {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center bottom, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: var(--space-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: var(--space-lg);
    color: var(--gray-light);
    line-height: 1.7;
}

.cta-section {
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%),
                linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    padding: var(--space-4xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cta-primary,
.cta-secondary {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-align: left;
}

.cta-primary {
    background-color: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
}

.cta-primary:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.cta-secondary:hover {
    background-color: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-text strong {
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-text small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-note {
    color: var(--gray-mid);
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: pulse 2s infinite;
}

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

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.final-cta-intro {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.final-cta-primary {
    background: var(--orange);
    color: var(--white);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.final-cta-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.final-cta-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--green);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.final-cta-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.service-areas {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-areas-label {
    font-size: 0.75rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.service-areas-list {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-primary,
    .final-cta-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #141414 25%, 
        rgba(255, 107, 53, 0.08) 50%, 
        #141414 75%, 
        #0a0a0a 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-bg-overlay {
    display: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(1.1);
}

.footer-brand p {
    color: var(--gray-mid);
}

.footer-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
    margin-bottom: var(--space-md);
}

.footer-contact,
.footer-location {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-contact a {
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-location p {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-map {
    margin-top: var(--space-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.footer-map iframe {
    display: block;
    width: 100%;
}

.footer-bottom {
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 107, 53, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-mid);
    font-size: 0.875rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.floating-whatsapp a:hover {
    background-color: var(--green-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Mobile WhatsApp Button - smaller icon style */
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: var(--space-sm);
        right: var(--space-sm);
    }
    
    .floating-whatsapp a {
        width: 48px;
        height: 48px;
    }
    
    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .logo {
        height: 45px;
    }
    
    .pain-points {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
    
    .ppf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-whatsapp {
        display: none;
    }
}

/* Hide Interakt default widget - we use custom floating button */
#kiwi-chat-widget,
.kiwi-chat-widget,
[id*="interakt"],
[class*="interakt"] {
    display: none !important;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 100px;
    }
    
    .nav-link {
        display: none;
    }
    
    /* Carousel Mobile */
    .services-carousel {
        padding: 0;
        margin: 0;
        overflow: visible;
        position: relative;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        z-index: 100;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .services-carousel {
        overflow: visible;
        position: relative;
        padding: 0;
    }
    
    .services-list {
        overflow: hidden;
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0 48px;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
        min-width: calc(100vw - 96px);
        max-width: calc(100vw - 96px);
        width: calc(100vw - 96px);
        flex-shrink: 0;
    }
    
    .experience-video-section {
        padding: var(--space-xl) 0;
    }
    
    .experience-video-section .container {
        padding: 0 var(--space-sm);
    }
    
    .experience-video-container {
        height: 45vh;
        margin: var(--space-lg) 0 0;
        border-radius: var(--radius-md);
    }
    
    /* Pain Points Mobile Carousel */
    .pain-points-carousel {
        overflow: visible;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .pain-points {
        overflow: hidden;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding: 0 16px;
        position: relative;
        z-index: 1;
    }
    
    .pain-card {
        min-width: calc(100vw - 96px);
        max-width: calc(100vw - 96px);
        width: calc(100vw - 96px);
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: var(--space-sm);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .pain-icon {
        font-size: 1.5rem;
        margin-bottom: var(--space-xs);
    }
    
    .pain-card h3 {
        font-size: 0.9375rem;
        margin-bottom: 4px;
    }
    
    .pain-card p {
        font-size: 0.8125rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .pain-dots {
        display: flex;
        margin-top: var(--space-sm);
        padding: 0 16px;
    }
    
    /* Hide Arrow Buttons on Mobile - swipe only */
    .carousel-nav-btn,
    .carousel-btn {
        display: none !important;
    }
    
    /* Swipe Hint Indicator */
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--gray-light);
        font-size: 0.75rem;
        margin-top: var(--space-xs);
        opacity: 0.7;
    }
    
    .swipe-hint::before {
        content: '←';
    }
    
    .swipe-hint::after {
        content: '→';
    }
    
    /* Process Mobile Carousel */
    .process-carousel {
        overflow: visible;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .process-timeline {
        overflow: hidden;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding: 0 16px;
        position: relative;
        z-index: 1;
    }
    
    .timeline-item {
        min-width: calc(100vw - 96px);
        max-width: calc(100vw - 96px);
        width: calc(100vw - 96px);
        flex-shrink: 0;
        scroll-snap-align: start;
        text-align: left;
        padding: var(--space-sm);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-marker {
        width: 48px;
        height: 48px;
        margin: 0 0 var(--space-xs);
    }
    
    .step-number {
        font-size: 1.25rem;
    }
    
    .timeline-content {
        text-align: center;
    }
    
    .timeline-content h3 {
        font-size: 0.9375rem;
        margin-bottom: 4px;
    }
    
    .timeline-content p {
        font-size: 0.8125rem;
        line-height: 1.4;
        text-align: center;
        margin: 0;
    }
    
    .process-dots {
        display: flex;
        margin-top: var(--space-sm);
        padding: 0 16px;
    }
    
    /* Hero Trust Bar Mobile */
    .hero-trust-bar {
        padding: 0 var(--space-sm);
        margin-top: var(--space-lg);
    }
    
    .trust-badges {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-bottom: var(--space-sm);
        justify-content: center;
    }
    
    .trust-badge {
        padding: 6px 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .badge-stars {
        font-size: 0.7rem;
        margin-bottom: 0;
    }
    
    .badge-text {
        font-size: 0.65rem;
        line-height: 1.2;
        text-align: center;
        display: block;
    }
    
    .stek-text {
        display: block;
        font-weight: 600;
    }
    
    .stek-logo {
        max-height: 16px;
        width: auto;
        margin-bottom: 0;
        display: block;
    }
    
    .hero-stat {
        padding: var(--space-xs) 4px;
        flex: 1;
        min-width: 0;
    }
    
    .hero-stat-number {
        font-size: 1.125rem;
    }
    
    .hero-stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    /* Hide Get Your Quote button in hero on mobile - keep WhatsApp only */
    .hero-cta-btn:not(.hero-cta-whatsapp) {
        display: none;
    }
    
    .proof {
        padding: var(--space-xl) 0;
    }
    
    .proof-grid {
        gap: var(--space-sm);
    }
    
    .proof-stat {
        padding: var(--space-sm) var(--space-xs);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-md);
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .service-number {
        font-size: 1.125rem;
        text-align: left;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .service-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .service-benefits {
        font-size: 0.875rem;
    }
    
    .service-benefits li {
        padding: 0.375rem 0;
        padding-left: 1.5rem;
    }
    
    .service-benefits li::before {
        left: 0;
        font-size: 0.875rem;
    }
    
    .service-bg-image {
        opacity: 0.2;
    }
    
    .service-item:hover .service-bg-image {
        opacity: 0.25;
    }
    
    .service-primary .service-bg-image {
        opacity: 0.25;
    }
    
    .service-primary:hover .service-bg-image {
        opacity: 0.3;
    }
    
    /* Promo Banner Mobile */
    .promo-banner {
        padding: var(--space-xl) 0;
    }
    
    .promo-header {
        margin-bottom: var(--space-lg);
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-subtitle {
        font-size: 0.9375rem;
    }
    
    .promo-cards {
        gap: var(--space-md);
    }
    
    .promo-card {
        padding: var(--space-lg);
    }
    
    .credit-value {
        font-size: 2.5rem;
    }
    
    .promo-footer {
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }
    
    .promo-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Video Grid Mobile */
    .video-showcase {
        padding: var(--space-2xl) 0;
    }
    
    .video-grid {
        gap: var(--space-lg);
    }
    
    .video-card {
        padding: var(--space-sm);
    }
    
    .video-info {
        padding: var(--space-sm);
    }
    
    .video-info h4 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8125rem;
    }
    
    /* Featured Video Mobile */
    .featured-video-container {
        margin-bottom: var(--space-xl);
    }
    
    .featured-video-wrapper {
        height: 45vh;
    }
    
    /* Section Intros Mobile */
    .section-intro {
        margin-bottom: var(--space-lg);
    }
    
    .section-intro h2 {
        font-size: 1.5rem;
    }
    
    .section-intro .label {
        font-size: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    /* Reviews Carousel Mobile */
    .reviews-carousel {
        overflow: visible;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .reviews-grid {
        overflow: hidden;
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        scroll-snap-type: x mandatory;
        padding: 0 16px;
        position: relative;
        z-index: 1;
    }
    
    .review-card {
        min-width: calc(100vw - 96px);
        max-width: calc(100vw - 96px);
        width: calc(100vw - 96px);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: var(--space-md);
        padding: 0 16px;
    }
    
    /* Sections General Padding Mobile */
    section {
        padding: var(--space-2xl) 0;
    }
    
    .clarity {
        padding: var(--space-xl) 0;
    }
    
    .reassurance {
        padding: var(--space-xl) 0;
    }
    
    .process {
        padding: var(--space-xl) 0;
    }
}

/* Qualification Form */
.qualification-form {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(13, 13, 13, 0.98) 100%);
    padding: var(--space-4xl) 0;
}

.qual-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.form-section {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-section.active {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(13, 13, 13, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.field-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-xs);
    font-style: italic;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: rgba(255, 107, 53, 0.8);
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--orange);
    margin-top: var(--space-lg);
}

/* Service Options */
.service-options {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-option {
    cursor: pointer;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-option-card {
    position: relative;
    padding: var(--space-lg);
    background: rgba(13, 13, 13, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.service-option input:checked + .service-option-card {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.service-option-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.service-option-badge {
    position: absolute;
    top: -10px;
    right: var(--space-md);
    background: var(--orange);
    color: var(--black);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
}

.service-option-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.service-option-card p {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* Radio Options */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.radio-option {
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option-card {
    padding: var(--space-md);
    background: rgba(13, 13, 13, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.radio-option input:checked + .radio-option-card {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.radio-option-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.radio-option-card strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.radio-option-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.form-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-btn-back {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-btn-back:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.form-btn-next,
.form-btn-submit {
    background: var(--orange);
    color: var(--black);
}

.form-btn-next:hover,
.form-btn-submit:hover {
    background: #ff8557;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.form-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Form Progress */
.form-progress {
    margin-top: var(--space-lg);
    text-align: center;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8557 100%);
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.progress-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    animation: fadeSlideIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: rgba(76, 175, 80, 0.15);
    border: 3px solid #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #4CAF50;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.form-success p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.success-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.success-note a {
    color: var(--orange);
    text-decoration: underline;
}

/* WhatsApp Options */
.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wa-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ramadan Popup Modal */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-modal.active {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.3);
    overflow-y: auto;
    animation: popupSlideIn 0.5s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 107, 53, 0.2);
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.popup-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

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

.popup-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.popup-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
}

.popup-body {
    padding: 0 var(--space-2xl) var(--space-3xl);
}

.popup-offer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.popup-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.popup-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.popup-card-featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
    animation: popupBreathe 3s ease-in-out infinite;
}

@keyframes popupBreathe {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 107, 53, 0.35);
    }
}

.popup-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--black);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.popup-service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.popup-credit-amount {
    margin-bottom: var(--space-sm);
}

.popup-credit-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.popup-credit-currency {
    font-size: 1.25rem;
    color: var(--orange);
    font-weight: 600;
}

.popup-credit-label {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: var(--space-md);
}

/* Popup Discount Styling */
.popup-discount-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.popup-discount-flat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.popup-discount-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange) 0%, #ffb380 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.popup-discount-currency {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
}

.popup-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
}

.popup-benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    text-align: left;
}

.popup-benefits li {
    padding: 0.375rem 0;
    color: var(--gray-light);
    font-size: 0.9375rem;
    position: relative;
    padding-left: 0;
}

.popup-benefits li::before {
    content: none;
    font-weight: bold;
}

.popup-cta {
    text-align: center;
}

.popup-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.popup-terms {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray-mid);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .qual-form {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .form-section-title {
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
    }
    
    .form-section-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--space-md);
    }
    
    .form-group {
        margin-bottom: var(--space-md);
    }
    
    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="number"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .radio-group {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    
    .radio-option {
        padding: 0.75rem 1rem;
    }
    
    .radio-option .option-label {
        font-size: 0.875rem;
    }
    
    .checkbox-group {
        gap: var(--space-xs);
    }
    
    .checkbox-option {
        padding: 0.75rem 1rem;
    }
    
    .checkbox-option .option-label {
        font-size: 0.875rem;
    }
    
    .form-navigation {
        flex-direction: column-reverse;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }
    
    .form-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .form-progress {
        margin-top: var(--space-md);
    }
    
    .progress-text {
        font-size: 0.75rem;
    }
    
    /* Popup Modal Mobile */
    .popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: var(--space-2xl) var(--space-md) var(--space-lg);
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-body {
        padding: 0 var(--space-md) var(--space-2xl);
    }
    
    .popup-offer-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .popup-card {
        padding: var(--space-lg);
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
