/* ==========================================================================
   FeedSortr Custom Premium Design System & Core Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
    /* Color Palette */
    --primary: hsl(261, 77%, 52%);
    --primary-light: hsl(261, 77%, 62%);
    --primary-dark: hsl(261, 77%, 42%);
    
    --secondary: hsl(338, 100%, 58%);
    --secondary-light: hsl(338, 100%, 68%);
    --secondary-dark: hsl(338, 100%, 48%);
    
    --success: hsl(145, 80%, 45%);
    --success-light: hsl(145, 80%, 94%);
    --success-dark: hsl(145, 80%, 25%);
    
    --info-blue: hsl(210, 100%, 50%);
    --warning-orange: hsl(35, 100%, 55%);
    
    /* Neutral Colors */
    --text-main: hsl(260, 40%, 12%);
    --text-muted: hsl(260, 12%, 48%);
    --text-light: hsl(260, 10%, 60%);
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-lavender: hsl(260, 50%, 98%);
    --bg-lavender-accent: hsl(260, 40%, 96%);
    --bg-dark: hsl(260, 40%, 8%);
    
    /* Background Gradients */
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, hsl(260, 50%, 98%) 20%, hsl(315, 30%, 98%) 50%, hsl(260, 40%, 97%) 80%, #ffffff 100%);
    --purple-grad: linear-gradient(135deg, hsl(261, 77%, 52%) 0%, hsl(285, 85%, 50%) 100%);
    --pink-grad: linear-gradient(135deg, hsl(338, 100%, 58%) 0%, hsl(350, 95%, 65%) 100%);
    --logo-grad: linear-gradient(135deg, #FF3366 0%, #FF6633 50%, #8833FF 100%);
    --cta-grad: linear-gradient(135deg, hsl(261, 77%, 52%) 0%, hsl(338, 100%, 58%) 100%);
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(104, 37, 227, 0.04);
    --shadow-md: 0 12px 28px rgba(104, 37, 227, 0.06);
    --shadow-lg: 0 24px 48px rgba(104, 37, 227, 0.08);
    --shadow-xl: 0 32px 64px rgba(104, 37, 227, 0.12);
    --shadow-featured: 0 32px 64px rgba(104, 37, 227, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    --glow-purple: rgba(104, 37, 227, 0.15);
    --glow-pink: rgba(255, 42, 122, 0.15);
    
    /* Borders & Glassmorphism */
    --border-glass: 1px solid rgba(104, 37, 227, 0.08);
    --border-glass-hover: 1px solid rgba(104, 37, 227, 0.18);
    --border-white-glass: 1px solid rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --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.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-white);
    background-image: var(--bg-gradient);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

button, input, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    background: var(--bg-lavender-accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--secondary);
}

/* Accessibility Utilities */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    z-index: 9999;
    transition: top var(--transition-fast);
    font-weight: 600;
}

.skip-link:focus {
    top: 20px;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.max-width-md {
    max-width: 800px !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.bg-light {
    background-color: var(--bg-lavender);
}

/* Spacing System */
.section-header {
    margin-bottom: 64px;
}

/* Typography Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Badge Utilities */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-purple {
    background-color: hsla(261, 77%, 52%, 0.08);
    color: var(--primary);
    border: 1px solid hsla(261, 77%, 52%, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-bounce);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--purple-grad);
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(104, 37, 227, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(104, 37, 227, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: hsla(261, 77%, 52%, 0.04);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--border-radius-md);
}

.btn-full {
    width: 100%;
    padding: 14px 24px;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-glass);
    transition: all var(--transition-normal);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Logo brand styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--cta-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon-wrapper {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: transparent;
}

.logo-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 4px 8px rgba(104, 37, 227, 0.2));
}

