/* ══════════════════════════════
   DESIGN SYSTEM & VARIABLES
   ══════════════════════════════ */
:root {
    --fire: #ff6b00;
    --fire-bright: #ff8533;
    --fire-glow: rgba(255, 107, 0, 0.45);
    --fire-bg-glow: rgba(255, 107, 0, 0.08);
    --ink: #060b13;
    --ink-card: #0d1524;
    --ink-card-hover: #121c30;
    --ink-border: rgba(255, 107, 0, 0.18);
    --white: #ffffff;
    --muted: #8092b0;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ══════════════════════════════
   BACKGROUND DYNAMICS
   ══════════════════════════════ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 75%);
    bottom: 10%;
    left: -100px;
}
.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.06) 0%, transparent 70%);
    top: 40%;
    right: 10%;
}

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 6%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 11, 19, 0.85);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--ink-border);
}

.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-link {
    padding: 8px 16px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--fire);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
}
.nav-cta:hover {
    background: var(--fire-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

/* ══════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════ */
.topbar {
    margin-top: 80px;
    background: linear-gradient(90deg, var(--fire) 0%, #d44d00 100%);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmers 3.5s infinite;
}
@keyframes shimmers {
    to { left: 200%; }
}
.topbar strong {
    background: var(--ink);
    color: #ffd700;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
    margin-left: 8px;
    font-size: 0.95rem;
}

/* ══════════════════════════════
   HERO SECTION
   ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 6% 80px;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-text {
    position: absolute;
    bottom: -40px;
    left: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 18vw, 240px);
    color: rgba(255, 107, 0, 0.025);
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    letter-spacing: 4px;
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1.2;
    z-index: 5;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 107, 0, 0.25);
    background: rgba(255, 107, 0, 0.05);
    color: var(--fire-bright);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fire);
    box-shadow: 0 0 10px var(--fire);
}

.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5.2vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-h1 .line2 {
    color: transparent;
    -webkit-text-stroke: 2px var(--fire);
    display: block;
}
.hero-h1 .line3 {
    color: var(--fire);
    display: block;
}

.hero-desc {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--muted);
    max-width: 650px;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--fire);
    padding-left: 16px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.store-pair {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    min-width: 200px;
}
.dl-btn:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.15);
}
.dl-icon {
    font-size: 2.2rem;
}
.dl-sub {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dl-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rating-stars {
    color: #ffd700;
    font-size: 1rem;
}
.rating-text {
    font-size: 0.9rem;
    color: var(--muted);
}
.rating-text strong {
    color: var(--white);
}

/* Hero Phone Visual */
.hero-visual {
    flex: 0 0 auto;
    position: relative;
    perspective: 1500px;
    z-index: 5;
}

.phone-3d {
    width: 270px;
    height: 560px;
    background: var(--ink-card);
    border-radius: 40px;
    border: 8px solid #1a273b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: rotateY(-15deg) rotateX(8deg);
    animation: floatyPhone 6s ease-in-out infinite;
    transition: var(--transition);
}
@keyframes floatyPhone {
    0%, 100% { transform: rotateY(-15deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(8deg) translateY(-14px); }
}
.phone-3d:hover {
    transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}
.phone-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a273b;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
.phone-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 32px;
}

.phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 0, 0.12);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ring-1 { width: 370px; height: 370px; animation: pulseRing 4s infinite; }
.ring-2 { width: 470px; height: 470px; animation: pulseRing 4s 1.5s infinite; }
.ring-3 { width: 570px; height: 570px; animation: pulseRing 4s 3s infinite; }
@keyframes pulseRing {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.02); }
}

