/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #07080d;
    --bg-card: rgba(18, 20, 32, 0.6);
    --bg-card-hover: rgba(25, 28, 45, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    /* Brand Colors (Google Gemini Vibe) */
    --primary-indigo: #6366f1;
    --primary-purple: #8b5cf6;
    --accent-blue: #06b6d4;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    
    /* Text Colors */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
    
    /* Fonts */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout Constants */
    --container-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-indigo), var(--primary-purple));
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color-hover);
    color: var(--text-main);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-light);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Text Gradients */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

.animate-gradient {
    animation: shine 4s linear infinite;
}

@keyframes shine {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Pulse effects */
.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6), 0 0 0 10px rgba(99, 102, 241, 0.15);
    }
    100% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    }
}

.text-blue { color: var(--accent-blue) !important; }
.text-purple { color: var(--primary-purple) !important; }
.text-pink { color: var(--accent-pink) !important; }
.text-green { color: var(--accent-green) !important; }
.text-red { color: #ef4444 !important; }
.text-gray { color: #6b7280 !important; }

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    background: rgba(7, 8, 13, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-img-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text .accent-text {
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .logo {
    font-size: 1.5rem;
    gap: 12px;
}

.footer .logo-img-icon {
    width: 48px;
    height: 48px;
}

.header-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-pink);
    margin-bottom: 24px;
}

.pulse-icon {
    width: 14px;
    height: 14px;
    animation: zapPulse 1.5s infinite;
}

@keyframes zapPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); filter: drop-shadow(0 0 4px var(--accent-pink)); }
    100% { transform: scale(1); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-subtitle strong {
    color: var(--text-light);
}

/* Hero Pricing Box */
.hero-pricing-box {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 540px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.hero-pricing-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
    z-index: -1;
    pointer-events: none;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.price-current-container {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
}

.price-current-container .currency {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 6px;
}

.price-current-container .price-integer {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-light);
}

.price-fraction-container {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
}

.price-fraction-container .price-fraction {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.price-fraction-container .price-period {
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-top: 2px;
}

/* Urgency info */
.urgency-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.urgency-item strong {
    color: var(--text-light);
}

.urgency-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.775rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.guarantee-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Hero Media Column */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: orbMove 10s ease-in-out infinite alternate;
}

@keyframes orbMove {
    0% { transform: translate(-20px, -20px) scale(0.9); }
    100% { transform: translate(20px, 20px) scale(1.1); }
}

.media-frame {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #0d0f17;
}

.hero-img {
    width: 100%;
    transform: scale(1.02);
    transition: var(--transition-smooth);
}
.media-frame:hover .hero-img {
    transform: scale(1.05);
}

/* Floating badges styling */
.floating-badge {
    position: absolute;
    z-index: 3;
    background: rgba(18, 20, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color-hover);
    padding: 10px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    animation: floatAnimation 4s ease-in-out infinite;
}

.floating-badge i {
    width: 16px;
    height: 16px;
}

.badge-1 { top: 15%; left: -10%; animation-delay: 0s; }
.badge-2 { bottom: 20%; right: -8%; animation-delay: 1.3s; }
.badge-3 { bottom: 5%; left: 5%; animation-delay: 2.5s; }

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

/* ==========================================================================
   STATS BAR SECTION
   ========================================================================== */
.stats-bar {
    background: rgba(12, 14, 25, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SECTION TITLE TEMPLATE
   ========================================================================== */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-indigo);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   FEATURES (BENEFITS) SECTION
   ========================================================================== */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-purple));
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-box i {
    width: 22px;
    height: 22px;
    color: white;
}

.feature-icon-box img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

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

.brand-logos-combo .brand-logo-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logos-combo .brand-logo-icon:not(:first-child) {
    margin-left: -8px;
    filter: drop-shadow(-2px 0 4px rgba(0, 0, 0, 0.5));
}

.brand-logos-combo:hover .brand-logo-icon:not(:first-child) {
    margin-left: 4px;
}

