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

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

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(233, 30, 99, 0.08);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.1;
}

.logo .highlight {
    color: #e91e63;
}

.logo .sub {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #9a9ab0;
    font-weight: 600;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active-link {
    color: #e91e63;
}

.btn-quote {
    background: #e91e63;
    color: #fff !important;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background: #ff2d78;
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.5);
    transform: translateY(-1px);
}

.btn-quote::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

/* Background glow effects */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.12);
    border: 1px solid rgba(233, 30, 99, 0.25);
    color: #ff2d78;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .accent {
    color: #e91e63;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #8a8aa0;
    margin-bottom: 12px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-powered {
    font-size: 0.9rem;
    color: #6a6a80;
    margin-bottom: 32px;
}

.hero-powered a {
    color: #e91e63;
    text-decoration: underline;
    text-decoration-color: rgba(233, 30, 99, 0.4);
    text-underline-offset: 3px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    background: #e91e63;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #ff2d78;
    box-shadow: 0 4px 30px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.08);
    transform: translateY(-2px);
}

/* Hero rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stars {
    color: #ffc107;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.hero-rating-text {
    font-size: 0.9rem;
    color: #7a7a90;
}

.hero-rating-text strong {
    color: #fff;
}

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

.hero-image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* ===== TRUST LOGOS BAR ===== */
.trust-logos {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(12, 12, 20, 0.6);
    overflow: hidden;
}

.trust-logos-header {
    text-align: center;
    margin-bottom: 24px;
}

.trust-logos-header p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4a4a60;
    font-weight: 600;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.3rem;
    font-weight: 800;
    color: #3a3a50;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.logo-item:hover {
    color: #6a6a80;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 70px 0;
}

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

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.badge-item:hover {
    border-color: rgba(233, 30, 99, 0.15);
    background: rgba(26, 26, 46, 0.7);
    transform: translateY(-4px);
}

.badge-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

/* Neon glow icon backgrounds */
.badge-icon.neon-pink {
    background: rgba(233, 30, 99, 0.12);
    color: #e91e63;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.1);
}

.badge-icon.neon-blue {
    background: rgba(33, 150, 243, 0.12);
    color: #2196f3;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.1);
}

.badge-icon.neon-green {
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.1);
}

.badge-icon.neon-purple {
    background: rgba(156, 39, 176, 0.12);
    color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.1);
}

.badge-item:hover .badge-icon {
    transform: scale(1.1);
}

.badge-item:hover .badge-icon.neon-pink {
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
}

.badge-item:hover .badge-icon.neon-blue {
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.3);
}

