/* ============================================================================
   MUSE - Modern Design System
   Built from scratch with influencer tactics for corporate brands
   ============================================================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #5b51d8;
    --color-accent-gradient: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    --color-success: #00D96F;
    --color-warning: #FFB800;

    /* Grays */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */

    /* Spacing */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-6);
}

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

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--color-secondary);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.nav-logo {
    font-size: var(--text-2xl);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

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

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-link-cta {
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #3651d1 0%, #4a3fc2 50%, #6f2f9a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 81, 216, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-20)) 0 var(--space-20);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--color-secondary) 100%);
}

/* Desktop: Two-column grid layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-8) var(--space-16);
    align-items: start;
}

/* Desktop: Hero-top and hero-bottom stack on left column */
.hero-top {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.hero-bottom {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Desktop: Phone spans both rows on right */
.hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gray-900);
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    width: fit-content;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Auto-Typing Effect */
.hero-typing {
    min-height: 60px;
    margin: var(--space-6) 0 var(--space-8);
    display: flex;
    align-items: center;
}

.typing-text {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-700);
    font-family: var(--font-heading);
}

.typing-cursor {
    font-size: var(--text-2xl);
    font-weight: 400;
    color: #5b51d8;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
    padding: var(--space-6) 0;
    justify-content: flex-start;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: var(--space-6);
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* Hero Visual - Note: grid positioning is set above in hero-container section */

/* iPhone 15 Pro Mockup */
.iphone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-8);
}

.iphone-frame {
    width: 340px;
    height: 680px;
    background: #1c1c1e;
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 0 0 3px #3a3a3c,
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all var(--transition-base);
}

.iphone-frame:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow:
        0 0 0 3px #3a3a3c,
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 60px 120px rgba(0, 0, 0, 0.3);
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 36px;
    background: #000000;
    border-radius: 18px;
    z-index: 10;
}

/* iPhone Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Instagram Views */
.instagram-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.instagram-view.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.instagram-view.slide-left {
    transform: translateX(-100%);
}

/* Instagram Header */
.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 52px 16px 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
}

.instagram-back,
.instagram-settings {
    color: #262626;
    cursor: pointer;
    transition: opacity 0.2s;
}

.instagram-back:hover,
.instagram-settings:hover {
    opacity: 0.6;
}

.instagram-title {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
}

.instagram-menu {
    font-size: 24px;
    color: #262626;
    font-weight: 700;
}

/* Instagram Content */
.instagram-content {
    flex: 1;
    padding: 16px;
    background: #ffffff;
    overflow-y: auto;
}

.instagram-date-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.date-label {
    font-size: 13px;
    color: #262626;
    font-weight: 500;
}

.date-range {
    font-size: 13px;
    color: #8e8e8e;
}

/* Impressions Circle Chart */
.impressions-section {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.circle-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #efefef;
    stroke-width: 12;
}

.circle-progress-fill {
    fill: none;
    stroke: url(#instagram-gradient);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-label {
    font-size: 12px;
    color: #8e8e8e;
    margin-bottom: 4px;
}

.circle-value {
    font-size: 20px;
    font-weight: 700;
    color: #262626;
}

/* Audience Breakdown */
.audience-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #efefef;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.audience-dot.followers {
    background: #c13584;
}

.audience-dot.non-followers {
    background: #833ab4;
}

.audience-label {
    flex: 1;
    font-size: 14px;
    color: #262626;
}

.audience-percent {
    font-size: 14px;
    color: #262626;
    font-weight: 500;
}

/* Metric Rows */
.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #efefef;
}

.metric-row-label {
    font-size: 14px;
    color: #262626;
}

.metric-row-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.metric-number {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.metric-growth-percent {
    font-size: 12px;
    color: #00ba34;
    font-weight: 600;
}

/* Content Type Section */
.content-type-section {
    margin-top: 24px;
}

.section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 16px;
}

.content-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tab {
    padding: 6px 16px;
    background: #efefef;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    color: #262626;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab.active {
    background: #262626;
    color: #ffffff;
}

.content-type-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.content-type-label {
    font-size: 14px;
    color: #262626;
}

.progress-bar {
    height: 8px;
    background: #efefef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.content-type-percent {
    font-size: 14px;
    color: #262626;
    font-weight: 500;
}

/* Instagram Profile Header (White) */
.instagram-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 52px 16px 12px;
    background: #ffffff;
    color: #262626;
}

.profile-header-spacer {
    width: 24px;
    height: 24px;
}

.profile-header-icon,
.profile-header-menu {
    color: #262626;
    cursor: pointer;
}

.profile-header-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-username {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
}

.verified-badge {
    margin-top: 2px;
}

/* Instagram Profile View */
.instagram-profile-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.profile-top {
    display: flex;
    padding: 16px 10px;
    gap: 10px;
}

.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.profile-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #dbdbdb;
    background: #ffffff;
}

.avatar-image img,
.avatar-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-stats {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: space-evenly;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0 3px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    white-space: nowrap;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: #8e8e8e;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0;
}

.profile-info-section {
    padding: 0 16px 12px;
}

.profile-name {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 2px;
}

.profile-category {
    font-size: 13px;
    color: #8e8e8e;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 14px;
    color: #262626;
    line-height: 1.5;
    margin-bottom: 8px;
}

.profile-link {
    font-size: 14px;
    color: #00376b;
    font-weight: 600;
    text-decoration: none;
}

.profile-actions {
    display: flex;
    gap: 6px;
    padding: 0 16px 12px;
}

.profile-btn {
    flex: 1;
    padding: 7px 0;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-btn.primary {
    background: #efefef;
    color: #262626;
}

.profile-btn.secondary {
    background: #efefef;
    color: #262626;
}

.profile-btn.icon {
    flex: 0 0 auto;
    width: 34px;
    padding: 7px;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn:hover {
    background: #e0e0e0;
}

.profile-highlights {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    overflow-x: auto;
    overflow-y: hidden;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.highlight-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #dbdbdb;
    padding: 2px;
}

.highlight-circle svg {
    width: 100%;
    height: 100%;
}

.highlight-label {
    font-size: 12px;
    color: #262626;
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid #dbdbdb;
}

.profile-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #8e8e8e;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-tab.active {
    color: #262626;
    border-bottom-color: #262626;
}

.profile-tab svg {
    width: 24px;
    height: 24px;
}

.profile-grid-header {
    display: flex;
    border-bottom: 1px solid #dbdbdb;
    margin: 16px 0;
}

.grid-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: #8e8e8e;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.grid-tab.active {
    color: #262626;
    border-bottom-color: #262626;
}

.grid-tab svg {
    width: 24px;
    height: 24px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #ffffff;
    padding: 0;
}

.grid-post {
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #ffffff;
}