.float-badge {
    position: absolute;
    background: rgba(13, 21, 36, 0.95);
    border: 1px solid var(--ink-border);
    border-radius: 16px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    white-space: nowrap;
}
.badge-a { top: 60px; left: -100px; animation: bFloat 4s ease-in-out infinite; }
.badge-b { bottom: 170px; left: -80px; animation: bFloat 4s 1.5s ease-in-out infinite; }
.badge-c { bottom: 60px; right: -30px; animation: bFloat 4s 0.8s ease-in-out infinite; }
@keyframes bFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.fb-icon {
    font-size: 1.4rem;
}
.fb-label {
    font-size: 0.72rem;
    color: var(--muted);
}
.fb-val {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ══════════════════════════════
   STATS SECTION
   ══════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, var(--fire) 0%, #d44d00 100%);
    padding: 55px 6%;
    position: relative;
    z-index: 10;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    margin: -15px 0;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: 1.5px;
}
.stat-lbl {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
}
.stat-divider {
    width: 1.5px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════
   NEW FEATURES GRID SECTION
   ══════════════════════════════ */
.features-grid-section {
    padding: 120px 6% 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.section-title span {
    color: var(--fire);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Curated Harmonious Theme Variables */
.feat-orange {
    --card-theme: #ff6b00;
    --card-theme-glow: rgba(255, 107, 0, 0.18);
    --card-theme-bg: rgba(255, 107, 0, 0.08);
}
.feat-purple {
    --card-theme: #a78bfa;
    --card-theme-glow: rgba(167, 139, 250, 0.18);
    --card-theme-bg: rgba(167, 139, 250, 0.08);
}
.feat-amber {
    --card-theme: #fbbf24;
    --card-theme-glow: rgba(251, 191, 36, 0.18);
    --card-theme-bg: rgba(251, 191, 36, 0.08);
}
.feat-teal {
    --card-theme: #00ffcc;
    --card-theme-glow: rgba(0, 255, 204, 0.18);
    --card-theme-bg: rgba(0, 255, 204, 0.08);
}
.feat-pink {
    --card-theme: #ff2a5f;
    --card-theme-glow: rgba(255, 42, 95, 0.18);
    --card-theme-bg: rgba(255, 42, 95, 0.08);
}
.feat-emerald {
    --card-theme: #10b981;
    --card-theme-glow: rgba(16, 185, 129, 0.18);
    --card-theme-bg: rgba(16, 185, 129, 0.08);
}
.feat-indigo {
    --card-theme: #6366f1;
    --card-theme-glow: rgba(99, 102, 241, 0.18);
    --card-theme-bg: rgba(99, 102, 241, 0.08);
}

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

.feature-card-item {
    background: linear-gradient(135deg, rgba(13, 21, 36, 0.75) 0%, rgba(6, 11, 19, 0.85) 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--card-theme, var(--fire));
    box-shadow: 0 15px 35px var(--card-theme-glow, rgba(255, 107, 0, 0.15));
}
.feature-card-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3.5px;
    background: linear-gradient(90deg, transparent, var(--card-theme, var(--fire)), transparent);
    opacity: 0;
    transition: var(--transition);
}
.feature-card-item:hover::before {
    opacity: 1;
}

.fci-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--card-theme-bg, rgba(255, 107, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.05);
    transition: var(--transition);
}
.fci-icon i {
    font-size: 1.8rem;
    color: var(--card-theme, var(--fire));
    transition: var(--transition);
}
.feature-card-item:hover .fci-icon i {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card-item h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.feature-card-item p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* ══════════════════════════════
   CENTERED HIGHLIGHT SECTION (NO IMAGE STACK)
   ══════════════════════════════ */
.centered-highlight {
    padding: 100px 6% 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.04) 0%, transparent 60%);
}
.highlight-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.highlight-inner-centered {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.highlight-inner-centered h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 107, 0, 0.25);
    background: rgba(255, 107, 0, 0.05);
    color: var(--fire-bright);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.narrator-quote-centered {
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
    position: relative;
    padding: 0 40px;
}
.narrator-quote-centered::before {
    content: '“';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--fire);
    position: absolute;
    top: -30px;
    left: 0;
}
.narrator-quote-centered::after {
    content: '”';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--fire);
    position: absolute;
    bottom: -70px;
    right: 0;
}

.highlight-features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.highlight-feat-card {
    background: linear-gradient(135deg, rgba(13, 21, 36, 0.75) 0%, rgba(6, 11, 19, 0.85) 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 24px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.highlight-feat-card:hover {
    border-color: var(--card-theme, var(--fire));
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--card-theme-glow, rgba(255, 107, 0, 0.15));
}

.hfc-icon {
    font-size: 2.2rem;
    color: var(--card-theme, var(--fire));
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}
.highlight-feat-card:hover .hfc-icon {
    transform: scale(1.18) rotate(8deg);
}

.highlight-feat-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.highlight-feat-card p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

.highlight-quote-bottom-centered {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fire-bright);
    letter-spacing: 0.5px;
}

/* ══════════════════════════════
   INTERACTIVE QUIZ AREA
   ══════════════════════════════ */
.quiz-section {
    padding: 100px 6%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.quiz-container {
    background: var(--ink-card);
    border: 1px solid var(--ink-border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    position: relative;
}

.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}
.quiz-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    color: var(--fire);
    margin-bottom: 8px;
}
.quiz-header p {
    color: var(--muted);
    font-size: 1rem;
}

