/* ==========================================================================
   CLIPD PREMIUM LIGHT-MODE DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-main: #ffffff;
    --bg-surface: #fafafa;
    --bg-card: #ffffff;
    --border-color: #e4e4e7; /* zinc-200 */
    --border-hover: #d4d4d8; /* zinc-300 */
    
    /* Typography Colors */
    --text-primary: #09090b; /* zinc-950 */
    --text-secondary: #52525b; /* zinc-600 */
    --text-muted: #71717a; /* zinc-500 */
    
    /* Accents & Brand Gradients */
    --accent-indigo: #4f46e5;
    --accent-indigo-glow: rgba(79, 70, 229, 0.05);
    --accent-cyan: #0891b2;
    --accent-cyan-glow: rgba(8, 145, 178, 0.05);
    --accent-pink: #db2777;
    --accent-green: #10b981;
    
    --grad-indigo-cyan: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-cyan) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.03), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 24px -3px rgba(0, 0, 0, 0.04), 0 4px 12px -4px rgba(0, 0, 0, 0.03);

    /* Layout metrics */
    --container-width: 1100px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 72px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

strong {
    color: #09090b;
    font-weight: 700;
}

p strong, .icp-body-para strong, .step-desc strong, .different-section strong, .feature-list li strong {
    color: var(--accent-indigo);
    font-weight: 700;
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.03) 100%);
    padding: 2px 6px;
    border-radius: 6px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #e4e4e7;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4d4d8;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--grad-indigo-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.serif-gradient-1 {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.serif-gradient-2 {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--grad-indigo-cyan);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
    animation: cta-pulse 2.2s infinite;
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
    transform: translateY(-2px) scale(1.01);
    opacity: 1;
    animation: none;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--border-hover);
}

.btn-lg {
    padding: 14px 24px;
}
.btn-lg .btn-text {
    font-size: 1.05rem;
}
.btn-lg .btn-subtext {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 1px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/* Badge labels */
.section-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #eef2ff;
    color: #4f46e5;
    margin-bottom: 12px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

/* ==========================================================================
   NAVIGATION TOP BANNER & HEADER
   ========================================================================== */
.top-banner {
    background: #eef2ff;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    color: #4338ca;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
}
.flex-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.spot-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}
.spot-indicator .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-green);
    display: inline-block;
}
.banner-separator {
    opacity: 0.3;
}

.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 14px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}
.logo-media {
    color: #5737e9;
    background: none;
    -webkit-text-fill-color: initial;
}
.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--grad-indigo-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
}
.accent-dot {
    color: var(--accent-indigo);
}
.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.nav-menu a:hover {
    color: var(--text-primary);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Old Hero rules cleaned up in favor of new two-column layout */

/* ==========================================================================
   TRUST & SOCIAL PROOF STRIP
   ========================================================================== */
.trust-section {
    padding: 40px 0 60px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-size: 2.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}

/* Grayscale Logos */
.logo-strip {
    text-align: center;
}
.logo-strip-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 48px;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.logo-box:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* ==========================================================================
   ROI CALCULATOR SECTION
   ========================================================================== */
.roi-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}
.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 48px;
    align-items: stretch;
}
.calculator-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.calculator-card h3 {
    font-size: 1.25rem;
    margin-bottom: 28px;
}
.slider-group {
    margin-bottom: 24px;
}
.slider-group:last-child {
    margin-bottom: 0;
}
.slider-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.slider-meta label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}
.slider-output {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-indigo);
}

/* Range Input styling */
.calculator-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e4e4e7;
    outline: none;
    margin-bottom: 6px;
}
.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-indigo);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.4);
    transition: var(--transition-smooth);
}
.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.calculator-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--accent-indigo);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.4);
    transition: var(--transition-smooth);
}
.calculator-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}
.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.calculator-outputs {
    background: #fafafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.output-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.output-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--accent-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.output-details {
    display: flex;
    flex-direction: column;
}
.output-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.output-num {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
}
.output-num .small-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
}
.highlighted-output {
    background: #eef2ff;
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 8px;
    padding: 24px;
    margin-top: 12px;
}
.highlighted-output .output-num {
    color: var(--accent-indigo);
    font-size: 2.1rem;
    line-height: 1.1;
}