.badge-item:hover .badge-icon.neon-green {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

.badge-item:hover .badge-icon.neon-purple {
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
}

.badge-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-item p {
    font-size: 0.82rem;
    color: #6a6a80;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left-align {
    text-align: left;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-header h2 .accent {
    color: #e91e63;
}

.section-header p {
    color: #6a6a80;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-header.left-align p {
    margin: 0;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 0 40px;
}

.products-top-row {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-bottom: 40px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.category-tab {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #7a7a90;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.category-tab:hover,
.category-tab.active {
    background: #e91e63;
    color: #fff;
    border-color: #e91e63;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.25);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background: #12121e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #9c27b0, #2196f3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 30, 99, 0.2);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.12), 0 0 80px rgba(233, 30, 99, 0.04);
}

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

/* Product card visual area */
.product-card-visual {
    height: 160px;
    background: linear-gradient(135deg, #1a1a2e 0%, #12121e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-visual::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

/* Neon color variants for product cards */
.product-card-visual.neon-pink::before {
    background: #e91e63;
    box-shadow: 0 0 60px #e91e63;
}

.product-card-visual.neon-blue::before {
    background: #2196f3;
    box-shadow: 0 0 60px #2196f3;
}

.product-card-visual.neon-purple::before {
    background: #9c27b0;
    box-shadow: 0 0 60px #9c27b0;
}

.product-card-visual.neon-cyan::before {
    background: #00bcd4;
    box-shadow: 0 0 60px #00bcd4;
}

.product-card-visual.neon-orange::before {
    background: #ff5722;
    box-shadow: 0 0 60px #ff5722;
}

.product-card-visual.neon-green::before {
    background: #4caf50;
    box-shadow: 0 0 60px #4caf50;
}

.product-card:hover .product-card-visual::before {
    opacity: 0.25;
    transform: scale(1.3);
}

.product-card-visual i {
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.product-card-visual.neon-pink i { color: #e91e63; filter: drop-shadow(0 0 12px rgba(233, 30, 99, 0.5)); }
.product-card-visual.neon-blue i { color: #2196f3; filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.5)); }
.product-card-visual.neon-purple i { color: #9c27b0; filter: drop-shadow(0 0 12px rgba(156, 39, 176, 0.5)); }
.product-card-visual.neon-cyan i { color: #00bcd4; filter: drop-shadow(0 0 12px rgba(0, 188, 212, 0.5)); }
.product-card-visual.neon-orange i { color: #ff5722; filter: drop-shadow(0 0 12px rgba(255, 87, 34, 0.5)); }
.product-card-visual.neon-green i { color: #4caf50; filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.5)); }

.product-card:hover .product-card-visual i {
    transform: scale(1.15);
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card-body p {
    font-size: 0.82rem;
    color: #6a6a80;
    line-height: 1.5;
    margin-bottom: 14px;
}

.card-link {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .card-link {
    gap: 10px;
}

/* Product Category Sections */
.product-category {
    margin-bottom: 50px;
    display: none;
}

.product-category.active {
    display: block;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: #e91e63;
    font-size: 1.1rem;
}

/* ===== PROMO CARD (sidebar) ===== */
.promo-sidebar {
    background: linear-gradient(160deg, #1a0a18 0%, #12121e 40%, #1a0a18 100%);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.promo-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(233, 30, 99, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.promo-sidebar .promo-badge {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.promo-sidebar h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    position: relative;
}

.promo-sidebar h3 .accent {
    color: #e91e63;
}

.promo-sidebar p {
    color: #7a7a90;
    font-size: 0.85rem;
    margin-bottom: 20px;
    position: relative;
}

.promo-code {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    border: 2px dashed rgba(233, 30, 99, 0.4);
    padding: 10px 28px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #e91e63;
    margin-bottom: 20px;
    position: relative;
}

/* ===== PROMO BANNER (full-width) ===== */
.promo-full {
    padding: 60px 0;
}

.promo-banner {
    background: linear-gradient(135deg, #1a0a18 0%, #12121e 50%, #0a0a18 100%);
    border: 1px solid rgba(233, 30, 99, 0.12);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 180%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 30, 99, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
}

.promo-banner p {
    color: #7a7a90;
    font-size: 1.05rem;
    margin-bottom: 28px;
    position: relative;
}

/* ===== WHY CHOOSE US / STATS ===== */
.why-choose {
    padding: 80px 0;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(12, 12, 20, 0.5) 0%, transparent 30%, transparent 70%, rgba(12, 12, 20, 0.5) 100%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
}

.why-text h2 .accent {
    color: #e91e63;
}

.why-text p {
    color: #7a7a90;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px 12px;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.72rem;
    color: #6a6a80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why features list */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    border-color: rgba(233, 30, 99, 0.15);
    background: rgba(26, 26, 46, 0.6);
}

.why-feature i {
    color: #e91e63;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.78rem;
    color: #6a6a80;
    margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: rgba(12, 12, 20, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
}

.step-card {
    background: #12121e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 30, 99, 0.15);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.step-icon.neon-pink {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.1);
}

.step-icon.neon-blue {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.1);
}

.step-icon.neon-green {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.1);
}

.step-card:hover .step-icon.neon-pink { box-shadow: 0 0 40px rgba(233, 30, 99, 0.25); }
.step-card:hover .step-icon.neon-blue { box-shadow: 0 0 40px rgba(33, 150, 243, 0.25); }
.step-card:hover .step-icon.neon-green { box-shadow: 0 0 40px rgba(76, 175, 80, 0.25); }

.step-number-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    border: 3px solid #12121e;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: #6a6a80;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
}

.final-cta h2 .accent {
    color: #e91e63;
}

.final-cta p {
    color: #7a7a90;
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: #08080e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: #5a5a70;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5a70;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #5a5a70;
    font-size: 0.85rem;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #e91e63;
    padding-left: 6px;
}

.footer-col a i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #3a3a50;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #3a3a50;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e91e63;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .hero h1 { font-size: 3.8rem; }
    .hero-grid { gap: 30px; }
    .products-top-row { grid-template-columns: 1fr; }
    .promo-sidebar { max-width: 400px; margin: 0 auto; }
    .why-grid { gap: 40px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0a0a12;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        transition: right 0.35s ease;
        border-left: 1px solid rgba(233, 30, 99, 0.1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .mobile-overlay.active { display: block; }

    .hero { padding: 100px 0 50px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-image { order: 0; margin-bottom: 10px; }
    .hero-image img { max-width: 400px; margin: 0 auto; }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-powered { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-rating { justify-content: center; }

    .badges-grid { grid-template-columns: 1fr 1fr; }
    .logos-track { gap: 30px; }

    .products-grid { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 2rem; }

    .why-grid { grid-template-columns: 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }

    .final-cta h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-image img { max-width: 300px; }
    .badges-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-number { font-size: 1.8rem; }
    .logos-track { gap: 20px; }
    .logo-item { font-size: 1rem; }
    .promo-banner { padding: 36px 20px; }
    .promo-banner h2 { font-size: 1.6rem; }
    .category-tabs { gap: 6px; }
    .category-tab { padding: 6px 14px; font-size: 0.75rem; }
}
