/* -------------------------------------------------------------
   Lions Digital Landing Page Style Sheet
   Premium Dark Theme, Modern Typography, Glassmorphism Elements
   ------------------------------------------------------------- */

/* Custom CSS Variables */
:root {
    --bg-primary: #060b13;
    --bg-secondary: #0b1424;
    --bg-tertiary: #132038;
    --accent-gold: #f5c242;
    --accent-gold-rgb: 245, 194, 66;
    --accent-gold-hover: #e0b034;
    --accent-gold-glow: rgba(245, 194, 66, 0.15);
    
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 194, 66, 0.2);
    --border-gold-hover: rgba(245, 194, 66, 0.4);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --container-width: 1200px;
    --header-height: 90px;
    --logo-bg: #000000;
}

/* CSS Reset & General Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

i, svg {
    vertical-align: middle;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-white);
}

h1 {
    font-size: 3rem; /* 48px */
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.25rem; /* 36px */
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 12px;
}

p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.gold-text {
    color: var(--accent-gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #fffde6 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header Shared */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 194, 66, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 194, 66, 0.15);
}

.btn-ghost {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-white);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    display: flex;
    width: 100%;
}

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(12px);
    transition: var(--transition-smooth);
}

.btn-glow:hover::before {
    opacity: 0.5;
    transform: scale(1.1);
}

.btn-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

/* Badge Utility */
.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 24px;
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50px;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Header / Navbar style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: var(--logo-bg);
    border-bottom: 1px solid var(--border-color);
}

/* Header state on scroll */
.site-header.scrolled {
    background-color: var(--logo-bg);
    height: 75px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
    height: 68px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(6, 11, 19, 0.9) 20%, rgba(6, 11, 19, 0.45) 65%, rgba(6, 11, 19, 0.1) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(6, 11, 19, 0.95) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 0 36px 0;
}

.hero-ctas {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

/* Stats grid in Hero */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.stat-card {
    background-color: rgba(11, 20, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    background-color: rgba(11, 20, 36, 0.6);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.stat-icon-wrapper svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(245, 194, 66, 0.6));
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Background Glowing Orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.hero-glow-1 {
    top: 15%;
    left: 20%;
    width: 350px;
    height: 350px;
    background: var(--accent-gold);
}

.hero-glow-2 {
    bottom: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: #1e3a8a;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.quote-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: var(--transition-smooth);
    text-align: center;
}

.quote-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.quote-avatar {
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.quote-avatar svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 6px rgba(245, 194, 66, 0.5));
}

.quote-text {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.problem-highlight {
    background-color: rgba(6, 11, 19, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-badge {
    display: inline-block;
    background-color: rgba(245, 194, 66, 0.1);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.problem-highlight h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.problem-highlight p {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Challenge Section */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.challenge-card {
    background-color: rgba(19, 32, 56, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    background-color: rgba(19, 32, 56, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.challenge-card:hover .challenge-icon {
    color: var(--accent-gold);
}

.challenge-icon svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    transition: var(--transition-smooth);
}

.challenge-card:hover .challenge-icon svg {
    filter: drop-shadow(0 0 8px rgba(245, 194, 66, 0.6));
}

.challenge-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Opportunity Section */
.opportunity-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.opportunity-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.opportunity-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.opportunity-list li {
    display: flex;
    gap: 20px;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.list-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 6px rgba(245, 194, 66, 0.5));
}

.opportunity-list h5 {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.opportunity-list p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.opportunity-visual {
    position: relative;
}

.glow-box {
    background: linear-gradient(135deg, rgba(19, 32, 56, 0.8) 0%, rgba(11, 20, 36, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 
                inset 0 0 20px rgba(245, 194, 66, 0.05);
    position: relative;
    z-index: 1;
}

.glow-box::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-gold);
    filter: blur(70px);
    z-index: -1;
    opacity: 0.2;
}

.glow-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.glow-box h4 {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.glow-box-text {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 0;
    font-style: italic;
}

/* Solution / Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background-color: rgba(11, 20, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-card.highlight {
    background-color: rgba(19, 32, 56, 0.4);
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px rgba(245, 194, 66, 0.05);
}

.step-card.highlight:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(245, 194, 66, 0.12);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    color: rgba(245, 194, 66, 0.25);
    transform: scale(1.05);
}

.step-card.highlight .step-num {
    color: rgba(245, 194, 66, 0.15);
}

.step-time {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
    flex-grow: 1;
    margin-bottom: 30px;
}

.step-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.price-suffix {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-gray);
}

/* Pillars Section */
.pillars-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.pillars-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pillars-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pillars-header h2 {
    margin-bottom: 16px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(245, 194, 66, 0.5));
}

.pillar-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.pillar-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.plan-card {
    background-color: rgba(11, 20, 36, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Featured/IA Highlight Card */
.plan-card.featured {
    background-color: rgba(19, 32, 56, 0.7);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(245, 194, 66, 0.04);
}

.plan-card.featured:hover {
    box-shadow: 0 20px 50px rgba(245, 194, 66, 0.15);
    border-color: #ffd25d;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(245, 194, 66, 0.3);
}

.plan-step {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.plan-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.plan-price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.plan-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 28px 0;
}

.plan-card.featured .plan-divider {
    background-color: rgba(245, 194, 66, 0.15);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features li span {
    line-height: 1.5;
}

.bonus-item {
    background-color: rgba(245, 194, 66, 0.04);
    border: 1px dashed rgba(245, 194, 66, 0.25);
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
}

.bonus-icon {
    color: var(--accent-gold) !important;
}

.bonus-item span {
    font-size: 0.875rem !important;
    color: var(--text-gray);
}

.plan-footer {
    margin-top: auto;
}

/* Expansion Section / Add-ons */
.expansion-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.addon-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    transition: var(--transition-smooth);
}

.addon-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.addon-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.addon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.addon-card:hover .addon-icon {
    color: var(--accent-gold);
}

.addon-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
    transition: var(--transition-smooth);
}

.addon-card:hover .addon-icon svg {
    filter: drop-shadow(0 0 8px rgba(245, 194, 66, 0.6));
}

.addon-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.addon-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.addon-period {
    font-size: 0.8125rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Contact / Final CTA Section */
.contact-section {
    padding: 120px 0;
}

.contact-container {
    max-width: 960px;
}

.contact-card {
    background: radial-gradient(circle at top right, rgba(245, 194, 66, 0.06) 0%, rgba(11, 20, 36, 0) 60%),
                linear-gradient(135deg, rgba(11, 20, 36, 0.9) 0%, rgba(6, 11, 19, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.04) 0%, transparent 60%);
    z-index: -1;
}

.contact-card h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 20px 0;
}

.contact-card p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Footer Section */
.site-footer {
    background-color: #000000;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.footer-brand {
    max-width: 450px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive / Media Queries */

/* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 { font-size: 3.5rem; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 40px auto 0;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .opportunity-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .site-header {
        height: 70px;
    }
    
    /* Navigation toggle */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        padding: 40px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .header-actions .btn-ghost {
        display: none; /* Hide header plans button on small mobile screens */
    }
    
    .hero-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quotes-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-highlight {
        padding: 30px 20px;
    }
    
    .problem-highlight h3 {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .contact-card h2 {
        font-size: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 14px;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
}

/* Navigation animations when toggled */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
