/* ===================================
   FUEL MY SOCIAL - SEAPA PITCH SITE
   Warm, Inviting Design
   =================================== */

/* CSS Variables */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #0f172a;
    --accent: #14b8a6;
    --accent-warm: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.25rem); }

p { margin-bottom: 1rem; }

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
}

.logo-fuel { color: var(--gray-900); }
.logo-my { color: var(--gray-900); }
.logo-social { color: var(--gray-900); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-quote {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 2.5rem;
}

.hero-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

.hero-quote span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0.5rem auto 0;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(10px) rotate(45deg); }
    60% { transform: translateY(5px) rotate(45deg); }
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* ===================================
   OPPORTUNITY SECTION
   =================================== */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.opportunity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.opportunity-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.opportunity-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.opportunity-card.featured h3 {
    color: var(--white);
}

.opportunity-icon {
    width: 100%;
    height: 140px;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.opportunity-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opportunity-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.opportunity-card p {
    margin: 0;
    color: var(--gray-600);
}

.mindset-quote {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.mindset-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.mindset-quote cite {
    font-size: 1rem;
    color: var(--gray-500);
    font-style: normal;
}

.quote-context {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===================================
   ATTENTION SECTION
   =================================== */
.attention-content {
    max-width: 900px;
    margin: 0 auto;
}

.gary-v-quote {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: relative;
}

.gary-v-quote .quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.gary-v-quote p {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.gary-v-quote cite {
    font-size: 1rem;
    color: var(--gray-500);
    font-style: normal;
}

.attention-points {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.attention-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.attention-card h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.attention-card p {
    margin: 0;
    color: var(--gray-600);
}

.hormozi-insight {
    padding: 2.5rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.hormozi-insight h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hormozi-insight p {
    color: var(--gray-300);
}

.hormozi-insight .insight-highlight {
    display: block;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--white);
}

/* ===================================
   CONTENT SECTION
   =================================== */
.content-philosophy {
    margin-bottom: 3rem;
}

.philosophy-quote {
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.philosophy-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.philosophy-quote cite {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.content-ideas h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.idea-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.idea-card:hover {
    transform: translateY(-2px);
}

.idea-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.idea-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.idea-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.content-truth {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.content-truth h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.content-truth p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1.0625rem;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-content {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-why {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.insta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instagram-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.instagram-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.instagram-strategy {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.instagram-strategy h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.strategy-steps {
    display: grid;
    gap: 1.5rem;
}

.strategy-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
}

.step-content h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.step-content p {
    margin: 0;
    color: var(--gray-600);
}

/* ===================================
   REALITY SECTION
   =================================== */
.reality-content {
    max-width: 900px;
    margin: 0 auto;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reality-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.reality-stat {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.reality-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.reality-insight {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.reality-insight h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.reality-insight p {
    color: var(--gray-700);
}

.reality-insight p:last-child {
    margin-bottom: 0;
}

.caleb-quote {
    text-align: center;
    padding: 2rem;
}

.caleb-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   OUR APPROACH SECTION
   =================================== */
.approach-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

.recommendation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--primary);
}

.recommendation-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.recommendation-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.recommendation-why {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.recommendation-stats {
    list-style: none;
    margin-bottom: 1rem;
}

.recommendation-stats li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.recommendation-stats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.recommendation-card cite {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-style: normal;
}

.recommendation-card cite a,
.practice-card cite a,
.factor-card cite a,
.awareness-reality cite a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.recommendation-card cite a:hover,
.practice-card cite a:hover,
.factor-card cite a:hover,
.awareness-reality cite a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.recommendation-quote {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.recommendation-quote p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.recommendation-quote span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.live-ideas {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.live-ideas h4 {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.live-ideas p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Instagram Practices */
.instagram-practices {
    margin-bottom: 4rem;
}

.instagram-practices h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.practice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent);
}

.practice-card h4 {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.practice-card ul {
    list-style: none;
    margin: 0 0 1rem 0;
}

.practice-card ul li {
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.practice-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.practice-card cite {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: normal;
}

/* Content Mix Table */
.content-mix-section {
    margin-bottom: 4rem;
}

.content-mix-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.content-mix-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.mix-row {
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    gap: 1rem;
}

.mix-row:last-child {
    border-bottom: none;
}

.mix-row.header {
    background: var(--gray-800);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.mix-row:not(.header) span:first-child {
    font-weight: 500;
    color: var(--gray-800);
}

.mix-row:not(.header) span:nth-child(2) {
    color: var(--gray-600);
}

.mix-row:not(.header) span:last-child {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 600px) {
    .mix-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .mix-row.header {
        display: none;
    }

    .mix-row:not(.header) span:last-child {
        text-align: left;
    }
}

/* Awareness Reality */
.awareness-reality {
    margin-bottom: 4rem;
}

.awareness-reality h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.awareness-reality .reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.awareness-reality .reality-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.awareness-reality .reality-stat {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.awareness-reality .reality-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.awareness-reality .reality-card cite {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: normal;
}

.awareness-reality .reality-insight {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.awareness-reality .reality-insight p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1.0625rem;
}

.factor-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.factor-card cite {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: normal;
}

/* Consistency Section - Apple Style */
.consistency-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.consistency-statement {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.consistency-lead {
    font-size: 1.5rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.consistency-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.consistency-main strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consistency-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.consistency-stat {
    text-align: center;
}

.consistency-stat .stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.consistency-stat .stat-text {
    display: block;
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 250px;
}

.consistency-question {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

@media (max-width: 768px) {
    .consistency-main {
        font-size: 1.75rem;
    }

    .consistency-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .consistency-stat .stat-number {
        font-size: 3rem;
    }

    .consistency-stat .stat-text {
        max-width: 100%;
    }

    .consistency-question {
        font-size: 1.25rem;
    }
}

/* Pricing Comparison */
.pricing-comparison {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
}

.pricing-limitation {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gray-500);
}

.pricing-limitation p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-400);
    font-style: italic;
}

.success-factors {
    margin-bottom: 4rem;
}

.success-factors h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.factor-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.factor-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.factor-card ul {
    list-style: none;
    margin: 0;
}

.factor-card ul li {
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.factor-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.approach-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.approach-summary h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.summary-table {
    max-width: 700px;
    margin: 0 auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-feature {
    font-weight: 600;
    color: var(--gray-800);
    min-width: 180px;
}

.summary-benefit {
    color: var(--gray-600);
    text-align: right;
    font-size: 0.9375rem;
}

.approach-bottom-line {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.approach-bottom-line h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.approach-bottom-line p {
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto 1rem;
}

.bottom-line-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white) !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .summary-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .summary-feature {
        min-width: auto;
    }

    .summary-benefit {
        text-align: center;
    }
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-500);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
}

.period {
    color: var(--gray-500);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
}

.pricing-context {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-context h4 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.pricing-context p {
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

.pricing-context p:last-child {
    margin-bottom: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.section-cta {
    background: var(--gradient-dark);
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
}

.cta-values {
    margin-bottom: 2rem;
}

.value-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.value-card p {
    margin: 0;
    color: var(--gray-300);
}

.cta-final {
    margin-bottom: 3rem;
}

.cta-final p {
    color: var(--gray-300);
    font-size: 1.0625rem;
}

.cta-contact {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.cta-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 1.125rem;
}

.contact-value {
    color: var(--gray-400);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-note p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-link {
        color: var(--gray-700);
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }

    .strategy-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .gary-v-quote .quote-mark {
        position: static;
        margin-bottom: -2rem;
    }
}

/* ===================================
   RESEARCH SECTION
   =================================== */
.research-content {
    max-width: 1000px;
    margin: 0 auto;
}

.study-highlight {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.study-source {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.study-highlight h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.study-table {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.table-row.featured span {
    font-weight: 600;
}

.baseline {
    color: var(--gray-500);
}

.growth {
    color: var(--success);
    font-weight: 600;
}

.highlight-stat {
    color: var(--white) !important;
}

.study-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--accent-warm);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--gray-700);
    font-weight: 500;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.research-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.research-icon {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.research-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    font-size: 1rem;
}

.research-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.research-card cite {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: normal;
}

.ceo-quote {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.quote-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
}

.quote-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.quote-content cite {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: normal;
}

.algorithm-section {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.algorithm-section h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.penalty-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.penalty-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 180px;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.875rem;
}

.step-info h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.step-info p {
    color: var(--gray-300);
    font-size: 0.8125rem;
    margin: 0;
}

.penalty-arrow {
    color: var(--gray-400);
    font-size: 1.5rem;
}

.penalty-problem {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.penalty-problem h4 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.penalty-problem ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.penalty-problem li {
    color: var(--gray-200);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.penalty-problem li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: 700;
}

/* ===================================
   ROI SECTION
   =================================== */
.roi-content {
    max-width: 1000px;
    margin: 0 auto;
}

.b2b-insights {
    margin-bottom: 3rem;
}

.b2b-insights h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.insight-stat {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.insight-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.insight-card cite {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: normal;
}

.critical-question {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.critical-question h4 {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.critical-question p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.critical-question .answer {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-weight: 500;
}

.roi-calculation {
    margin-bottom: 3rem;
}

.roi-calculation h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.roi-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.roi-scenario {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.roi-scenario h4 {
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1.125rem;
}

.roi-scenario.conservative h4 {
    background: var(--gray-100);
    color: var(--gray-700);
}

.roi-scenario.moderate h4 {
    background: var(--gradient-primary);
    color: var(--white);
}

.scenario-desc {
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.roi-math {
    padding: 1rem 1.5rem 1.5rem;
}

.math-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}

.math-row:last-child {
    border-bottom: none;
}

.math-row span:first-child {
    color: var(--gray-600);
}

.math-row span:last-child {
    font-weight: 600;
    color: var(--gray-800);
}

.math-row.total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
    border-bottom: none;
}

.math-row.total span:last-child {
    font-size: 1.25rem;
    color: var(--primary);
}

.rule-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.rule-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.rule-visual {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.rule-bar {
    display: flex;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.bar-segment.in-market {
    background: var(--accent-warm);
    min-width: 50px;
}

.bar-segment.future {
    background: var(--gradient-primary);
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.rule-insight {
    text-align: center;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   MINIMUM PROPOSAL SECTION
   =================================== */
.minimum-content {
    max-width: 900px;
    margin: 0 auto;
}

.math-breakdown {
    text-align: center;
    margin-bottom: 3rem;
}

.math-breakdown h3 {
    margin-bottom: 1.5rem;
}

.frequency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.big-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.equals {
    font-size: 2rem;
    color: var(--gray-400);
}

.breakdown {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.math-breakdown > p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.content-calendar-preview {
    margin-bottom: 3rem;
}

.content-calendar-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.enables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.enable-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.enable-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.enable-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.competitor-insight {
    padding: 2rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
}

.competitor-insight h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.competitor-insight p {
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

.competitor-insight p:last-child {
    margin-bottom: 0;
    color: var(--white);
    font-weight: 500;
}

/* ===================================
   SOURCES SECTION
   =================================== */
.sources-section {
    background: var(--gray-50);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.source-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.source-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

.source-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.source-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.source-content a {
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}

.source-content a:hover {
    text-decoration: underline;
}

.source-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: italic;
}

.footer-note .version {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   RESPONSIVE ADDITIONS
   =================================== */
@media (max-width: 768px) {
    .penalty-flow {
        flex-direction: column;
    }

    .penalty-arrow {
        transform: rotate(90deg);
    }

    .frequency-box {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ceo-quote {
        flex-direction: column;
        text-align: center;
    }

    .quote-avatar {
        margin: 0 auto;
    }

    .rule-bar {
        height: 50px;
    }

    .bar-segment.in-market {
        min-width: 40px;
        font-size: 0.75rem;
    }
}
