@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette - Premium Obsidian & Neon Accents */
    --bg-main: hsl(224, 47%, 9%); /* Deep obsidian blue-black */
    --bg-surface: hsl(224, 40%, 13%); /* Surface slate */
    --bg-card: hsla(224, 40%, 15%, 0.6); /* Translucent glassmorphic card */
    --bg-card-hover: hsla(224, 40%, 20%, 0.8);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    --primary: hsl(244, 97%, 66%); /* Radiant indigo */
    --primary-rgb: 99, 102, 241;
    --primary-hover: hsl(244, 97%, 72%);
    
    --secondary: hsl(150, 80%, 42%); /* Emerald green for money saving */
    --secondary-rgb: 16, 185, 129;
    --secondary-hover: hsl(150, 75%, 48%);
    
    --accent: hsl(328, 93%, 60%); /* Hot pink for alert/badge highlights */
    --accent-rgb: 236, 72, 153;
    
    --text-main: hsl(210, 40%, 98%);
    --text-muted: hsl(224, 15%, 75%);
    --text-dark: hsl(224, 40%, 12%);
    
    --gradient-primary: linear-gradient(135deg, hsl(244, 97%, 66%) 0%, hsl(271, 91%, 65%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(150, 80%, 42%) 0%, hsl(172, 90%, 40%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(328, 93%, 60%) 0%, hsl(280, 90%, 60%) 100%);
    --gradient-glow: linear-gradient(90deg, var(--primary), var(--secondary));
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(var(--primary-rgb), 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border: 2px solid var(--bg-main);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

.section-padding {
    padding: 100px 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

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

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 10px;
    font-family: var(--font-display);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
    filter: brightness(1.1);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.25);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--secondary-rgb), 0.4);
    filter: brightness(1.1);
}

/* Glow Badge */
.badge-glow {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary-hover);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-glow.secondary {
    background: rgba(var(--secondary-rgb), 0.12);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    color: var(--secondary);
}

/* Header & Navigation */
.header {
    background: rgba(var(--bg-main), 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(var(--bg-main), 0.85);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-main);
    gap: 8px;
}

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

.logo .dot {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--bg-main);
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
}

/* Ambient Radial Lights in Background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

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

.hero-text h1 {
    margin-bottom: 24px;
    font-size: 4rem;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Card Animation in Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 380px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    width: 280px;
    transition: var(--transition-normal);
}

.floating-card:hover {
    border-color: var(--border-color-hover);
    transform: scale(1.02);
}

.floating-card.c1 {
    top: 20px;
    left: 20px;
    z-index: 3;
}

.floating-card.c2 {
    bottom: 20px;
    right: 20px;
    z-index: 2;
    animation-delay: -3s;
    border-top: 2px solid var(--secondary);
}

.floating-card.c3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    z-index: 1;
    animation-delay: -1.5s;
    opacity: 0.6;
    filter: blur(1px);
}

.card-header-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-hover);
}

.c2 .card-header-icon {
    color: var(--secondary);
}

.floating-card h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.floating-card .card-val {
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--secondary);
    margin: 8px 0;
}

.floating-card.c1 .card-val {
    color: var(--primary-hover);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Methods Grid Section */
