/* ============================================
   DIGITALELICENTIES.NL — MAIN STYLESHEET
   ============================================ */

/* CSS Custom Properties */
:root {
    --primary:        #1e3a8a;
    --primary-light:  #2563eb;
    --primary-dark:   #172d6e;
    --accent:         #f97316;
    --accent-dark:    #ea6c00;
    --dark:           #0f172a;
    --dark-secondary: #1e293b;
    --gray-50:        #f8fafc;
    --gray-100:       #f1f5f9;
    --gray-200:       #e2e8f0;
    --gray-300:       #cbd5e1;
    --gray-500:       #64748b;
    --gray-600:       #475569;
    --gray-700:       #334155;
    --white:          #ffffff;
    --success:        #10b981;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.10);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:  0 10px 40px rgba(0,0,0,0.14);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.18);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans:  'Poppins', sans-serif;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--dark-secondary);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(37,99,235,0.08);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-blue {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}
.btn-blue:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.875rem;
}
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-sale   { background: #fef2f2; color: #ef4444; }
.badge-new    { background: #ecfdf5; color: #059669; }
.badge-pop    { background: #fffbeb; color: #d97706; }

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.nav-logo .logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}
.nav-logo .logo-text span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: var(--white);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.nav-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-1px);
}
.nav-whatsapp svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark);
    z-index: 999;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-xl);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 500;
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-menu .mobile-wa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-weight: 600;
    border-bottom: none;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e2d6e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(249,115,22,0.15) 0%, transparent 50%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero p {
    color: rgba(255,255,255,0.72);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.25rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-cards-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--white);
}
.hero-card-main {
    position: relative;
    z-index: 2;
}
.hero-card-back {
    position: absolute;
    top: -16px; right: -16px; left: 16px;
    z-index: 1;
    opacity: 0.5;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    height: 100px;
}
.hero-card .card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.hero-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.4rem; }
.hero-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 1rem; }
.hero-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-card .price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.hero-card .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* Floating badges on hero */
.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    z-index: 5;
    white-space: nowrap;
}
.hero-badge svg { width: 18px; height: 18px; }
.hero-badge-1 { top: -20px; left: -40px; }
.hero-badge-2 { bottom: 30px; left: -50px; }

/* ===== TRUST BADGES ===== */
.trust-bar {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.trust-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}
.trust-icon.blue  { background: rgba(37,99,235,0.1);  color: var(--primary-light); }
.trust-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.trust-icon.orange{ background: rgba(249,115,22,0.1); color: var(--accent); }
.trust-icon.purple{ background: rgba(139,92,246,0.1); color: #8b5cf6; }

.trust-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.1rem; }
.trust-info p  { font-size: 0.78rem; color: var(--gray-500); margin: 0; }

/* ===== CATEGORY GRID ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cat-color-1, #eff6ff), var(--cat-color-2, #dbeafe));
    opacity: 0;
    transition: var(--transition);
}
.category-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.category-card:hover::before { opacity: 1; }

.category-icon {
    width: 70px; height: 70px;
    border-radius: var(--radius-md);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.1); }

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.category-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.category-card .cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.category-card:hover .cat-arrow { gap: 0.6rem; }

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    z-index: 2;
}

.product-img {
    background: linear-gradient(135deg, var(--pc-from, #eff6ff), var(--pc-to, #dbeafe));
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}
.product-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
}

.product-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}
.product-cat {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.product-stars { color: #f59e0b; font-size: 0.8rem; }

.product-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--dark); }
.product-card p  { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1rem; flex: 1; }

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.product-price {
    display: flex;
    flex-direction: column;
}
.price-current {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}
.price-old {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

/* Page hero (category pages) */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(37,99,235,0.3) 0%, transparent 60%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p   { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: var(--transition);
}
.why-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.why-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-item p  { font-size: 0.88rem; }

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.85rem; }
.review-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.review-date { font-size: 0.75rem; color: var(--gray-500); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a56db 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(249,115,22,0.2) 0%, transparent 60%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--primary-light); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    gap: 1rem;
}
.faq-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-600);
}
.faq-item.open .faq-icon {
    background: var(--primary-light);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 300px;
}
.faq-answer p { font-size: 0.9rem; line-height: 1.75; }

/* ===== DELIVERY STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(37,99,235,0.35);
}
.step-item h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.step-item p  { font-size: 0.82rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.footer-logo .logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}
.footer-logo .logo-text span { color: var(--accent); }
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.5);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.payment-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ===== WHATSAPP FLOATING BTN ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}
.whatsapp-float-btn {
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    border: none;
    position: relative;
    text-decoration: none;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float-btn svg { width: 32px; height: 32px; }
.whatsapp-pulse {
    position: absolute;
    top: 0; right: 0;
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.whatsapp-tooltip {
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9998;
    width: 44px; height: 44px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}
.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ===== SCROLL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RATING BAR ===== */
.rating-overview {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
}
.rating-score {
    text-align: center;
    flex-shrink: 0;
}
.rating-score .score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.rating-score .stars { color: #f59e0b; font-size: 1.1rem; margin: 0.3rem 0; }
.rating-score .total { font-size: 0.8rem; color: var(--gray-500); }
.rating-bars { flex: 1; }
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
}
.rating-bar-row span:first-child { width: 30px; flex-shrink: 0; color: var(--gray-600); }
.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    border-radius: 100px;
}
.rating-bar-row span:last-child { width: 30px; flex-shrink: 0; color: var(--gray-500); font-size: 0.78rem; }

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--gray-600);
}
.feature-list li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: rgba(16,185,129,0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ===== PRODUCT DETAIL PANEL ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .section { padding: 60px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero p { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .trust-bar-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .products-grid-3 { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .rating-overview { flex-direction: column; gap: 1.5rem; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .nav-whatsapp span { display: none; }
}

@media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
}