/* ==========================================================================
   HOW IT WORKS PROCESS TIMELINE
   ========================================================================== */
.process-section {
    padding: 80px 0;
}
.section-header {
    margin-bottom: 48px;
}
.section-title {
    font-size: 2rem;
    margin-top: 8px;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.process-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.process-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--accent-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.process-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   WHO IT'S FOR SECTION
   ========================================================================== */
.icp-section {
    padding: 90px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.icp-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.icp-left-content {
    display: flex;
    flex-direction: column;
}
.icp-top-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-indigo);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.icp-main-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}
.icp-body-para {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.geo-tags-group {
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}
.geo-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 12px;
}
.geo-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.geo-tag {
    background: #f4f4f5;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
}
.icp-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.icp-grid-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.icp-grid-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.icp-card-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.icp-card-icon-wrap.blue { background: #eef2ff; color: #4f46e5; }
.icp-card-icon-wrap.red { background: #fef2f2; color: #ef4444; }
.icp-card-icon-wrap.green { background: #ecfdf5; color: #10b981; }
.icp-card-icon-wrap.yellow { background: #fef9c3; color: #ca8a04; }
.icp-card-icon-wrap.pink { background: #fdf2f8; color: #db2777; }
.icp-card-icon-wrap.purple { background: #faf5ff; color: #a855f7; }

.icp-grid-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.icp-grid-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ==========================================================================
   SAMPLE CONTENT SECTION
   ========================================================================== */
.sample-section {
    padding: 90px 0;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.work-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #000000;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.work-video-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
    background: #000000;
    object-fit: cover;
}

/* ==========================================================================
   WHY WE'RE DIFFERENT SECTION
   ========================================================================== */
.different-section {
    padding: 80px 0;
}
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 48px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}
.comparison-table th, 
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
    background: #fafafa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.vector-name {
    font-weight: 600;
    color: var(--text-primary);
}
.highlighted-col {
    background: rgba(79, 70, 229, 0.015);
    border-left: 1px solid rgba(79, 70, 229, 0.1);
    border-right: 1px solid rgba(79, 70, 229, 0.1);
}
.comparison-table td.highlighted-col {
    color: var(--text-primary);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 9999px;
    margin-top: 16px;
}
.toggle-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}
.toggle-label.active {
    color: var(--text-primary);
}
.pricing-switch {
    width: 38px;
    height: 20px;
    background: #e4e4e7;
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}
.pricing-switch.toggle-active {
    background: var(--accent-indigo);
}
.switch-dot {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition-smooth);
}
.pricing-switch.toggle-active .switch-dot {
    transform: translateX(18px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tier-header h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.tier-header p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.tier-price {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
}
.tier-price .dollar {
    font-size: 1.25rem;
    font-weight: 700;
}
.tier-price .price-val {
    font-size: 2.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1;
}
.tier-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}
.features-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.features-list li i {
    color: var(--accent-indigo);
    margin-top: 3px;
}

.tier-name-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* Highlighted Plan (Dark Card) */
.pricing-card.highlighted-card {
    background: #09090b;
    border-color: #27272a;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 2;
}
.pricing-card.highlighted-card:hover {
    transform: scale(1.03) translateY(-2px);
    border-color: #3f3f46;
}
.highlighted-card .tier-name-label {
    color: #a1a1aa;
}
.highlighted-card .tier-price {
    color: #ffffff;
}
.highlighted-card .tier-price .period {
    color: #71717a;
}
.highlighted-card .features-list li {
    color: #e4e4e7;
}
.highlighted-card .features-list li i {
    color: #818cf8;
}
.highlighted-card .popular-pill {
    background: #312e81;
    color: #c7d2fe;
    border: 1px solid rgba(199, 210, 254, 0.2);
}

.popular-pill {
    position: absolute;
    top: 20px;
    right: 28px;
    background: #eef2ff;
    color: var(--accent-indigo);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

/* Button Variants */
.btn-pricing-outline {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    font-weight: 600;
}
.btn-pricing-outline:hover {
    background: #f4f4f5;
    border-color: #d4d4d8;
    color: var(--text-primary);
}
.btn-pricing-purple {
    background: #6366f1;
    color: #ffffff;
    border: 1px solid #4f46e5;
    transition: var(--transition-smooth);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    animation: cta-pulse 2.2s infinite;
}
.btn-pricing-purple:hover {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
    transform: translateY(-2px);
    animation: none;
}

/* Saves text */
.saves-text {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #16a34a;
    margin-top: 14px;
}

.pricing-guarantee {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 36px;
}
.pricing-guarantee i {
    color: var(--accent-green);
    margin-right: 4px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.stars {
    color: #eab308; /* Tailwind yellow-500 */
    font-size: 0.75rem;
    margin-bottom: 12px;
}
.testimonial-content {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.testimonial-card .author-info {
    display: flex;
    flex-direction: column;
}
.testimonial-card .author-info strong {
    font-size: 0.8rem;
    color: var(--text-primary);
}
.testimonial-card .author-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.faq-accordion {
    max-width: 750px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.faq-item:hover {
    border-color: var(--border-hover);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}
.faq-toggle-icon {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-item.faq-active {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-section {
    padding: 80px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--accent-indigo);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.blog-tag {
    color: var(--accent-indigo);
}
.blog-card-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.35;
}
.blog-card-title a:hover {
    color: var(--accent-indigo);
}
.blog-card-excerpt {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-read-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-indigo);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-read-link i {
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-read-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   FINAL CALL TO ACTION SECTION
   ========================================================================== */
.final-cta-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-top: 1px solid var(--border-color);
}
.final-cta-section h2 {
    font-size: 2.2rem;
    margin-top: 12px;
    margin-bottom: 8px;
}
.final-cta-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0 30px 0;
    background: #ffffff;
}
.footer-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand p {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}
.footer-links a {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-seals {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   MODAL DIALOG OVERLAYS & SCHEDULERS
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 40px 20px;
    overflow-y: auto;
}
.booking-modal-overlay.modal-show {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 0.25s ease;
}
.booking-modal-overlay.modal-show .booking-modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
}
.modal-close:hover {
    color: var(--text-primary);
}

.modal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.modal-info {
    background: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    padding: 36px;
    display: flex;
    flex-direction: column;
}
.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 24px;
}
.modal-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.modal-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.modal-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal-checklist div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Scheduler */
.modal-scheduler {
    padding: 36px;
}
.modal-scheduler h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.calendar-picker-mock {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.calendar-day {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px;
    font-size: 0.7rem;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}
.calendar-day.day-past {
    opacity: 0.3;
    pointer-events: none;
}
.calendar-day:hover {
    border-color: var(--border-hover);
}
.calendar-day.day-active {
    background: #eef2ff;
    border-color: var(--accent-indigo);
    color: var(--accent-indigo);
}
.calendar-day .dot {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--accent-indigo);
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.time-slots h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.time-slot-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.time-slot-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}
.time-slot-btn.active-slot {
    background: #eef2ff;
    border-color: var(--accent-indigo);
    color: var(--accent-indigo);
}

.scheduler-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-group input, 
.form-group textarea {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition-smooth);
}
.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--accent-indigo);
}

/* Lead Modal */
.lead-card {
    max-width: 440px;
}
.lead-modal-content {
    padding: 32px;
}
.lead-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-bottom: 20px;
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 1023px) {
    .nav-menu {
        display: none;
    }
    .hero-title.font-heavy {
        font-size: 3.2rem;
    }
    .hero-actions-new {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-actions-new .btn {
        width: 100%;
        max-width: 340px;
    }
    
    .stats-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .icp-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-accordion {
        padding: 0 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
    }
    .modal-scheduler {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero-social-proof-pill {
        padding: 6px 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
    }
    .proof-text, .proof-rating {
        font-size: 0.72rem;
    }
    .hero-title.font-heavy {
        font-size: 2.5rem;
    }
    .icp-right-grid {
        grid-template-columns: 1fr;
    }
    .icp-main-title {
        font-size: 2.2rem;
    }
    .hide-mobile {
        display: none;
    }
    .flex-banner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .banner-separator {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ==========================================================================
   HERO 2-COLUMN LAYOUT AND COMPONENTS
   ========================================================================== */
.hero-section {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0) 70%),
        linear-gradient(rgba(9, 9, 11, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 9, 11, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 48px 48px, 48px 48px;
    position: relative;
    overflow: visible;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.hero-review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 9999px;
    padding: 6px 16px 6px 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}
.badge-avatars {
    display: flex;
}
.badge-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -10px;
    object-fit: cover;
}
.badge-avatars img:last-child {
    margin-right: 0;
}
.badge-info {
    display: flex;
    flex-direction: column;
}
.stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.stars-row .stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.stars-row .rating-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #09090b;
}
.badge-subtext {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* Title & Highlights */
.hero-title-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #09090b;
    margin-bottom: 16px;
}
.hero-title-main .purple-highlight {
    position: relative;
    display: inline-block;
}
.hero-title-main .highlight-text {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4f46e5;
}
.hero-title-main .purple-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='300' height='8' viewBox='0 0 300 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6C40 2.5 160 -1.5 298 5.5' stroke='%236366f1' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 100% 100%;
}

.hero-subtitle-new {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 580px;
}
.hero-subtitle-new .highlight-blue {
    color: #4f46e5;
    font-weight: 700;
}

/* Actions Row */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}
.btn-hero-primary {
    background: #6366f1;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    transition: var(--transition-smooth);
    animation: cta-pulse 2.2s infinite;
}
.btn-hero-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.5);
    animation: none;
    color: #ffffff;
}
.btn-hero-secondary {
    background: #ffffff;
    color: #09090b;
    border: 1px solid #e4e4e7;
    padding: 16px 28px;
    font-size: 1.02rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-secondary i {
    font-size: 0.85rem;
    color: #6366f1;
}
.btn-hero-secondary:hover {
    background: #f4f4f5;
    border-color: #d4d4d8;
    transform: translateY(-2px);
    color: #09090b;
}

/* Bullet Trust Row */
.hero-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
}
.trust-pill {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-pill i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Social media cards */
.hero-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.social-icon-card {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.social-icon-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}
.social-icon-card i.text-linkedin { color: #0077b5; }
.social-icon-card i.text-instagram { color: #e1306c; }
.social-icon-card i.text-youtube { color: #ff0000; }
.social-icon-card .text-x-svg { color: #000000; }
.social-icon-card i.text-tiktok { color: #000000; }


/* ==========================================================================
   HERO RIGHT: VIDEO STACK & CHECKLIST
   ========================================================================== */
.hero-right {
    position: relative;
    padding-right: 40px;
}
.showcase-stack-container {
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
}
.connecting-line-svg {
    position: absolute;
    left: 280px;
    top: 73px;
    z-index: 2;
    pointer-events: none;
}
.showcase-stack {
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    height: 420px;
}
.showcase-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offset backgrounds creating 3D depth */
.showcase-card.offset-left {
    left: -20px;
    width: 180px;
    height: 320px;
    z-index: 1;
    opacity: 0.45;
    transform: scale(0.9) rotate(-4deg);
    filter: blur(1.5px);
}
.showcase-card.offset-right {
    right: -20px;
    width: 180px;
    height: 320px;
    z-index: 1;
    opacity: 0.45;
    transform: scale(0.9) rotate(4deg);
    filter: blur(1.5px);
}
.showcase-card.main-center {
    left: 10px;
    width: 280px;
    height: 420px;
    z-index: 3;
    border: 2px solid #ffffff;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

/* Badge overlay inside central video */
.ai-twin-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 4;
}
.ai-twin-pill i {
    color: #a855f7;
    font-size: 0.7rem;
}
.center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    z-index: 4;
    transition: var(--transition-smooth);
}
.center-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #4f46e5;
}

/* Bottom card caption details */
.card-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 20px 16px 16px 16px;
    z-index: 4;
    display: flex;
    flex-direction: column;
}
.caption-text {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.views-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.progress-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar-fill {
    width: 65%;
    height: 100%;
    background: #ffffff;
}

/* Features checklist on the right side of stack */
.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 4;
    width: 280px;
}
.checklist-card {
    background: #ffffff;
    border: 1px solid #f4f4f5;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 52px;
    box-sizing: border-box;
}
.checklist-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.checklist-icon.purple {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.06);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.checklist-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #09090b;
}

/* Delivered hand arrow styles */
.delivered-hand-arrow {
    position: absolute;
    bottom: -40px;
    left: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.delivered-hand-arrow .arrow-text {
    font-family: 'Caveat', cursive;
    font-size: 1.45rem;
    color: #4f46e5;
    font-weight: 700;
    transform: rotate(-6deg);
    white-space: nowrap;
}
.hand-arrow-svg {
    margin-bottom: -4px;
    transform: none;
}


/* ==========================================================================
   STATS STRIP CARD (BOTTOM)
   ========================================================================== */
.hero-stats-container {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.stats-strip-new {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.stat-item-new {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-item-new.mt-sep {
    width: 1px;
    height: 40px;
    background: #e4e4e7;
}
.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.stat-icon-wrapper.purple {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
}
.stat-icon-wrapper.green {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}
.stat-icon-wrapper.blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}
.stat-icon-wrapper.orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}
.stat-icon-wrapper.pink {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}
.stat-text-wrapper {
    display: flex;
    flex-direction: column;
}
.stat-number-new {
    font-size: 1.55rem;
    font-weight: 800;
    color: #09090b;
    line-height: 1.1;
}
.stat-label-new {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-title-main {
        font-size: 3.2rem;
    }
    .hero-subtitle-new {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }
    .hero-trust-row {
        justify-content: center;
    }
    .hero-social-row {
        justify-content: center;
    }
    .showcase-stack-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .features-checklist {
        width: 100%;
        max-width: 320px;
    }
    .delivered-hand-arrow, .connecting-line-svg {
        display: none;
    }
    .stats-strip-new {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 24px;
        max-width: 340px;
        margin: 0 auto;
    }
    .stat-item-new.mt-sep {
        display: none;
    }
    .stat-item-new {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    .showcase-stack {
        width: 240px;
        height: 340px;
    }
    .showcase-card.main-center {
        width: 220px;
        height: 340px;
    }
    .showcase-card.offset-left {
        width: 140px;
        height: 260px;
        left: -10px;
    }
    .showcase-card.offset-right {
        width: 140px;
        height: 260px;
        right: -10px;
    }
}

/* Sticky Demo Banner */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}
.sticky-banner.hide {
    transform: translateY(100%);
    pointer-events: none;
}
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    position: relative;
}
.banner-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e4e4e7;
    font-size: 0.92rem;
    font-weight: 500;
}
.banner-text strong {
    color: #ffffff;
    font-weight: 700;
}
.btn-banner-cta {
    background: #6366f1;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}
.btn-banner-cta:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
.banner-close-btn {
    background: none;
    border: none;
    color: #71717a;
    font-size: 1.35rem;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.banner-close-btn:hover {
    color: #ffffff;
}

/* Mobile responsive sticky banner */
@media (max-width: 767px) {
    .sticky-banner {
        padding: 10px 16px;
    }
    .banner-content {
        gap: 12px;
        justify-content: space-between;
    }
    .banner-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .btn-banner-cta {
        padding: 6px 14px;
        font-size: 0.78rem;
    }
    .banner-close-btn {
        font-size: 1.2rem;
        padding: 2px 4px;
    }
}

/* Blog Modal Styles */
.blog-modal-card {
    max-width: 680px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: 90vh;
    width: 100%;
}
.blog-modal-content-area {
    padding: 40px;
}
.blog-modal-header {
    margin-bottom: 20px;
}
.blog-modal-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.blog-modal-title {
    font-size: 1.85rem;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 800;
}
.blog-modal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-modal-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}
.blog-modal-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}
.blog-modal-body h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px 0;
    color: var(--text-primary);
}
.blog-modal-body p {
    margin-bottom: 16px;
}
.blog-modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}
.blog-modal-body li {
    margin-bottom: 8px;
}
@media (max-width: 576px) {
    .blog-modal-content-area {
        padding: 24px;
    }
    .blog-modal-title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   ONBOARDING MULTI-STEP FORM MODAL
   ========================================================================== */
.onboarding-card {
    max-width: 580px;
    width: 100%;
    background: #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 0 !important;
}

.onboarding-modal-content {
    padding: 24px 32px;
}

@media (max-width: 576px) {
    .onboarding-modal-content {
        padding: 20px 16px;
    }
}

/* Progress bar header styling */
.onboarding-progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.progress-segment {
    flex: 1;
    height: 4px;
    background: #f1f1f4;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.progress-segment.active {
    background: #6366f1; /* Main indigo brand color */
}

/* Step contents styling */
.onboarding-step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.onboarding-step.hide {
    display: none !important;
}

.step-badge-indicator {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #6366f1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.55rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-align: left;
}

.step-title .highlight-italics {
    font-style: italic;
    color: #6366f1;
    font-weight: 400;
}

.step-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.45;
    margin-bottom: 16px;
    text-align: left;
}