.methods {
    background: var(--bg-surface);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-intro p {
    font-size: 1.1rem;
}

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

.method-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.method-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.method-card.featured-card {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.method-card.featured-card::before {
    content: 'POLECAMY';
    position: absolute;
    top: 15px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 30px;
    letter-spacing: 0.1em;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-hover);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.method-card:hover .method-icon {
    background: rgba(var(--primary-rgb), 0.1);
    transform: scale(1.05);
}

.method-card.featured-card .method-icon {
    color: var(--secondary);
}

.method-card:hover.featured-card .method-icon {
    background: rgba(var(--secondary-rgb), 0.1);
}

.method-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.method-list {
    list-style: none;
    margin-bottom: 24px;
}

.method-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.method-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Spotlight Section (eKupony.pl) */
.spotlight {
    position: relative;
    background: var(--bg-main);
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.spotlight-container {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(var(--bg-surface-rgb), 0.7) 0%, rgba(13, 18, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.spotlight-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.spotlight-feat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-normal);
}

.spotlight-feat-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.spotlight-feat-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.spotlight-feat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.spotlight-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Beautiful Interactive Coupon Spotlight UI */
.portal-card {
    background: #ffffff;
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 360px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    border-top: 6px solid var(--primary);
}

.portal-card-header {
    background: #f8fafc;
    padding: 24px;
    text-align: center;
    border-bottom: 1px dashed #e2e8f0;
}

.portal-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: #0f172a;
}

.portal-logo span {
    color: var(--primary);
}

.portal-logo .dot {
    color: var(--secondary);
}

.portal-card-body {
    padding: 28px 24px;
}

.portal-coupon-preview {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.portal-coupon-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.portal-coupon-code {
    font-family: monospace;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 2px;
}

.portal-coupon-shop {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-top: 4px;
}

.portal-stats-row {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

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

.portal-stat-num {
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: #0f172a;
}

.portal-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

/* Calculator Section */
.calculator {
    background: var(--bg-surface);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
}

.calc-inputs {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-group {
    margin-bottom: 32px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label-row label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.calc-val-box {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

/* Sliders customization */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.5);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Toggle Switch */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

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

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-toggle {
    background-color: var(--primary);
}

input:checked + .slider-toggle:before {
    transform: translateX(26px);
}

/* Calculator Results */
.calc-results {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.calc-results::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.result-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.result-val {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
}

.result-val span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 6px;
}

.result-explanation {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
}

.reward-tier {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px;
}

.reward-tier h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reward-tier p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.calc-cta {
    align-self: flex-start;
}

.calc-results .btn-success {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Checklist Section */
.checklist {
    background: var(--bg-main);
}

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

.checklist-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.checklist-checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.checklist-checkbox {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color-hover);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.checklist-item:hover .custom-checkbox {
    border-color: var(--primary);
}

.checklist-checkbox:checked + .custom-checkbox {
    background: var(--gradient-primary);
    border-color: transparent;
}

.checklist-checkbox:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checklist-text {
    flex-grow: 1;
}

.checklist-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    transition: var(--transition-fast);
}

.checklist-checkbox:checked ~ .checklist-text h4 {
    color: var(--text-muted);
    text-decoration: line-through;
}

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

/* Checklist Progress / Ranks */
.checklist-status {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.progress-circle-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 32px auto;
}

.progress-svg {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 12;
}

.progress-bar {
    fill: none;
    stroke: url(#gradient-progress);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--text-main);
}

.rank-badge-box {
    margin-bottom: 24px;
}

.rank-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rank-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.rank-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 50px;
}

/* FAQ Accordion Section */
.faq {
    background: var(--bg-surface);
}

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

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

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

.faq-question {
    padding: 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question svg {
    transition: transform var(--transition-normal);
    color: var(--primary-hover);
}

.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
}

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

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

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

/* Footer */
.footer {
    background: hsl(224, 50%, 6%);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info {
    max-width: 320px;
}

.footer-info p {
    font-size: 0.85rem;
    margin-top: 12px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text-main);
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .dot {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 140px 0 80px 0; }
    .hero-visual { display: none; }
    .spotlight-container { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .spotlight-text h2 { text-align: center; }
    .spotlight-visual { order: -1; }
    .calc-grid { grid-template-columns: 1fr; }
    .checklist-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    .nav-links { display: none; } /* Could add mobile hamburger menu drawer */
    .header-container .btn { display: none; }
    .mobile-menu-toggle { display: block; }
    .spotlight-features { grid-template-columns: 1fr; }
    .calc-inputs { padding: 24px; }
    .calc-results { padding: 32px; }
    .checklist-box { padding: 24px; }
    .checklist-status { padding: 32px; }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