/* Primary Nav Menu */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 4px;
    transition: all var(--transition-normal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 96px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: var(--success-light);
    color: var(--success-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px;
}

.star-icon {
    letter-spacing: 2px;
}

/* Hero image visual showcase */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-extension-mockup {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(104, 37, 227, 0.15);
    border: var(--border-glass-hover);
    background: var(--bg-dark);
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Action & Demo Section
   ========================================================================== */
.action-section {
    padding: 96px 0;
    background: var(--bg-lavender);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.video-container-wrapper {
    max-width: 900px;
    margin: 48px auto 0;
}

.video-glass-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: var(--border-white-glass);
    cursor: pointer;
}

.action-video-placeholder {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-glass-container:hover .action-video-placeholder {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(104, 37, 227, 0.4);
    transition: all var(--transition-bounce);
    padding-left: 6px; /* Offset alignment for play icon centering */
}

.video-glass-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
    box-shadow: 0 10px 30px rgba(255, 42, 122, 0.4);
}

.play-icon {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   What FeedSortr Does Section
   ========================================================================== */
.features-section {
    padding: 96px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border: var(--border-glass);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border: var(--border-glass-hover);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-icon-wrapper.purple-bg {
    background: rgba(104, 37, 227, 0.08);
    color: var(--primary);
}

.feature-icon-wrapper.blue-bg {
    background: rgba(33, 150, 243, 0.08);
    color: var(--info-blue);
}

.feature-icon-wrapper.orange-bg {
    background: rgba(255, 152, 0, 0.08);
    color: var(--warning-orange);
}

.feature-icon-wrapper.green-bg {
    background: rgba(76, 175, 80, 0.08);
    color: var(--success);
}

.feature-icon-wrapper.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.feature-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-card-image-box {
    margin-top: auto;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: var(--border-glass);
    background: var(--bg-lavender);
    box-shadow: var(--shadow-sm);
}

.feature-card-image-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Built-in high fidelity export spreadsheet mockup */
.spreadsheet-box {
    padding: 16px;
    background: #fdfdfd;
}

.spreadsheet-mock {
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-body);
}

.spread-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0edf7;
}

.spread-row.header-row {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid #e0dbf2;
}

.spread-row span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Platform Split Section
   ========================================================================== */
.platforms-section {
    padding: 96px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.platform-col {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.platform-col:hover {
    box-shadow: var(--shadow-lg);
    border: var(--border-glass-hover);
    transform: translateY(-4px);
}

.platform-header-box {
    padding: 40px 40px 16px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.platform-badge.ig-badge {
    background: rgba(255, 42, 122, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(255, 42, 122, 0.15);
}

.platform-badge.tt-badge {
    background: rgba(104, 37, 227, 0.08);
    color: var(--primary);
    border: 1px solid rgba(104, 37, 227, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.platform-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-image-wrapper {
    margin-top: auto;
    padding: 0 40px 40px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, transparent 50%, var(--bg-lavender) 100%);
}

.platform-mock-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: var(--border-glass);
    width: 100%;
}

.limit-popup-height {
    max-height: 280px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Export Data to sheets section
   ========================================================================== */
.export-section {
    padding: 96px 0;
}

.export-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.export-image-box {
    position: relative;
}

.export-spreadsheet-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: var(--border-glass-hover);
    background: var(--bg-white);
}

.benefits-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.check-icon {
    color: var(--success);
    flex-shrink: 0;
}

/* ==========================================================================
   Pro Analytics Dashboard Showcase
   ========================================================================== */
.dashboard-section {
    padding: 96px 0;
}

.dashboard-preview-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 64px auto 0;
    height: 520px;
}

.dashboard-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: var(--border-glass-hover);
    position: absolute;
    transition: all var(--transition-slow);
}

.dashboard-img-base {
    width: 85%;
    left: 0;
    top: 0;
    z-index: 1;
}

.dashboard-img-pro {
    width: 50%;
    right: 0;
    bottom: 0;
    z-index: 2;
    transform: translateY(20px);
}

.dashboard-preview-wrapper:hover .dashboard-img-base {
    transform: scale(0.98);
}

.dashboard-preview-wrapper:hover .dashboard-img-pro {
    transform: translateY(0px) scale(1.03);
    box-shadow: 0 40px 80px rgba(104, 37, 227, 0.25);
}

/* ==========================================================================
   Audience Section
   ========================================================================== */
.audience-section {
    padding: 96px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.audience-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    border: var(--border-glass);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border: var(--border-glass-hover);
}

.audience-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.audience-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.audience-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-works-section {
    padding: 96px 0;
}

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

.step-card {
    text-align: center;
    padding: 24px;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 4px 12px rgba(104, 37, 227, 0.3);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Connecting lines/dots for the steps on large screens */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -20%;
    width: 40%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
    background-size: 8px 2px;
    z-index: 1;
}

/* ==========================================================================
   Testimonials (What Users Say)
   ========================================================================== */
.testimonials-section {
    padding: 96px 0;
}

.trust-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.trust-tag {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon-circle {
    width: 20px;
    height: 20px;
    background: var(--success-light);
    color: var(--success-dark);
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: var(--border-glass);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border: var(--border-glass-hover);
}

.testimonial-stars {
    color: var(--warning-orange);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.98rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.testimonial-author {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

/* ==========================================================================
   Pricing Plan Section
   ========================================================================== */
.pricing-section {
    padding: 96px 0;
}

.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-main);
}

.save-pill {
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 4px;
    vertical-align: middle;
}

.billing-toggle-button {
    width: 56px;
    height: 30px;
    background: var(--primary);
    border-radius: 50px;
    padding: 3px;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-inner);
}

.toggle-switch {
    width: 24px;
    height: 24px;
    background: var(--bg-white);
    border-radius: 50%;
    display: block;
    transition: transform var(--transition-bounce);
}

/* Switch state classes */
.billing-toggle-button.active-yearly .toggle-switch {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Highlighted pricing plan design */
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-featured);
    background: var(--bg-white);
}

.pricing-card.featured:hover {
    box-shadow: 0 40px 80px rgba(104, 37, 227, 0.28);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(104, 37, 227, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.plan-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 8px;
}

.plan-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
}

.plan-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   FAQs Accordion Section
   ========================================================================== */
.faq-section {
    padding: 96px 0;
}

.accordion {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    border: var(--border-glass-hover);
    box-shadow: var(--shadow-md);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.accordion-trigger:hover {
    color: var(--primary);
}

.accordion-icon {
    font-size: 1.3rem;
    color: var(--text-light);
    transition: transform var(--transition-normal);
    line-height: 1;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.accordion-content {
    padding: 0 32px 28px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Expanded state classes via script */
.accordion-item.active .accordion-panel {
    max-height: 350px; /* Large enough default */
    transition: max-height var(--transition-slow) ease-in;
}

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

.faq-more-box {
    margin-top: 40px;
}

.faq-more-link {
    font-weight: 600;
    color: var(--primary);
}

.faq-more-link:hover {
    color: var(--secondary);
}

/* ==========================================================================
   Final Conversion CTA
   ========================================================================== */
.final-cta-section {
    padding: 120px 0;
    background: var(--primary);
    background-image: var(--cta-grad);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 42, 122, 0.25) 0%, transparent 60%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.final-cta-container {
    max-width: 800px;
}

.cta-title {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-lavender);
    border-top: var(--border-glass);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-glass);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-icon-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: var(--border-glass);
}

.copyright {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-social-logos {
    display: flex;
    gap: 24px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.brand-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Video Poster & Text Overlays
   ========================================================================== */
.video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.action-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-poster-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 10, 40, 0.4) 0%, rgba(20, 10, 40, 0.8) 100%);
    z-index: 2;
}

.video-poster-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
    z-index: 3;
    color: var(--text-white);
}

.video-badge {
    background: rgba(255, 42, 122, 0.2);
    border: 1px solid rgba(255, 42, 122, 0.4);
    color: var(--text-white);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    display: inline-block;
    margin-bottom: 12px;
}

.video-caption {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ==========================================================================
   Meet the Creator Section (E-E-A-T)
   ========================================================================== */
.creator-section {
    padding: 96px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(104, 37, 227, 0.03) 50%, transparent 100%);
}

.creator-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    padding: 56px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.creator-image-box {
    flex-shrink: 0;
}

.creator-avatar-placeholder {
    width: 140px;
    height: 140px;
    background: var(--cta-grad);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(104, 37, 227, 0.25);
    border: 3px solid var(--bg-white);
}

.avatar-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.creator-info {
    flex-grow: 1;
}

.creator-title {
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.creator-bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.creator-links {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.creator-social-badges {
    display: flex;
    gap: 12px;
}

.creator-social-badge {
    background: var(--bg-lavender);
    border: var(--border-glass);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.creator-social-badge:hover {
    background: hsla(261, 77%, 52%, 0.05);
    color: var(--primary);
    border-color: hsla(261, 77%, 52%, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Page Layout
   ========================================================================== */
.contact-section {
    padding-top: 160px;
    padding-bottom: 96px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.contact-form-container {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-form-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-input, .form-select {
    width: 100%;
    background: var(--bg-lavender);
    border: 1px solid rgba(104, 37, 227, 0.08);
    border-radius: var(--border-radius-md);
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text-main);
    box-shadow: var(--shadow-inner);
    transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(104, 37, 227, 0.1);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='%236825e3'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.contact-sidebar {
    height: 100%;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.sidebar-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.sidebar-author-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
    margin-bottom: 28px;
}

.sidebar-avatar-placeholder {
    width: 50px;
    height: 50px;
    background: var(--cta-grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-avatar-placeholder .avatar-letter {
    font-size: 1.6rem;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
}

.author-label {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.sidebar-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.support-channels-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    border-top: 1px solid rgba(104, 37, 227, 0.06);
    padding-top: 24px;
}

.channel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.channel-label {
    font-weight: 600;
    color: var(--text-light);
}

.channel-value {
    font-weight: 700;
    color: var(--text-main);
}

.community-box {
    border-top: 1px solid rgba(104, 37, 227, 0.06);
    padding-top: 24px;
}

.community-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.community-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-badge-vertical {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
    transition: all var(--transition-fast);
}

.social-badge-vertical:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.badge-icon {
    font-size: 1.6rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Specific theme accents for support sidebar badges */
.discord-badge:hover {
    background: hsla(235, 85%, 65%, 0.03);
    border-color: hsl(235, 85%, 65%);
}
.discord-badge:hover .badge-title {
    color: hsl(235, 85%, 65%);
}

.twitter-badge:hover {
    background: hsla(0, 0%, 0%, 0.02);
    border-color: #000000;
}

.instagram-badge:hover {
    background: hsla(338, 100%, 58%, 0.03);
    border-color: var(--secondary);
}
.instagram-badge:hover .badge-title {
    color: var(--secondary);
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */

/* Laptop & Small Desktop Breakpoint */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none; /* Hide connecting steps line */
    }
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .header-container {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    
    .header-cta {
        display: none; /* Hide header btn on tablet/mobile header */
    }
    
    /* Toggle Mobile Navigation Trigger Display */
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Mobile Menu Drawer Overlay */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 96px 40px;
        transition: right var(--transition-slow);
    }
    
    .nav.open {
        right: 0;
    }
    
    /* Active Toggle Icon State (hamburger -> X transformation) */
    .mobile-nav-toggle.open .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    /* Hero section split */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-rating {
        justify-content: center;
    }
    
    .hero-extension-mockup {
        max-width: 360px;
    }
    
    /* Feature layouts */
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .export-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .dashboard-preview-wrapper {
        height: 380px;
    }
    
    .dashboard-img-pro {
        transform: translateY(10px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section {
        padding: 64px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* New responsive layouts for E-E-A-T and Contact */
    .creator-card {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
        gap: 24px;
    }
    
    .creator-image-box {
        margin: 0 auto;
    }
    
    .creator-links {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .sidebar-card {
        padding: 32px 24px;
    }
}

/* Mobile Small Screen Breakpoint */
@media (max-width: 480px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-preview-wrapper {
        height: 280px;
    }
    
    .billing-toggle-container {
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* New mobile form splits */
    .form-group-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form-container {
        padding: 24px 16px;
    }
}