/* Input Fields styling */
.onboarding-field-group {
    margin-bottom: 12px;
    text-align: left;
}

.onboarding-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.required-star {
    color: #ef4444;
    margin-left: 2px;
}

.onboarding-input,
.onboarding-textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: #1f2937;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.onboarding-input:focus,
.onboarding-textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.onboarding-textarea {
    resize: none;
    height: 75px;
    line-height: 1.4;
}

/* Action button configurations */
.onboarding-actions-single {
    margin-top: 20px;
}

.onboarding-actions-split {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-onboarding-next,
.btn-onboarding-submit {
    flex: 1;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-onboarding-next:hover:not(:disabled),
.btn-onboarding-submit:hover:not(:disabled) {
    background: #4f46e5;
    box-shadow: 0 3px 8px rgba(99, 102, 241, 0.25);
}

.btn-onboarding-next:disabled,
.btn-onboarding-submit:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

.btn-onboarding-back {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.btn-onboarding-back:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Step 2 Specific UI Styles */
.onboarding-instructions-box {
    background: #fbfbf9;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: left;
}

.onboarding-instructions-box .box-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.onboarding-instructions-box .box-list {
    margin: 0;
    padding-left: 14px;
    list-style-type: disc;
}

.onboarding-instructions-box .box-list li {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.45;
    margin-bottom: 4px;
}

.onboarding-upload-box {
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    background: #fafafa;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.onboarding-upload-box.dragover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.02);
}

.upload-icon-container {
    font-size: 1.6rem;
    color: #4b5563;
    margin-bottom: 6px;
}

.upload-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.upload-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.custom-file-upload-btn-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.real-file-input {
    display: none;
}

.btn-custom-file {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.btn-custom-file:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.file-chosen-text {
    font-size: 0.78rem;
    color: #4b5563;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video consent styling */
.onboarding-consent-box {
    display: flex;
    gap: 12px;
    background: #eef2ff;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    text-align: left;
}

.consent-icon {
    font-size: 1rem;
    color: #4f46e5;
    background: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.06);
    flex-shrink: 0;
}

.consent-text-wrap {
    display: flex;
    flex-direction: column;
}

.consent-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 1px;
}

.consent-desc {
    font-size: 0.74rem;
    color: #4f46e5;
    line-height: 1.35;
}

/* Step 3 Specific UI Styles */
.channel-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 6px;
}

.channel-option {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.channel-option:hover {
    border-color: #6366f1;
    background: #fbfbfe;
}

.channel-option.active {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.channel-icon {
    font-size: 1.15rem;
}

.text-indigo { color: #6366f1; }
.text-green { color: #22c55e; }
.text-blue { color: #3b82f6; }
.text-purple { color: #a855f7; }

.channel-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.onboarding-value-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: #eef2ff;
    border-radius: 8px;
    padding: 8px;
    margin-top: 14px;
}

.val-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4f46e5;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 480px) {
    .channel-select-grid {
        grid-template-columns: 1fr;
    }
}