.quiz-progress-bar-wrap {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.quiz-progress-fill {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--fire), var(--fire-bright));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.quiz-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 24px;
}

.quiz-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quiz-options-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
}
.quiz-option:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
}
.quiz-option-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.9rem;
    transition: var(--transition);
}

.quiz-option.correct {
    background: rgba(0, 230, 118, 0.15) !important;
    border-color: #00e676 !important;
}
.quiz-option.correct .quiz-option-marker {
    background: #00e676 !important;
    border-color: #00e676 !important;
    color: #050a12 !important;
}

.quiz-option.wrong {
    background: rgba(255, 23, 68, 0.12) !important;
    border-color: #ff1744 !important;
}
.quiz-option.wrong .quiz-option-marker {
    background: #ff1744 !important;
    border-color: #ff1744 !important;
    color: var(--white) !important;
}

.quiz-option.disabled {
    pointer-events: none;
    opacity: 0.7;
}

/* Explanation Box */
.quiz-explanation-box {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--ink-border);
    border-radius: 18px;
    padding: 24px;
    margin-top: 24px;
    display: none;
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-explanation-box h4 {
    color: var(--fire-bright);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quiz-explanation-box p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quiz-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: var(--fire);
    color: var(--white);
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.quiz-btn:hover {
    background: var(--fire-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.3);
}

/* Results Box */
.quiz-results-box {
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.qr-trophy {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
}
.quiz-results-box h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 30px;
}
.qr-score-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}
.qr-score-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    min-width: 120px;
}
.qr-score-card span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    display: block;
    color: var(--fire);
}
.qr-score-card p {
    font-size: 0.85rem;
    color: var(--muted);
}
.qr-feedback {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ══════════════════════════════
   PRICING SECTION
   ══════════════════════════════ */
.pricing-section {
    padding: 120px 6%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: -45px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--ink-card);
    border: 1.5px solid var(--border-color);
    border-radius: 28px;
    padding: 45px 35px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--ink-border);
}
.pricing-card.popular {
    border-color: var(--fire);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.04) 0%, rgba(6, 11, 19, 0.1) 100%), var(--ink-card);
    box-shadow: 0 20px 45px rgba(255, 107, 0, 0.08);
}
.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fire);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pc-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.pc-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.pc-price {
    font-size: 2.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
}
.price-period {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--muted);
    font-weight: 500;
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.pc-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pc-features li i.fa-check {
    color: #00ffcc;
}
.pc-features li i.fa-xmark {
    color: #ff1744;
}
.pc-features li.disabled {
    color: var(--muted);
    opacity: 0.5;
}

.pc-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    transition: var(--transition);
}
.pricing-card.popular .pc-cta {
    background: var(--fire);
    border-color: var(--fire);
    box-shadow: 0 4px 18px rgba(255,107,0,0.35);
}
.pricing-card.popular .pc-cta:hover {
    background: var(--fire-bright);
    box-shadow: 0 8px 25px rgba(255,107,0,0.45);
    transform: translateY(-2px);
}
.pc-cta:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: var(--fire);
}

/* ══════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════ */
.faq-section {
    padding: 120px 6%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    border: 1.5px solid var(--border-color);
    background: var(--ink-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--ink-border);
}
.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
}
.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--fire);
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    opacity: 0;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}
.faq-answer p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow: hidden;
    min-height: 0;
    padding: 0 24px;
    transition: padding 0.35s ease;
}
.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}


/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
footer {
    padding: 80px 6% 40px;
    background: #03060c;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--fire);
    border-color: var(--fire);
    transform: translateY(-3px);
}

.footer-tagline {
    max-width: 1200px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 600px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
}

/* ══════════════════════════════
   RESPONSIVENESS (MOBILE ADJUSTMENTS)
   ══════════════════════════════ */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .hero-desc {
        margin: 0 auto 40px;
    }
    .store-pair {
        justify-content: center;
    }
    .rating-row {
        justify-content: center;
    }
    .stats-inner {
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }
    .logo-wrap {
        justify-content: center;
    }
    header {
        padding: 0 4%;
        flex-direction: column;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 15px;
    }
    .topbar {
        margin-top: 130px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    .highlight-features-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .narrator-quote-centered::before, .narrator-quote-centered::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .qr-score-row {
        flex-direction: column;
        align-items: center;
    }
    .qr-score-card {
        width: 100%;
        max-width: 200px;
    }
    .quiz-container {
        padding: 24px;
        border-radius: 20px;
    }
}
