/* ======================================================
   DealzSpot — Design System & Styles
   Trust-Focused Dark Luxury Theme
   Colors: Deep Navy + Emerald Green + Gold accents
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
    /* Core palette — Royal Blue Trust */
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --primary-glow: rgba(59, 130, 246, 0.35);
    --primary-glow-subtle: rgba(59, 130, 246, 0.12);
    --primary-light: rgba(59, 130, 246, 0.08);

    /* Cyan — Secondary highlights */
    --cyan: #06B6D4;
    --cyan-glow: rgba(6, 182, 212, 0.3);

    /* Gold — Premium badges only */
    --gold: #FBBF24;
    --gold-glow: rgba(251, 191, 36, 0.3);

    /* Surfaces */
    --background: #0A0F1E;
    --surface: #111827;
    --surface-low: #0D1220;
    --surface-high: #1E293B;
    --surface-glass: rgba(17, 24, 39, 0.7);

    /* Text */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Borders */
    --border: rgba(148, 163, 184, 0.10);
    --border-hover: rgba(59, 130, 246, 0.40);

    /* Stars */
    --star-color: #FBBF24;

    /* Typography */
    --font-headline: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radii */
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 100px;

    /* Transitions */
    --transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* ======================================================
   HEADER — Glassmorphism Sticky Navbar
   ====================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: var(--surface-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(11, 17, 32, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover .logo-icon {
    transform: rotate(6deg) scale(1.08);
    color: var(--cyan);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--primary-glow-subtle);
    margin-left: 12px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* Header CTA */
.header-cta {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
    background: var(--primary-hover);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.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); }

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
    padding-top: 115px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, var(--primary-glow-subtle) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center top, center center, center center;
}

/* Subtle background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.18;
    pointer-events: none;
    filter: blur(60px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% { border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1); }
    50% { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 4px 30px rgba(59, 130, 246, 0.25); }
}

.hero h1 {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

.hero h1 .accent {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

/* Trust Badges Row in Hero */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.hero-trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hero-trust-item svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-trust-item .trust-num {
    color: var(--text-primary);
    font-weight: 700;
}

/* ======================================================
   STATS BAR
   ====================================================== */
.stats-bar {
    padding: 0;
    margin-top: -20px;
}