.badge-logo-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Icon box bg gradients */
.card-blue { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.4) 100%); color: var(--accent-blue); }
.card-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.4) 100%); color: var(--primary-purple); }
.card-pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.4) 100%); color: var(--accent-pink); }
.card-cyan { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(59, 130, 246, 0.4) 100%); color: var(--accent-blue); }
.card-orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.4) 100%); }
.card-red { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.4) 100%); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   PRICING COMPARISON SECTION
   ========================================================================== */
.comparison {
    padding: 100px 0;
    background: rgba(9, 10, 17, 0.4);
    position: relative;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.outline-card {
    background: rgba(18, 20, 32, 0.3);
    border: 1px solid var(--border-color);
}

.featured-card {
    background: linear-gradient(145deg, rgba(25, 20, 50, 0.8) 0%, rgba(13, 10, 28, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

.featured-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-indigo), var(--accent-pink));
    z-index: -1;
    opacity: 0.5;
}

.popular-ribbon {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(90deg, var(--accent-pink), var(--primary-purple));
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 0.725rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.card-price-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.price-display .currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 4px;
}

.price-display .price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-light);
}

.price-display .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 4px;
}

.card-total-cost {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.card-total-cost strong {
    color: var(--text-light);
}

.text-gradient-light strong {
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 32px;
}

.divider-light {
    background: rgba(255, 255, 255, 0.12);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.comparison-list li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3) 30%, rgba(99, 102, 241, 0.3) 70%, transparent 100%);
    z-index: 1;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-indigo));
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   NOTICE BOX (WARNING/INSTRUCTIONS)
   ========================================================================== */
.notice-box {
    background: rgba(251, 191, 36, 0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 56px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(251, 191, 36, 0.03);
    position: relative;
    text-align: left;
}

.notice-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.notice-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.notice-icon {
    width: 28px;
    height: 28px;
    color: #fbbf24;
    flex-shrink: 0;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notice-highlight, .notice-rule {
    font-size: 0.975rem;
    color: var(--text-main);
    line-height: 1.6;
}

.notice-highlight strong, .notice-rule strong {
    color: var(--text-light);
}

.notice-steps-wrapper {
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.notice-steps-wrapper h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
}

.notice-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notice-steps-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.notice-steps-list li strong {
    color: var(--text-light);
}

.notice-steps-list .step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #07080d;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.text-orange {
    color: #fbbf24 !important;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background: rgba(9, 10, 17, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    color: #f59e0b;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-indigo);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.3s ease;
    padding: 0 32px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.6;
}

/* FAQ Active state classes (managed by JS) */
.faq-item.active {
    border-color: rgba(139, 92, 246, 0.4);
}

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

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */
.cta-bottom {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.glow-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.glow-spot-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.cta-bottom-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    color: var(--accent-pink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-bottom h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-bottom p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-price-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.cta-old-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.cta-new-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-light);
}

.cta-period {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}

.cta-trust-items {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: #030407;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.footer-info .logo {
    justify-content: center;
    margin-bottom: 16px;
}

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

.footer-badges-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
}

.footer-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary-indigo);
}

.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.725rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 1000px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon {
    width: 30px;
    height: 30px;
    animation: phoneShake 2.5s infinite;
}

@keyframes phoneShake {
    0% { transform: scale(1); }
    10% { transform: scale(1.1) rotate(-5deg); }
    20% { transform: scale(1.1) rotate(5deg); }
    30% { transform: scale(1.1) rotate(-5deg); }
    40% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1); }
    100% { transform: scale(1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: #121420;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-pricing-box {
        margin: 0 auto;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on medium screens to keep it clean */
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 40px 0 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .comparison-card {
        padding: 32px;
    }
    
    .section-title-wrapper h2 {
        font-size: 2rem;
    }
    
    .cta-bottom h2 {
        font-size: 2.25rem;
    }
    
    .header-badges .btn {
        display: none; /* Hide top CTA button on mobile */
    }
    
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-pricing-box {
        padding: 20px;
    }
    
    .price-current-container .price-integer {
        font-size: 3.5rem;
    }
    
    .urgency-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}