.grid-post:active {
    opacity: 0.9;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-tag {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.85);
    font-size: 8px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Legacy styles for gradient backgrounds - kept for backwards compatibility */
.post-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.grid-post.tech .post-background {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.grid-post.ecommerce .post-background {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.grid-post.b2b .post-background {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.grid-post.consumer .post-background {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.post-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.25);
}

.post-badge {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.post-metric {
    font-size: 18px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Interactive Tabs */
.content-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tab {
    padding: 6px 16px;
    background: #efefef;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    color: #262626;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab.active {
    background: #262626;
    color: #ffffff;
}

.tab:hover:not(.active) {
    background: #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    color: var(--color-secondary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3651d1 0%, #4a3fc2 50%, #6f2f9a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 81, 216, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--gray-300);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--gray-300);
}

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

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

/* Social Proof Bar */
.social-proof {
    padding: var(--space-16) 0;
    background: var(--color-secondary);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.proof-label {
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

.proof-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: center;
}

.logo-item {
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.logo-item:hover {
    color: var(--color-primary);
}

/* Section Styles */
section {
    padding: var(--space-24) 0;
}

.section-header {
    margin-bottom: var(--space-16);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 700px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* Problem Solution */
.problem-solution {
    background: var(--gray-50);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.comparison-card {
    padding: var(--space-10);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.comparison-card.good {
    border-color: var(--color-success);
    box-shadow: 0 0 0 3px rgba(0, 217, 111, 0.1);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.card-icon svg {
    width: 64px;
    height: 64px;
}

.comparison-card.bad .card-icon svg {
    color: #DC2626;
}

.comparison-card.good .card-icon svg {
    color: #10B981;
}

.card-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.card-list li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gray-700);
}

.card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gray-400);
    font-weight: 900;
}

.comparison-card.good .card-list li::before {
    content: '✓';
    color: var(--color-success);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.step-card {
    padding: var(--space-8);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gray-900);
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: 900;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}

.step-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.service-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.service-icon svg {
    width: 64px;
    height: 64px;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-accent);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-features li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 900;
}

.service-link {
    display: inline-block;
    margin-top: var(--space-6);
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Results/Proof */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.result-card {
    padding: var(--space-10);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.result-company {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.result-metric {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.result-before, .result-after {
    font-size: var(--text-xl);
    font-weight: 700;
}

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

.result-after {
    color: var(--color-primary);
}

.result-arrow {
    color: var(--gray-400);
    font-size: var(--text-2xl);
}

.result-achievement {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.result-quote {
    padding: var(--space-6);
    background: var(--gray-50);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
}

.result-quote cite {
    display: block;
    margin-top: var(--space-3);
    font-style: normal;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-600);
}

/* Pricing */
.pricing {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-name {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.price-currency {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-600);
}

.price-amount {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-primary);
}

.price-period {
    font-size: var(--text-lg);
    color: var(--gray-500);
}

.pricing-description {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-grow: 1;
}

.pricing-features li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gray-700);
    line-height: 1.5;
}

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

/* Contact */
.contact {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.contact-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.contact-subtitle {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--gray-400);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: stretch;
}

.contact-method {
    padding: var(--space-8);
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.contact-method.primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--gray-300);
}

.method-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    min-height: 60px;
}

.method-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.method-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.contact-method p {
    margin-bottom: var(--space-6);
    color: var(--gray-600);
    flex-grow: 1;
}

.contact-method.primary p {
    color: var(--gray-600);
}

.contact-method .btn {
    margin-top: auto;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.method-trust {
    margin-top: var(--space-3);
    font-size: var(--text-xs);
    color: var(--gray-600);
    text-align: center;
    min-height: 24px;
}

/* About Page - Page Hero */
.page-hero {
    padding: calc(var(--space-24) + 80px) 0 var(--space-24);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--color-secondary) 100%);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-title {
    font-size: var(--text-6xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.page-hero-description {
    font-size: var(--text-xl);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-12);
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    flex-wrap: wrap;
}

/* Timeline */
.timeline-section {
    padding: var(--space-24) 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-16);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-year {
    position: relative;
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-primary);
    text-align: right;
    padding-right: var(--space-8);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: var(--space-8);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -21px;
    top: 50%;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border: 4px solid var(--color-secondary);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -21px;
}

.timeline-content {
    padding: var(--space-8);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.timeline-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.timeline-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.timeline-achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.timeline-achievements li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.timeline-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 900;
}

/* Mission Section */
.mission-section {
    padding: var(--space-24) 0;
    background: var(--color-primary);
    color: var(--color-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.mission-title {
    font-size: var(--text-4xl);
    font-weight: 900;
    margin-bottom: var(--space-6);
}

.mission-content p {
    line-height: 1.8;
    margin-bottom: var(--space-6);
    color: var(--gray-300);
}

.mission-content strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.mission-stat-card {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.mission-stat-value {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.mission-stat-label {
    font-size: var(--text-base);
    color: var(--gray-300);
}

/* Values Section */
.values-section {
    padding: var(--space-24) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.value-card {
    padding: var(--space-10);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.value-icon {
    font-size: 4rem;
    margin-bottom: var(--space-6);
}

.value-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.value-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Services Page - Service Details */
.services-detail {
    padding: var(--space-24) 0;
}

.service-detail-card {
    margin-bottom: var(--space-20);
    padding: var(--space-12);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.service-detail-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--gray-200);
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
}

.service-detail-icon svg {
    width: 80px;
    height: 80px;
}

.service-detail-title {
    font-size: var(--text-4xl);
    font-weight: 900;
    margin-bottom: var(--space-2);
}

.service-detail-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.service-detail-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-10);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-detail-feature {
    padding: var(--space-6);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.service-detail-feature h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

.service-detail-feature p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: var(--space-24) 0;
    background: var(--color-secondary);
}

.comparison-table {
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.comparison-table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.comparison-table-header {
    background: var(--gray-900);
    color: var(--color-secondary);
}

.comparison-table-header .comparison-table-cell {
    font-weight: 800;
    font-size: var(--text-lg);
}

.comparison-table-cell {
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    border-right: 1px solid var(--gray-200);
}

.comparison-table-cell:last-child {
    border-right: none;
}

.comparison-table-cell.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
    font-weight: 600;
}

.comparison-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comparison-badge svg {
    width: 20px;
    height: 20px;
}

.comparison-badge.good {
    color: var(--color-success);
}

.comparison-badge.bad {
    color: #DC2626;
}

/* Contact Page - ROI Calculator */
.roi-calculator-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.roi-calculator {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-lg);
}

.roi-calculator-inputs {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.roi-input-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.roi-input-group input {
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
}

.roi-input-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.roi-calculator-results {
    margin-top: var(--space-12);
    padding-top: var(--space-12);
    border-top: 2px solid var(--gray-200);
}

.roi-calculator-results h3 {
    font-size: var(--text-3xl);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-8);
}

.roi-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.roi-result-card {
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
}

.roi-result-card.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 2px solid var(--color-accent);
}

.roi-result-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.roi-result-value {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.roi-result-growth {
    font-size: var(--text-sm);
    color: var(--color-success);
    font-weight: 700;
}

.roi-disclaimer {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-8);
    font-style: italic;
}

/* Contact Methods */
.contact-methods-section {
    padding: var(--space-24) 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.contact-method-card {
    padding: var(--space-10);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-method-card.primary {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
}

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 50%;
    margin-bottom: var(--space-6);
}

.contact-method-card.primary .contact-method-icon {
    background: var(--color-accent);
}

.contact-method-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.contact-method-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.contact-method-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    text-align: left;
}

.contact-method-benefits li {
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.contact-method-info {
    margin-bottom: var(--space-6);
}

.contact-email {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-accent);
    word-break: break-word;
}

.contact-phone {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.contact-hours {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.faq-item {
    padding: var(--space-8);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.faq-question {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Pricing Page - Pricing Tiers */
.pricing-tiers-section {
    padding: var(--space-24) 0;
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.pricing-tier-card {
    position: relative;
    padding: var(--space-10);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

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

.pricing-tier-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.05) 0%, var(--gray-50) 50%);
}

.pricing-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-6);
    background: var(--color-accent);
    color: var(--color-secondary);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
}

.pricing-tier-header {
    text-align: center;
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-8);
}

.pricing-tier-name {
    font-size: var(--text-3xl);
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.pricing-tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.pricing-tier-price .price-currency {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-600);
}

.pricing-tier-price .price-amount {
    font-size: var(--text-6xl);
    font-weight: 900;
    color: var(--color-primary);
}

.pricing-tier-price .price-period {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.pricing-tier-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

.pricing-tier-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.feature-group h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.feature-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-group li {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

/* What's Included */
.whats-included-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.whats-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.included-item {
    padding: var(--space-8);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.included-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.included-icon svg {
    width: 48px;
    height: 48px;
}

.included-item:hover .included-icon {
    transform: scale(1.1);
}

.included-item h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.included-item p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing FAQ */
.pricing-faq-section {
    padding: var(--space-24) 0;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.pricing-faq-item {
    padding: var(--space-8);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.pricing-faq-question {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.pricing-faq-answer {
    color: var(--gray-600);
    line-height: 1.7;
}

.pricing-faq-answer a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
}

/* Team Section */
.team-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
}

.team-member {
    text-align: center;
}

.team-image {
    margin-bottom: var(--space-6);
}

.team-placeholder {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.team-name {
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.team-role {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.team-bio {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* Footer */
.footer {
    padding: var(--space-20) 0 var(--space-8);
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--gray-800);
}

.footer-logo {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.footer-note {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.footer-note a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.footer-column a {
    display: block;
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.footer-disclaimer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 24px;
}

.disclaimer-text {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-500);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gray-700);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-5xl);
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    /* Switch to flexbox for mobile reordering */
    .hero-container {
        display: flex !important;
        flex-direction: column;
        gap: var(--space-8);
    }

    /* Reset grid properties and set flex order */
    .hero-top {
        order: 1;
        grid-column: unset;
        grid-row: unset;
        text-align: center;
        position: relative;
        z-index: 1;
        background: transparent;
    }

    .hero-visual {
        order: 2;
        grid-column: unset;
        grid-row: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
        overflow: hidden;
        width: 100%;
    }

    /* Disable phone hover effect on mobile */
    .iphone-frame:hover {
        transform: none;
    }

    .hero-bottom {
        order: 3;
        grid-column: unset;
        grid-row: unset;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    /* Make phone smaller on tablet */
    .iphone-frame {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--color-secondary);
        border-bottom: 1px solid var(--gray-200);
        padding: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link, .nav-link-cta {
        width: 100%;
        padding: var(--space-4);
        text-align: center;
    }

    .nav-link-cta {
        background: var(--gray-900);
        color: var(--color-secondary);
        border-radius: var(--radius-md);
    }

    .nav-link-cta:hover {
        background: var(--gray-800);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        background: var(--gray-900);
    }

    /* Hero Badge - prevent truncation */
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
        max-width: 100%;
        text-align: center;
    }

    .hero-badge span {
        white-space: normal;
        line-height: 1.3;
    }

    .hero-title {
        font-size: var(--text-4xl);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    /* Hero stats - horizontal on tablet */
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-8);
        flex-wrap: wrap;
    }

    .hero-stats .stat-number {
        font-size: var(--text-3xl);
    }

    .hero-stats .stat-label {
        font-size: var(--text-xs);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: auto;
    }

    /* Trust badges - horizontal on mobile */
    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-2);
    }

    .trust-item {
        font-size: var(--text-xs);
    }

    /* Reduce hero top padding on mobile */
    .hero {
        padding-top: 90px;
        padding-bottom: var(--space-12);
    }

    /* Reduce section spacing on mobile */
    section {
        padding: var(--space-12) 0;
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    /* Mobile hero layout - phone between title and typing */
    .hero-container {
        display: flex !important;
        flex-direction: column;
        gap: var(--space-6);
    }

    .hero-top {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
        overflow: hidden;
        width: 100%;
    }

    /* Disable phone hover effect on mobile */
    .iphone-frame:hover {
        transform: none;
    }

    .hero-bottom {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* iPhone mockup - smaller on mobile */
    .iphone-mockup {
        padding: var(--space-2);
    }

    .iphone-frame {
        width: 220px;
        height: 440px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* ========== MOBILE FOOTER REDESIGN ========== */
    .footer {
        padding: 40px 0 24px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .footer-brand {
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .footer-tagline {
        font-size: 14px;
        max-width: 280px;
        margin: 0 auto 8px;
        line-height: 1.5;
    }

    .footer-note {
        display: none;
    }

    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 10px;
        margin-bottom: 10px;
        letter-spacing: 0.12em;
        opacity: 0.7;
    }

    .footer-column a {
        font-size: 12px;
        margin-bottom: 6px;
        opacity: 0.6;
    }

    .footer-column a:hover {
        opacity: 1;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
        margin-top: 8px;
    }

    .footer-social a {
        font-size: 11px;
    }

    .footer-disclaimer {
        padding: 16px 0;
        margin-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .disclaimer-text {
        font-size: 9px;
        line-height: 1.5;
        opacity: 0.5;
        padding: 0 16px;
    }

    .footer-bottom {
        font-size: 11px;
        opacity: 0.5;
    }

    .footer-bottom a {
        opacity: 0.7;
    }
    /* ========== END MOBILE FOOTER ========== */

    .proof-logos {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        text-align: left !important;
        padding: 0 !important;
    }

    .timeline-year::after {
        left: -50px !important;
        right: auto !important;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: var(--text-4xl);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table-row {
        grid-template-columns: 1fr;
    }

    .comparison-table-cell {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

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

    .roi-results-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tiers-grid {
        grid-template-columns: 1fr;
    }

    .whats-included-grid {
        grid-template-columns: 1fr;
    }

    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Small phones - 480px and below */
@media (max-width: 480px) {
    /* Hero section optimizations */
    .hero {
        padding-top: 80px;
        padding-bottom: var(--space-6);
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.15;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: var(--text-sm);
        line-height: 1.6;
    }

    /* Typing effect */
    .hero-typing {
        font-size: var(--text-lg);
    }

    /* Stats - compact horizontal */
    .hero-stats {
        gap: var(--space-4);
    }

    .hero-stats .stat-number {
        font-size: var(--text-2xl);
    }

    .hero-stats .stat-label {
        font-size: 10px;
    }

    /* CTA button */
    .hero-cta .btn {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-sm);
    }

    /* Trust badges */
    .hero-trust {
        gap: var(--space-1);
    }

    .trust-item {
        font-size: 11px;
        padding: 4px 8px;
    }

    /* iPhone mockup - much smaller on small phones */
    .iphone-mockup {
        padding: 0;
    }

    .iphone-frame {
        width: 180px;
        height: 360px;
    }

    /* Section titles */
    .section-title {
        font-size: var(--text-2xl);
    }

    .section-description {
        font-size: var(--text-sm);
    }

    /* Service cards */
    .service-card {
        padding: var(--space-5);
    }

    .service-title {
        font-size: var(--text-lg);
    }

    .service-description {
        font-size: var(--text-sm);
    }

    /* Pricing cards */
    .pricing-card {
        padding: var(--space-5);
    }

    .price-amount {
        font-size: var(--text-4xl);
    }


    /* Timeline / How it works */
    .timeline-header h2 {
        font-size: var(--text-2xl);
    }

    .step-number {
        font-size: var(--text-2xl);
    }

    .step-title {
        font-size: var(--text-lg);
    }

    .step-subtitle {
        font-size: var(--text-sm);
    }

    .step-tag {
        font-size: var(--text-xs);
        padding: 0.4rem 0.8rem;
    }

    /* Story carousel */
    .story-card {
        width: 280px;
    }

    /* Social proof bar */
    .proof-label {
        font-size: var(--text-xs);
    }

    .logo-item {
        font-size: var(--text-sm);
    }

    /* Instagram contact section */
    .ig-contact-title {
        font-size: 24px;
    }

    .ig-contact-subtitle {
        font-size: var(--text-sm);
    }

    .ig-card-content h3 {
        font-size: var(--text-base);
    }

    .ig-card-content p {
        font-size: var(--text-xs);
    }
}

/* Extra small phones - 380px and below */
@media (max-width: 380px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-stats .stat-number {
        font-size: var(--text-xl);
    }

    .iphone-frame {
        width: 180px;
        height: 360px;
    }

    .section-title {
        font-size: var(--text-xl);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* =====================================================
   NEW INTERACTIVE COMPONENTS - Instagram Aesthetic
   ===================================================== */

/* =================
   DUAL IPHONE MOCKUP
   ================= */
.dual-iphone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 2rem;
    position: relative;
    flex-wrap: wrap;
}

.case-study-selector {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.selector-dots {
    display: flex;
    gap: 0.5rem;
}

.selector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.selector-dot.active {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    width: 32px;
    border-radius: 6px;
}

.selector-dot:hover {
    background: var(--gray-400);
    transform: scale(1.2);
}

.selector-dot.active:hover {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
}

.case-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-client {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: none;
    color: #3897f0;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
}

.case-industry {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-timeframe {
    font-size: var(--text-xs);
    color: var(--color-accent);
    font-weight: 600;
    background: rgba(91, 81, 216, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-top: 0.25rem;
}

.iphone-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.before-iphone .iphone-frame {
    opacity: 0.7;
}

.after-iphone .iphone-frame.glow {
    box-shadow: 0 20px 60px rgba(64, 93, 230, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(64, 93, 230, 0.4);
    }
    50% {
        box-shadow: 0 25px 80px rgba(131, 58, 180, 0.5);
    }
}

.iphone-frame {
    width: 340px;
    height: 680px;
    background: #000;
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow);
}

.iphone-frame:hover {
    transform: translateY(-8px) rotateY(5deg);
}

.iphone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--text-sm);
    font-weight: 600;
}

.instagram-header.success {
    background: linear-gradient(90deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
}

.instagram-header svg {
    color: var(--gray-700);
}

.growth-badge {
    margin-left: auto;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--text-xs);
    font-weight: 700;
}

.insights-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: calc(100% - 60px);
}

.stat-card {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.stat-card.low {
    border-left: 3px solid var(--gray-300);
}

.stat-card.high {
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #405de6, #833ab4) 1;
    background: linear-gradient(90deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--gray-900);
}

.stat-card.high .stat-value {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-indicator {
    font-size: var(--text-xs);
    font-weight: 600;
    color: #00ba34;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    margin-top: auto;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.status-badge.struggling {
    background: var(--gray-200);
    color: var(--gray-700);
}

.status-badge.success {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
}

.iphone-label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    min-width: 80px;
    align-self: center;
}

.vs-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(64, 93, 230, 0.3);
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.gradient-line {
    width: 4px;
    height: 200px;
    background: linear-gradient(180deg, #405de6 0%, #833ab4 100%);
    border-radius: 2px;
    position: absolute;
    top: 60px;
    opacity: 0.3;
}

/* Timeline Connector */
.timeline-connector {
    display: none;
}

.timeline-line {
    display: none;
}

.timeline-arrow {
    display: none;
}

.timeframe-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.timeframe-badge::before {
    content: '';
    display: none;
}

/* Instagram Header Enhancement */
.instagram-header .header-label {
    font-weight: 600;
    color: var(--gray-700);
}

/* Stat Trend Indicators */
.stat-trend {
    font-size: 10px;
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-trend.negative {
    color: var(--gray-500);
}

.stat-trend.positive {
    color: #22c55e;
}

/* Stat Card Clean Style */
.stat-card-clean {
    background: var(--gray-50);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.stat-card-clean.low {
    border-left: 3px solid var(--gray-300);
}

.stat-card-clean.high {
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #405de6, #833ab4) 1;
    background: linear-gradient(90deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.03) 100%);
    border: 1px solid rgba(91, 81, 216, 0.15);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #405de6, #833ab4) 1;
}

.stat-card-clean.high.impact {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08) 0%, rgba(91, 81, 216, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.stat-card-clean .stat-value {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--gray-800);
}

.stat-card-clean.high .stat-value.gradient-text {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-clean .stat-label {
    font-size: 9px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.stat-card-clean .growth-indicator {
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.125rem;
}

.stat-card-clean .growth-indicator.success {
    color: #22c55e;
}

.stat-card-clean .growth-indicator svg {
    width: 10px;
    height: 10px;
}

/* Status Badge Clean */
.status-badge-clean {
    margin-top: auto;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-badge-clean.struggling {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.status-badge-clean.success {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(91, 81, 216, 0.3);
}

.status-badge-clean svg {
    width: 14px;
    height: 14px;
}

/* Number Animation */
.stat-value.animate-in {
    animation: countUp 0.6s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Case Study Testimonial */
.case-testimonial {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.03) 0%, rgba(131, 58, 180, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(91, 81, 216, 0.1);
    text-align: center;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: var(--color-accent);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
    font-size: var(--text-sm);
}

.author-role {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-500);
}

.case-study-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(91, 81, 216, 0.3);
}

.case-study-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 81, 216, 0.4);
}

.case-study-cta svg {
    transition: transform 0.3s ease;
}

.case-study-cta:hover svg {
    transform: translateX(4px);
}

/* iPhone Label Enhancement */
.iphone-label-top {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.iphone-label-top.gradient-text-label {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================
   STORY CAROUSEL
   ==================== */
.story-carousel-wrapper {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    user-select: none;
}

.story-progress-bars {
    display: flex;
    gap: 4px;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.progress-bar-container {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    width: 0%;
    transition: width 100ms linear;
}

.progress-bar.active {
    background: linear-gradient(90deg, #405de6 0%, #833ab4 100%);
    transition: width 100ms linear;
}

.progress-bar.completed {
    background: #fff;
    width: 100%;
}

.story-card {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.story-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.story-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.story-username {
    font-weight: 700;
    font-size: var(--text-sm);
    color: #fff;
}

.story-time {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
}

.story-close {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.story-close:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.story-badge {
    align-self: flex-start;
    margin-top: 1rem;
}

.gradient-badge {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.story-stat {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem 0.75rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon-large {
    font-size: 2rem;
}

.story-stat .stat-number {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: #fff;
}

.stat-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-quote {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-mark {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 0;
    margin-bottom: 1rem;
}

.quote-text {
    color: #fff;
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.quote-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    font-style: italic;
}

.story-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.swipe-up-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.swipe-up-indicator svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.swipe-up-indicator span {
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: var(--text-base);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cta-button.gradient-bg {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 93, 230, 0.4);
}

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.story-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.story-nav-prev {
    left: -60px;
}

.story-nav-next {
    right: -60px;
}

.story-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* ====================
   STATS DASHBOARD
   ==================== */
.stats-dashboard-wrapper {
    padding: 5rem 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.stats-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card-dashboard {
    perspective: 1000px;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.stat-card-dashboard.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.stat-card-dashboard.flipped .stat-card-inner {
    transform: rotateY(180deg);
}

.stat-card-front,
.stat-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.stat-card-dashboard:hover .stat-card-front {
    border-color: transparent;
    border-image: linear-gradient(135deg, #405de6, #833ab4) 1;
}

.stat-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, #405de6, #833ab4) 1;
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
}

.stat-icon-emoji {
    font-size: 3rem;
    display: block;
}

.stat-value-wrapper {
    margin-bottom: 1rem;
}

.stat-value-large {
    font-size: var(--text-6xl);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.stat-label-text {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.stat-progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-progress-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    width: 0%;
    transition: width 1s ease-out;
    background: linear-gradient(90deg, #405de6 0%, #833ab4 100%);
}

.stat-progress-percentage {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-600);
    min-width: 45px;
}

.stat-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: auto;
}

.hover-hint {
    font-size: var(--text-xs);
    color: var(--gray-400);
    text-align: center;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-detail-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-detail-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.stat-detail-value {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.stat-detail-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 0.5rem;
    height: 100px;
    padding: 1rem 0;
}

.chart-bar {
    flex: 1;
    background: var(--gray-300);
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-base);
}

.chart-bar.active-bar {
    background: linear-gradient(180deg, #405de6 0%, #833ab4 100%);
}

/* ====================
   INSTAGRAM INSIGHTS DASHBOARD
   ==================== */
.ig-insights-dashboard {
    background: #000;
    border-radius: 24px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.ig-insights-header {
    margin-bottom: 40px;
}

.ig-insights-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.ig-gradient-text {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-insights-period {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ig-period-label {
    background: #262626;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.ig-period-date {
    color: #a8a8a8;
    font-size: 14px;
}

.ig-overview-section,
.ig-performance-section {
    margin-bottom: 32px;
}

.ig-section-label {
    font-size: 14px;
    font-weight: 600;
    color: #a8a8a8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ig-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ig-stat-item {
    background: #121212;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #262626;
}

.ig-stat-item:hover {
    border-color: #405de6;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(64, 93, 230, 0.2);
}

.ig-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.ig-stat-label {
    font-size: 14px;
    color: #a8a8a8;
    margin-bottom: 12px;
}

.ig-stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.ig-stat-change.up {
    color: #00ba34;
}

.ig-stat-change.up svg {
    stroke: #00ba34;
}

.ig-stat-change.neutral {
    color: #a8a8a8;
}

.ig-graph-section {
    background: #121212;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #262626;
}

.ig-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ig-graph-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.ig-graph-legend {
    display: flex;
    gap: 20px;
}

.ig-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a8a8a8;
}

.ig-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ig-legend-dot.followers {
    background: #c13584;
}

.ig-legend-dot.reach {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
}

.ig-graph-container {
    height: 200px;
}

.ig-graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 8px;
}

.ig-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.ig-bar-group .ig-bar {
    width: 100%;
    max-width: 24px;
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease-out;
}

.ig-bar.followers {
    background: #c13584;
}

.ig-bar.reach {
    background: linear-gradient(180deg, #405de6 0%, #833ab4 100%);
}

.ig-bar-group.highlight .ig-bar {
    box-shadow: 0 0 12px rgba(131, 58, 180, 0.5);
}

.ig-bar-label {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
}

.ig-insights-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.15) 0%, rgba(131, 58, 180, 0.15) 100%);
    border: 1px solid rgba(131, 58, 180, 0.3);
    border-radius: 12px;
    padding: 20px 28px;
}

.ig-cta-text {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.ig-cta-button {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ig-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 81, 216, 0.4);
}

/* Responsive for Instagram Insights Dashboard */
@media (max-width: 768px) {
    .ig-insights-dashboard {
        padding: 24px;
        border-radius: 16px;
    }

    .ig-insights-title {
        font-size: 28px;
    }

    .ig-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ig-stat-value {
        font-size: 28px;
    }

    .ig-graph-bars {
        gap: 4px;
    }

    .ig-bar-label {
        font-size: 9px;
    }

    .ig-insights-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ====================
   ANIMATED TIMELINE
   ==================== */
.timeline-wrapper {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.timeline-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.timeline-progress-track {
    position: absolute;
    left: 50px;
    top: 200px;
    width: 4px;
    height: calc(100% - 400px);
    background: var(--gray-200);
    border-radius: 2px;
}

.timeline-progress-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #405de6 0%, #833ab4 100%);
    border-radius: 2px;
    transition: height 0.8s ease-out;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.timeline-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-dot-container {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-base);
}

.step-dot.active {
    border-color: transparent;
    background: #fff;
    box-shadow: 0 0 0 4px #833ab4;
}

.step-dot-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all var(--transition-base);
}

.step-dot.active .step-dot-inner {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    opacity: 0;
}

.step-dot.active .step-pulse {
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.step-content {
    flex: 1;
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

.step-content.hovering {
    border-color: transparent;
    border-image: linear-gradient(135deg, #405de6, #833ab4) 1;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(64, 93, 230, 0.15);
}

/* Step Content Inner - Side by Side Layout */
.step-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-text {
    display: flex;
    flex-direction: column;
}

/* Step Image Styles */
.step-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.step-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-image-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 16px 50px rgba(64, 93, 230, 0.2);
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step-image-wrapper:hover img {
    transform: scale(1.05);
}

.step-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(64, 93, 230, 0.1) 0%,
        rgba(131, 58, 180, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-image-wrapper:hover .step-image-overlay {
    opacity: 1;
}

/* Alternate layout - image on left for even steps */
.timeline-step:nth-child(even) .step-content-inner {
    direction: rtl;
}

.timeline-step:nth-child(even) .step-content-inner > * {
    direction: ltr;
}

/* Responsive - Stack on mobile */
@media (max-width: 900px) {
    .step-content-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-image {
        order: -1;
    }

    .timeline-step:nth-child(even) .step-content-inner {
        direction: ltr;
    }

    .step-image-wrapper {
        aspect-ratio: 16/9;
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    font-size: var(--text-4xl);
    font-weight: 900;
}

.step-icon {
    font-size: 2.5rem;
    margin-left: auto;
}

.step-main h3 {
    margin: 0;
}

.step-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.step-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.step-tag.gradient-border {
    background: linear-gradient(90deg, rgba(64, 93, 230, 0.1) 0%, rgba(131, 58, 180, 0.1) 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.step-tag.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #405de6, #833ab4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.step-tag svg {
    width: 16px;
    height: 16px;
    color: inherit;
}

.step-description {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.step-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-base);
}

.step-expand-btn:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
    transform: translateY(-2px);
}

.step-expand-btn.expanded {
    border-color: transparent;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
}

.expand-icon {
    transition: transform var(--transition-base);
}

.step-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.step-details.expanded {
    max-height: 500px;
    margin-top: 1.5rem;
}

.details-content {
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-100);
}

.details-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.details-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-base);
    color: var(--gray-700);
}

.check-icon {
    flex-shrink: 0;
    color: #833ab4;
}

.timeline-cta {
    text-align: center;
    margin-top: 4rem;
}

.timeline-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.timeline-cta-btn.gradient-bg {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
}

.timeline-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(64, 93, 230, 0.4);
}

/* ====================
   GLOBAL GRADIENT HOVER STATES
   ==================== */

/* Buttons */
button:not(.no-gradient):hover,
.btn:not(.no-gradient):hover {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    color: #fff;
    border-color: transparent;
}

/* Cards with gradient border on hover */
.card:hover,
.service-card:hover,
.case-study-card:hover,
.pricing-tier:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(64, 93, 230, 0.2);
}

/* Add gradient left border to cards on hover */
.service-card:hover::before,
.case-study-card:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #405de6 0%, #833ab4 100%);
    border-radius: 12px 0 0 12px;
}

.service-card,
.case-study-card {
    position: relative;
}

/* Links with gradient underline on hover */
a:not(.no-gradient):hover {
    position: relative;
}

a:not(.no-gradient):hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #405de6 0%, #833ab4 100%);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Impact Text Animation */
.impact-text {
    display: inline-block;
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-text.impact-animate {
    opacity: 1;
    transform: scale(1);
}

.impact-text.impact-pulse {
    animation: impactPulse 1.5s ease-in-out;
}

@keyframes impactPulse {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* ====================
   SCROLL ANIMATIONS
   ==================== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ====================
   MOBILE RESPONSIVE
   ==================== */
@media (max-width: 768px) {
    /* Dual iPhone */
    .dual-iphone-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .iphone-frame {
        width: 280px;
        height: 560px;
    }

    .gradient-line {
        width: 200px;
        height: 4px;
        top: auto;
        left: 60px;
    }

    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: var(--text-base);
    }

    /* Story Carousel */
    .story-card {
        height: 600px;
    }

    .story-nav-prev {
        left: -20px;
    }

    .story-nav-next {
        right: -20px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Stats Dashboard */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card-dashboard {
        height: 350px;
    }

    /* Timeline */
    .timeline-progress-track {
        left: 30px;
    }

    .step-dot-container {
        width: 60px;
    }

    .step-dot {
        width: 32px;
        height: 32px;
    }

    .step-dot-inner {
        width: 18px;
        height: 18px;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-number {
        font-size: var(--text-3xl);
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-title {
        font-size: var(--text-xl);
    }

    .timeline-title,
    .stats-title {
        font-size: var(--text-4xl);
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .stats-grid {
        max-width: 1600px;
    }

    .timeline-wrapper {
        max-width: 1200px;
    }
}

/* ====================
   SECTION CONSISTENCY
   ==================== */

/* Ensure all new sections have consistent padding */
.stats-section,
.before-after-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.stats-section {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.before-after-section {
    background: #FFFFFF;
    padding: 4rem 0 6rem 0; /* Reduced top padding for tighter spacing after social proof */
}

.before-after-section .section-header {
    text-align: center !important;
}

.before-after-section .section-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Optimize spacing flow: Social Proof → Before/After */
.social-proof + .before-after-section {
    padding-top: 3rem; /* Tighter connection between trust signals and proof */
}

/* Add breathing room before next section */
.before-after-section + .stats-section {
    padding-top: 3rem;
}

/* Additional gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Gradient background utility */
.gradient-bg {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
}

/* Ensure consistent section headers */
.section-header .section-tag.gradient-text {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.1) 0%, rgba(131, 58, 180, 0.1) 100%);
    border-radius: 20px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Performance optimization: will-change for animated elements */
.stat-card-dashboard,
.timeline-step,
.story-card,
.iphone-frame {
    will-change: transform, opacity;
}

/* Disable will-change on mobile to prevent stacking issues */
@media (max-width: 1024px) {
    .iphone-frame {
        will-change: auto;
    }

    .hero-visual {
        transform: none !important;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-fade-in,
    .scroll-slide-left,
    .scroll-slide-right {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    .nav,
    .hero-visual,
    .iphone-frame,
    .story-carousel-wrapper,
    .scroll-progress-bar {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ====================
   CLEAN PROFESSIONAL STYLES
   (No Emojis - SVG Icons Only)
   ==================== */

/* Clean stat cards for dual iPhone */
.stat-card-clean {
    background: var(--gray-50);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    text-align: center;
}

.stat-card-clean.low {
    border: 2px solid var(--gray-200);
}

.stat-card-clean.high {
    border: 2px solid transparent;
    border-image: linear-gradient(180deg, #405de6, #833ab4) 1;
    background: linear-gradient(90deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
}

.stat-card-clean .stat-value {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--gray-900);
}

.stat-card-clean.high .stat-value {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-clean .stat-label {
    font-size: var(--text-xs);
    color: var(--gray-600);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Clean status badges */
.status-badge-clean {
    margin-top: auto;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge-clean.struggling {
    background: var(--gray-200);
    color: var(--gray-700);
}

.status-badge-clean.success {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: #fff;
}

/* iPhone labels at top */
.iphone-label-top {
    font-size: var(--text-sm);
    font-weight: 900;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-align: center;
}

.iphone-label-top.gradient-text-label {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update stat icon wrapper for SVG icons */
.stat-icon-wrapper {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.stat-icon-wrapper svg {
    display: block;
    color: inherit;
}

.stat-icon-emoji {
    display: block;
    color: var(--gray-600);
}

.stat-icon-emoji svg {
    color: var(--gray-600);
}

/* Update stat detail icon for SVG */
.stat-detail-icon {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--gray-700);
}

.stat-detail-icon svg {
    color: inherit;
}

/* Remove step icon styling (no more emojis) */
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.step-icon {
    font-size: 2.5rem;
    margin-left: auto;
    display: none; /* Hide icons completely */
}

/* Story stats without icons */
.story-stat {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem 0.75rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon-large {
    display: none; /* Hide emoji icons */
}

/* Ensure growth indicators are visible */
.growth-indicator {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #00ba34;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

/* ====================
   INSTAGRAM PROFILE STATS FIX
   Make numbers smaller and more readable
   ==================== */

/* Override for Instagram profile view stats specifically */
.instagram-profile-view .profile-stats {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: space-evenly;
    padding: 8px 0;
}

.instagram-profile-view .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0 4px;
}

.instagram-profile-view .stat-value {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #262626 !important;
    white-space: nowrap;
    margin-bottom: 3px;
    line-height: 1.2;
}

.instagram-profile-view .stat-label {
    font-size: 11px !important;
    color: #8e8e8e !important;
    text-transform: lowercase !important;
    white-space: nowrap;
    letter-spacing: 0;
    font-weight: 400 !important;
}

/* Better spacing for profile top section */
.profile-top {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: flex-start;
}

.profile-avatar {
    flex-shrink: 0;
}

.profile-stats {
    flex: 1;
    display: flex;
    gap: 12px;
    justify-content: space-around;
    align-items: center;
}

/* ====================
   HERO STATS FIX
   Ensure hero stat numbers are visible
   ==================== */

/* Make hero stats more specific to prevent override */
.hero-stats .stat-number {
    font-size: var(--text-4xl) !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: var(--text-sm) !important;
    color: var(--gray-600) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 140px;
}

/* ====================
   STORY CAROUSEL SPACING FIX
   More space above quote for better readability
   ==================== */

.story-quote {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem; /* Balanced spacing - not too cramped, not too low */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure stats grid doesn't push quote too close */
.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem; /* Add bottom margin */
}
/* ====================
   ABOUT TIMELINE COMPONENT
   Interactive vertical timeline with gradient connectors
   ==================== */

.about-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    opacity: 0.3;
}

.timeline-entry {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-entry.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 24px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(64, 93, 230, 0.3);
    z-index: 2;
}

.timeline-year-badge {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-700);
    white-space: nowrap;
}

.timeline-card {
    background: var(--color-secondary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    cursor: pointer;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.timeline-card[data-expanded="true"] {
    border-color: #405de6;
    box-shadow: 0 8px 24px rgba(64, 93, 230, 0.15);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.timeline-card-year {
    font-size: var(--text-lg);
    font-weight: 800;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-card-title {
    flex: 1;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.timeline-expand-btn {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: var(--space-2);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.timeline-expand-btn:hover {
    color: #405de6;
    transform: scale(1.1);
}

.timeline-card[data-expanded="true"] .timeline-expand-btn svg {
    transform: rotate(180deg);
}

.timeline-expand-btn svg {
    transition: transform var(--transition-base);
}

.timeline-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.timeline-card[data-expanded="true"] .timeline-card-content {
    max-height: 1000px;
}

.timeline-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.timeline-achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.timeline-achievement {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.timeline-achievement:hover {
    background: var(--gray-100);
    transform: translateX(8px);
}

.achievement-badge {
    min-width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 700;
    color: white;
    text-align: center;
}

.achievement-text {
    color: var(--gray-700);
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-marker {
        left: 4px;
        width: 28px;
        height: 28px;
    }
    
    .timeline-year-badge {
        left: -60px;
        font-size: var(--text-xs);
    }
    
    .timeline-entry {
        padding-left: 60px;
    }
    
    .timeline-card-title {
        font-size: var(--text-lg);
    }

    .achievement-badge {
        min-width: 50px;
        height: 35px;
        font-size: var(--text-xs);
    }
}

/* ============================================================================
   YouTube Studio Style - How It Works
   ============================================================================ */

.yt-studio-wrapper {
    background: #0f0f0f;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* YouTube Header Bar */
.yt-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #202020;
    border-bottom: 1px solid #303030;
}

.yt-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.5px;
}

.yt-search-bar {
    display: flex;
    align-items: center;
    background: #121212;
    border: 1px solid #303030;
    border-radius: 40px;
    overflow: hidden;
    width: 400px;
}

.yt-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
}

.yt-search-input::placeholder {
    color: #aaa;
}

.yt-search-input:focus {
    outline: none;
}

.yt-search-btn {
    background: #303030;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-left: 1px solid #303030;
}

.yt-search-btn:hover {
    background: #3d3d3d;
}

.yt-create-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #303030;
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-create-btn:hover {
    background: #303030;
}

/* Main Content Area */
.yt-main-content {
    padding: 32px 24px;
}

.yt-section-header {
    margin-bottom: 32px;
}

.yt-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.yt-red {
    color: #ff0000;
}

.yt-section-subtitle {
    font-size: 14px;
    color: #aaa;
}

/* Video Grid */
.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.yt-video-card {
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.yt-video-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.yt-video-card:hover {
    background: #252525;
}

/* Thumbnail */
.yt-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.yt-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yt-video-card:hover .yt-thumbnail {
    transform: scale(1.05);
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yt-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.yt-play-btn:hover {
    transform: scale(1.1);
}

.yt-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
}

.yt-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.yt-progress-fill {
    height: 100%;
    background: #ff0000;
    transition: width 0.3s ease;
}

/* Video Info */
.yt-video-info {
    display: flex;
    padding: 12px;
    gap: 12px;
}

.yt-channel-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yt-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-video-meta {
    flex: 1;
    min-width: 0;
}

.yt-video-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-channel-info {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}

.yt-channel-name {
    font-size: 12px;
    color: #aaa;
}

.yt-channel-name:hover {
    color: #fff;
}

.yt-verified {
    flex-shrink: 0;
}

.yt-video-stats {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
}

.yt-stat-dot {
    font-size: 10px;
}

.yt-more-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 4px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.yt-video-card:hover .yt-more-btn {
    opacity: 1;
}

/* Expanded Details */
.yt-video-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 12px;
    background: #1a1a1a;
}

.yt-video-card.expanded .yt-video-details {
    max-height: 300px;
    padding: 16px 12px;
    border-top: 1px solid #303030;
}

.yt-video-description {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 16px;
}

.yt-video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.yt-feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #252525;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #fff;
}

.yt-video-actions {
    display: flex;
    gap: 8px;
}

.yt-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #303030;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-action-btn:hover {
    background: #3d3d3d;
}

.yt-action-btn.liked {
    background: rgba(255, 0, 0, 0.2);
}

/* Subscribe CTA */
.yt-subscribe-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #181818;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #303030;
}

.yt-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yt-cta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.yt-cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-cta-channel {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.yt-cta-subs {
    font-size: 13px;
    color: #aaa;
}

.yt-subscribe-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
    .yt-video-grid {
        grid-template-columns: 1fr;
    }

    .yt-search-bar {
        width: 200px;
    }
}

@media (max-width: 640px) {
    .yt-header-bar {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .yt-search-bar {
        width: 100%;
        order: 3;
    }

    .yt-section-title {
        font-size: 24px;
    }

    .yt-subscribe-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .yt-cta-content {
        flex-direction: column;
    }
}

/* ============================================================================
   Instagram Feed Style - How It Works (Homepage Timeline)
   ============================================================================ */

.ig-feed-wrapper {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-radius: 16px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #dbdbdb;
}

/* Instagram Header Bar */
.ig-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
}

.ig-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ig-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
    letter-spacing: -0.5px;
}

.ig-header-actions {
    display: flex;
    gap: 16px;
}

.ig-icon-btn {
    background: none;
    border: none;
    color: #262626;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.ig-icon-btn:hover {
    opacity: 0.6;
}

/* Section Header */
.ig-section-header {
    padding: 24px 16px;
    text-align: center;
    background: #fff;
}

.ig-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 8px;
}

.ig-gradient-text {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-section-subtitle {
    font-size: 14px;
    color: #8e8e8e;
}

/* Stories Bar */
.ig-stories-bar {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
    overflow-x: auto;
    justify-content: center;
}

.ig-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ig-story-item:hover {
    transform: scale(1.05);
}

.ig-story-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: all 0.3s ease;
}

.ig-story-ring.viewed {
    background: #dbdbdb;
}

.ig-story-item.active .ig-story-ring {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
}

.ig-story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.ig-story-username {
    font-size: 12px;
    color: #262626;
    font-weight: 500;
}

/* Feed Posts */
.ig-feed-posts {
    display: flex;
    flex-direction: column;
}

.ig-post {
    background: #fff;
    border-bottom: 1px solid #efefef;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ig-post.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Post Header */
.ig-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.ig-post-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.ig-post-user-info {
    display: flex;
    flex-direction: column;
}

.ig-post-username {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.ig-post-location {
    font-size: 12px;
    color: #8e8e8e;
}

.ig-post-more {
    background: none;
    border: none;
    color: #262626;
    cursor: pointer;
    padding: 8px;
}

/* Post Image */
.ig-post-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.ig-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ig-post:hover .ig-post-image {
    transform: scale(1.02);
}

.ig-post-step-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
}

/* Heart Animation */
.ig-heart-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: heartPop 1s ease forwards;
    pointer-events: none;
}

@keyframes heartPop {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Post Actions */
.ig-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
}

.ig-action-group {
    display: flex;
    gap: 16px;
}

.ig-action-btn {
    background: none;
    border: none;
    color: #262626;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.ig-action-btn:hover {
    opacity: 0.6;
}

.ig-action-btn.like-btn.liked svg {
    fill: #ed4956;
    stroke: #ed4956;
}

.like-pop {
    animation: likePop 0.3s ease;
}

@keyframes likePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.ig-action-btn.bookmark-btn.saved svg {
    fill: #262626;
}

/* Post Stats */
.ig-post-stats {
    padding: 0 16px 8px;
}

.ig-likes {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

/* Post Caption */
.ig-post-caption {
    padding: 0 16px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #262626;
}

.ig-post-caption strong {
    margin-right: 6px;
}

.ig-caption-title {
    display: block;
    font-weight: 600;
    margin-top: 4px;
    color: #262626;
}

.ig-caption-text {
    color: #8e8e8e;
    margin-top: 4px;
    margin-bottom: 0;
}

.ig-caption-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ig-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #833ab4;
    background: rgba(131, 58, 180, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.ig-feature-tag svg {
    stroke: #833ab4;
}

/* Post Comments */
.ig-post-comments {
    padding: 0 16px 4px;
}

.ig-comments-link {
    font-size: 14px;
    color: #8e8e8e;
    cursor: pointer;
}

.ig-comments-link:hover {
    text-decoration: underline;
}

/* Post Time */
.ig-post-time {
    padding: 0 16px 16px;
    font-size: 10px;
    color: #8e8e8e;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Feed CTA */
.ig-feed-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
    border-top: 1px solid #dbdbdb;
}

.ig-cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-cta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.ig-cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-cta-title {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin: 0 0 2px 0;
}

.ig-cta-subtitle {
    font-size: 13px;
    color: #8e8e8e;
    margin: 0;
}

.ig-cta-button {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ig-cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.4);
}

/* Responsive */
@media (max-width: 540px) {
    .ig-feed-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .ig-stories-bar {
        justify-content: center;
        padding: 12px;
        gap: 12px;
    }

    .ig-story-ring {
        width: 56px;
        height: 56px;
    }

    .ig-section-title {
        font-size: 22px;
    }

    .ig-feed-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ig-cta-content {
        flex-direction: column;
    }
}

/* Legacy Instagram Feed Container - keeping for compatibility */
.ig-feed-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 470px;
    margin: 0 auto;
}

/* Individual Post */
.ig-post {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-post.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Post Header */
.ig-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.ig-post-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.ig-avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-avatar-text {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-900);
}

.ig-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-verified {
    flex-shrink: 0;
}

.ig-post-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.ig-more-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--gray-900);
}

/* Post Image */
.ig-post-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--gray-100);
}

.ig-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ig-post:hover .ig-post-image img {
    transform: scale(1.02);
}

.ig-post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Post Actions */
.ig-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
}

.ig-actions-left {
    display: flex;
    gap: 16px;
}

.ig-action-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--gray-900);
    transition: all 0.2s ease;
}

.ig-action-btn:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.ig-action-btn svg {
    display: block;
}

/* Likes */
.ig-post-likes {
    padding: 0 16px 8px;
}

.ig-likes-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

/* Caption */
.ig-post-caption {
    padding: 0 16px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-700);
}

.ig-caption-user {
    font-weight: 600;
    color: var(--gray-900);
    margin-right: 4px;
}

.ig-caption-title {
    font-weight: 600;
    color: var(--gray-900);
}

.ig-caption-tags {
    margin-top: 8px;
}

.ig-hashtag {
    color: #00376b;
    font-size: 13px;
}

/* Deliverable Badge */
.ig-deliverable {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 16px 16px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(91, 81, 216, 0.1) 0%, rgba(131, 58, 180, 0.1) 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
}

.ig-deliverable svg {
    color: var(--color-accent);
}

/* CTA */
.ig-feed-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.ig-feed-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    background: linear-gradient(135deg, var(--color-accent) 0%, #833ab4 100%);
    color: white;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(91, 81, 216, 0.35);
    transition: all 0.3s ease;
}

.ig-feed-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(91, 81, 216, 0.4);
}

.ig-feed-cta-btn svg {
    stroke: white;
    transition: transform 0.3s ease;
}

.ig-feed-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 520px) {
    .ig-feed-container {
        max-width: 100%;
        gap: var(--space-6);
    }

    .ig-post {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .ig-feed-title {
        font-size: 2rem;
    }
}

/* ====================
   TWITTER/X STYLE CASE STUDIES
   ==================== */

.twitter-feed-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tweet-card {
    background: white;
    border: 1px solid #eff3f4;
    padding: var(--space-4);
    position: relative;
    transition: background-color 0.2s ease;
}

.tweet-card:first-child {
    border-radius: 16px 16px 0 0;
}

.tweet-card:last-child {
    border-radius: 0 0 16px 16px;
}

.tweet-card:hover {
    background: #f7f9f9;
}

/* Thread connecting line */
.tweet-thread-line {
    position: absolute;
    left: 36px;
    top: 72px;
    bottom: -1px;
    width: 2px;
    background: #cfd9de;
}

.tweet-card:last-child .tweet-thread-line {
    display: none;
}

.tweet-content-wrapper {
    display: flex;
    gap: var(--space-3);
}

/* Avatar */
.tweet-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #405de6, #833ab4);
}

.tweet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main content */
.tweet-main {
    flex: 1;
    min-width: 0;
}

/* Header */
.tweet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-1);
}

.tweet-author {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.tweet-name {
    font-weight: 700;
    color: #0f1419;
    font-size: 15px;
}

.tweet-verified {
    flex-shrink: 0;
}

.tweet-handle {
    color: #536471;
    font-size: 15px;
}

.tweet-separator {
    color: #536471;
    font-size: 15px;
}

.tweet-time {
    color: #536471;
    font-size: 15px;
}

.tweet-time:hover {
    text-decoration: underline;
}

.tweet-more-btn {
    background: none;
    border: none;
    padding: 8px;
    margin: -8px;
    border-radius: 50%;
    cursor: pointer;
    color: #536471;
    transition: all 0.2s;
}

.tweet-more-btn:hover {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
}

/* Tweet body */
.tweet-body {
    margin-bottom: var(--space-3);
}

.tweet-text {
    font-size: 15px;
    line-height: 1.5;
    color: #0f1419;
    margin-bottom: var(--space-3);
    word-wrap: break-word;
}

/* Tweet Image */
.tweet-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--space-3);
    border: 1px solid #cfd9de;
}

.tweet-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stats Card */
.tweet-stats-card {
    border: 1px solid #cfd9de;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    color: white;
}

.tweet-stats-card.youtube .stats-card-header {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.tweet-stats-card.instagram .stats-card-header {
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.stats-card-icon {
    font-size: 20px;
}

.stats-card-title {
    font-weight: 700;
    font-size: 15px;
}

.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eff3f4;
}

.stats-card-item {
    background: white;
    padding: var(--space-4);
    text-align: center;
}

.stats-card-item.highlight {
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.05) 0%, rgba(131, 58, 180, 0.05) 100%);
}

.stats-card-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #0f1419;
    margin-bottom: 4px;
}

.stats-card-item.highlight .stats-card-value {
    background: linear-gradient(135deg, #405de6, #833ab4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card-label {
    display: block;
    font-size: 13px;
    color: #536471;
}

.stats-card-footer {
    padding: var(--space-3) var(--space-4);
    background: #f7f9f9;
    border-top: 1px solid #eff3f4;
}

.stats-card-footer span {
    font-size: 13px;
    color: #536471;
}

/* Engagement bar */
.tweet-engagement {
    display: flex;
    justify-content: space-between;
    max-width: 425px;
    margin-top: var(--space-3);
}

.tweet-action {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    margin: -8px;
    border-radius: 50%;
    cursor: pointer;
    color: #536471;
    font-size: 13px;
    transition: all 0.2s;
}

.tweet-action svg {
    transition: all 0.2s;
}

/* Reply hover */
.tweet-action.reply:hover {
    color: #1d9bf0;
}

.tweet-action.reply:hover svg {
    background: rgba(29, 155, 240, 0.1);
    border-radius: 50%;
}

/* Retweet hover */
.tweet-action.retweet:hover {
    color: #00ba7c;
}

.tweet-action.retweet:hover svg {
    background: rgba(0, 186, 124, 0.1);
    border-radius: 50%;
}

/* Like hover */
.tweet-action.like:hover {
    color: #f91880;
}

.tweet-action.like:hover svg {
    background: rgba(249, 24, 128, 0.1);
    border-radius: 50%;
}

/* Views hover */
.tweet-action.views:hover {
    color: #1d9bf0;
}

/* Bookmark hover */
.tweet-action.bookmark:hover {
    color: #1d9bf0;
}

.tweet-action.bookmark:hover svg {
    background: rgba(29, 155, 240, 0.1);
    border-radius: 50%;
}

/* Share hover */
.tweet-action.share:hover {
    color: #1d9bf0;
}

.tweet-action.share:hover svg {
    background: rgba(29, 155, 240, 0.1);
    border-radius: 50%;
}

/* Active states */
.tweet-action.liked {
    color: #f91880;
}

.tweet-action.liked svg path {
    fill: #f91880;
}

.tweet-action.retweeted {
    color: #00ba7c;
}

.tweet-action.bookmarked svg path {
    fill: #1d9bf0;
}

/* Responsive Twitter */
@media (max-width: 600px) {
    .twitter-feed-container {
        max-width: 100%;
        border-radius: 0;
    }

    .tweet-card:first-child,
    .tweet-card:last-child {
        border-radius: 0;
    }

    .tweet-card {
        border-left: none;
        border-right: none;
    }

    .stats-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card-value {
        font-size: 20px;
    }

    .tweet-thread-line {
        left: 32px;
    }
}

@media (max-width: 380px) {
    .tweet-avatar {
        width: 40px;
        height: 40px;
    }

    .tweet-thread-line {
        left: 28px;
    }

    .tweet-engagement {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
}

/* ============================================================================
   INSTAGRAM-THEMED CONTACT SECTION
   ============================================================================ */

/* Instagram Gradient Variables */
:root {
    --ig-purple: #833AB4;
    --ig-pink: #E1306C;
    --ig-orange: #F77737;
    --ig-yellow: #FCAF45;
    --ig-gradient: linear-gradient(45deg, #833AB4, #E1306C, #F77737, #FCAF45);
    --ig-gradient-reverse: linear-gradient(45deg, #FCAF45, #F77737, #E1306C, #833AB4);
}

.ig-contact-section {
    background: #000000 !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Background Glow */
.ig-contact-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(131, 58, 180, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(225, 48, 108, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(247, 119, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ig-contact-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header with Story Ring */
.ig-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.ig-story-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--ig-gradient);
    padding: 3px;
    margin: 0 auto 28px;
    animation: storyRingRotate 3s linear infinite;
}

@keyframes storyRingRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.ig-avatar {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #000000;
}

.ig-avatar svg {
    color: #ffffff;
}

.ig-contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.ig-contact-subtitle {
    font-size: 18px;
    color: #a8a8a8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards */
.ig-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ig-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(225, 48, 108, 0.2);
}

.ig-card-primary {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.ig-card-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--ig-gradient);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-card-primary:hover::before {
    opacity: 1;
}

.ig-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1) 0%, rgba(225, 48, 108, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ig-card-icon svg {
    color: var(--ig-pink);
}

.ig-live-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 2px 6px;
    background: linear-gradient(90deg, #E1306C, #F77737);
    color: white;
    font-size: 8px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ig-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #262626;
    margin: 0;
}

.ig-card-content p {
    font-size: 14px;
    color: #8e8e8e;
    margin: 4px 0 0 0;
    line-height: 1.5;
}

/* Card Buttons */
.ig-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.ig-btn-gradient {
    background: var(--ig-gradient);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ig-btn-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.4);
}

.ig-btn-outline {
    background: transparent;
    color: #262626;
    border: 1px solid #dbdbdb;
}

.ig-btn-outline:hover {
    border-color: var(--ig-pink);
    color: var(--ig-pink);
    background: rgba(225, 48, 108, 0.05);
}

/* Action Bar */
.ig-action-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ig-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ig-action-item:hover {
    color: #ffffff;
}

.ig-action-item:first-child:hover {
    color: var(--ig-pink);
}

.ig-action-item:first-child:hover svg {
    fill: var(--ig-pink);
    stroke: var(--ig-pink);
}

.ig-action-item svg {
    transition: all 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .ig-contact-section {
        padding: 60px 0;
    }

    .ig-contact-title {
        font-size: 32px;
    }

    .ig-contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ig-card {
        padding: 24px 20px;
    }

    .ig-action-bar {
        gap: 24px;
        flex-wrap: wrap;
    }

    .ig-action-item span {
        display: none;
    }
}

@media (max-width: 480px) {
    .ig-contact-title {
        font-size: 28px;
    }

    .ig-story-ring {
        width: 72px;
        height: 72px;
    }

    .ig-avatar svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================================================
   YOUTUBE-THEMED CTA SECTION
   ============================================================================ */

/* YouTube Color Variables */
:root {
    --yt-red: #FF0000;
    --yt-dark: #0F0F0F;
    --yt-darker: #030303;
    --yt-gray: #272727;
    --yt-light-gray: #AAAAAA;
    --yt-white: #FFFFFF;
    --yt-hover: #3F3F3F;
}

.yt-cta-section {
    background: var(--yt-dark);
    padding: 80px 0;
    position: relative;
}

.yt-video-player {
    background: var(--yt-darker);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Progress Bar */
.yt-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.yt-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--yt-red);
    transition: width 2s ease-out;
}

.yt-video-player:hover .yt-progress-fill {
    width: 75%;
}

/* Channel Header */
.yt-channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-channel-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--yt-red), #CC0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
}

.yt-channel-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yt-channel-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--yt-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.yt-verified {
    color: var(--yt-light-gray);
}

.yt-subscriber-count {
    font-size: 13px;
    color: var(--yt-light-gray);
}

.yt-subscribe-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-subscribe-btn {
    background: var(--yt-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-subscribe-btn:hover {
    background: #CC0000;
    transform: scale(1.02);
}

.yt-subscribe-btn.subscribed {
    background: var(--yt-gray);
    color: var(--yt-white);
}

.yt-bell-btn {
    width: 40px;
    height: 40px;
    background: var(--yt-gray);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--yt-white);
}

.yt-bell-btn:hover {
    background: var(--yt-hover);
}

.yt-bell-btn.active {
    color: var(--yt-white);
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
}

/* Video Content */
.yt-video-content {
    padding: 32px 24px;
    text-align: center;
}

.yt-video-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--yt-white);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.yt-video-description {
    font-size: 16px;
    color: var(--yt-light-gray);
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Thumbnail Cards */
.yt-thumbnail-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.yt-thumb-card {
    background: var(--yt-gray);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 200px;
}

.yt-thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
}

.yt-thumb-primary {
    border: 2px solid var(--yt-red);
}

.yt-thumb-preview {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yt-thumb-preview svg {
    color: var(--yt-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.yt-thumb-card:hover .yt-thumb-preview svg {
    opacity: 1;
    transform: scale(1.1);
}

.yt-thumb-primary .yt-thumb-preview svg {
    color: var(--yt-red);
}

.yt-thumb-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-thumb-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.yt-thumb-info {
    padding: 12px;
}

.yt-thumb-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--yt-white);
    margin: 0 0 4px 0;
}

.yt-thumb-info p {
    font-size: 12px;
    color: var(--yt-light-gray);
    margin: 0;
}

/* Action Bar */
.yt-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-action-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--yt-gray);
    border: none;
    color: var(--yt-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-action-btn:hover {
    background: var(--yt-hover);
}

.yt-action-btn:first-child {
    border-radius: 20px 0 0 20px;
    padding-right: 12px;
}

.yt-action-btn:nth-child(2) {
    border-radius: 0 20px 20px 0;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.yt-action-btn.liked svg {
    fill: var(--yt-red);
    stroke: var(--yt-red);
}

.yt-action-count {
    font-weight: 600;
}

.yt-view-count {
    font-size: 14px;
    color: var(--yt-light-gray);
}

/* Trust Badges */
.yt-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    flex-wrap: wrap;
}

.yt-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--yt-light-gray);
}

.yt-badge svg {
    color: var(--yt-red);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide YouTube CTA section on mobile */
    .yt-cta-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .yt-video-content {
        padding: 24px 16px;
    }

    .yt-video-title {
        font-size: 20px;
    }

    .yt-action-btn span {
        display: none;
    }

    .yt-action-btn:first-child span {
        display: inline;
    }
}

/* ============================================================================
   SOCIAL PROOF NOTIFICATION WIDGET
   ============================================================================ */

.social-proof-widget {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-proof-widget.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    flex-shrink: 0;
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-text {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
}

.proof-time {
    font-size: 12px;
    color: #666;
}

@media (max-width: 480px) {
    .social-proof-widget {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 20px;
    }
}