.stats-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-glow-subtle);
    border: 1px solid var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-value {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Divider between stats */
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ======================================================
   BRAND LOGOS TICKER
   ====================================================== */
.brands-section {
    padding: 50px 0;
    text-align: center;
}

.brands-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.brands-track {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.brands-track::before,
.brands-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-track::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.brands-track::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.brands-scroll {
    display: flex;
    gap: 48px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

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

.brand-logo-item {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-muted);
    opacity: 0.4;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    letter-spacing: 1px;
}

.brand-logo-item:hover {
    opacity: 0.8;
    color: var(--text-secondary);
}

.brand-logo-svg {
    height: 26px;
    width: auto;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ======================================================
   OFFERS SECTION
   ====================================================== */
.offers-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filters */
.category-filters-wrap {
    width: 100%;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.filter-chip {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    transition: var(--transition);
}

.filter-chip:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.filter-chip.active {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Offer Card */
.offer-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-high);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--border-hover);
}

.offer-card:hover .card-shine {
    left: 150%;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.offer-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-align: left;
    letter-spacing: -0.2px;
}

.card-image-wrap {
    height: 180px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

/* Card shine sweep */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 5;
}

.card-brand-logo {
    position: absolute;
    top: 158px; /* 180px - 22px */
    left: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 10;
    transition: var(--transition);
    padding: 6px;
}

.offer-card:hover .card-brand-logo {
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.card-content {
    padding: 24px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-headline);
}

.value-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Claim Button */
.btn-claim {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.btn-claim:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-claim:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Skeleton Card Loader */
.skeleton-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    position: relative;
}

.skeleton-image {
    height: 180px;
    width: 100%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-logo {
    position: absolute;
    top: 158px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border: 2px solid var(--border);
    z-index: 10;
}

.skeleton-content {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: var(--radius-sm);
}

.skeleton-value {
    height: 28px;
    width: 40%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 48px;
    width: 100%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: var(--radius-sm);
}

.skeleton-button {
    height: 44px;
    width: 100%;
    background: linear-gradient(90deg, var(--border) 25%, rgba(59, 130, 246, 0.08) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: var(--radius-sm);
    margin-top: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ======================================================
   HOW IT WORKS
   ====================================================== */
.steps-section {
    background: var(--background);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.step-card:hover {
    background: var(--surface-high);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-glow-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    border: 1px solid var(--primary-glow);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 30px var(--primary-glow);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section {
    background: var(--surface-low);
    padding: 100px 0;
}

.stars-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 40px;
    margin-top: 16px;
}

.stars-row .star {
    color: var(--star-color);
    font-size: 1.3rem;
}

.stars-row .rating-text {
    margin-left: 8px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Bento Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    grid-column: span 3;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary-glow);
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: var(--background);
    border-color: var(--primary-glow);
}

.testimonial-card.small {
    grid-column: span 2;
    padding: 22px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
    line-height: 1;
    margin: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card.small .testimonial-text {
    font-size: 0.88rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-high);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
}

.author-info .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
}

.author-info .verified-badge svg {
    width: 12px;
    height: 12px;
}

/* ======================================================
   FAQ / SUPPORT
   ====================================================== */
.faq-section {
    padding: 100px 0;
    background: var(--background);
}

.faq-container {
    max-width: 720px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 0 24px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.25);
}

.faq-item.active {
    background: rgba(59, 130, 246, 0.03);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 18px 0;
    text-align: left;
    font-family: var(--font-headline);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-glow-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact card */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
}

.footer-brand .logo-icon {
    width: 30px;
    height: 30px;
}

.footer-brand .footer-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.8;
}



/* ======================================================
   SCROLL REVEAL ANIMATION
   ====================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   RESPONSIVE — Tablet
   ====================================================== */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        padding: 24px 20px;
        gap: 16px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .testimonial-card.featured {
        grid-column: span 2;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        grid-column: span 1;
    }

    .testimonial-card.small {
        grid-column: span 1;
    }
}

/* ======================================================
   RESPONSIVE — Mobile
   ====================================================== */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    /* Header mobile */
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        padding: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
    }

    .main-nav.open {
        max-height: 300px;
        opacity: 1;
        padding: 16px 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }

    .main-nav ul li {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.open ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.open ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.open ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.open ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.open ul li:nth-child(4) { transition-delay: 0.25s; }

    .main-nav li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

    .header-cta {
        display: none;
    }

    /* Hero mobile */
    .hero {
        padding-top: 80px;
        padding-bottom: 24px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.15;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem);
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-trust-row {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
    }

    .hero-trust-item {
        font-size: 0.72rem;
        padding: 5px 12px;
        width: fit-content;
    }

    /* Stats */
    .stats-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 12px;
        gap: 8px;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
        background: var(--border);
    }

    .stat-item {
        width: auto;
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        margin: 0;
    }

    .stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    /* Filters Scroll Fade Indicator */
    .category-filters-wrap {
        position: relative;
        margin-left: -24px;
        margin-right: -24px;
        overflow: hidden;
    }

    .category-filters-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 100%;
        background: linear-gradient(to left, var(--background), transparent);
        pointer-events: none;
        z-index: 2;
    }

    /* Filters (horizontal scroll on mobile) */
    .category-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 4px 24px 12px;
        margin-left: 0;
        margin-right: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .category-filters::after {
        content: '';
        padding-right: 24px;
        display: block;
        flex-shrink: 0;
    }

    .filter-chip {
        flex-shrink: 0;
        scroll-snap-align: start;
        transition: transform 0.1s ease;
        padding: 10px 22px;
    }

    .filter-chip:active {
        transform: scale(0.95);
    }

    .hamburger:active {
        transform: scale(0.92);
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .testimonial-card.featured,
    .testimonial-card.small {
        grid-column: span 1;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .brand-logo-item {
        font-size: 1rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .category-filters-wrap {
        margin-left: -16px;
        margin-right: -16px;
    }
}

