/* 
-----------------------------
DESIGN SYSTEM
-----------------------------
- **Fonts**:
  - Headings: 'Manrope', sans-serif
  - Body: 'Inter', sans-serif

- **Colors**:
  - Primary (Charcoal): #1a1a1a
  - Background (Light): #fdfdfd
  - Accent (Electric Blue): #0052ff
  - Accent (Highlight Green): #00f5a0
  - Text (Body): #333333
  - Text (Muted): #666666
  - Borders: #e0e0e0

- **Layout**:
  - Container width: 1140px max
  - Spacing unit: 1rem (16px)
  - Mobile-first breakpoints:
    - Tablet: 768px
    - Desktop: 1024px
-----------------------------
*/

:root {
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --color-primary: #1a1a1a;
    --color-background: #fdfdfd;
    --color-accent: #0052ff;
    --color-accent-green: #00f5a0;
    --color-text-body: #333;
    --color-text-muted: #666;
    --color-border: #e0e0e0;
    --color-white: #fff;

    --container-width: 1140px;
    --spacing-unit: 1rem;
    
    --header-height: 40px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
    background: linear-gradient(135deg, var(--color-background) 0%, #f8f9fa 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Floating particles background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 82, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 800;
}

h1 { 
    font-size: 2.5rem; 
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { 
    font-size: 2rem;
    position: relative;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 1.5);
}

section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

/* 
-----------------------------
PROGRESS INDICATOR
-----------------------------
*/
.progress-indicator-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1000;
}

.progress-indicator-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-green));
    width: 0%;
    transition: width 0.1s ease;
}

/* 
-----------------------------
FOMO ELEMENTS
-----------------------------
*/
.viewer-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.viewer-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.availability-banner {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.95), rgba(255, 69, 0, 0.95));
    color: var(--color-white);
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.availability-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.availability-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.availability-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent-green);
    border-radius: 3px;
    transition: width 0.3s ease;
    animation: pulse-fill 3s infinite;
}

@keyframes pulse-fill {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.availability-count {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Adjust body padding to account for fixed banner */
body {
    padding-top: 40px;
}

/* 
-----------------------------
STICKY ELEMENTS
-----------------------------
*/
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent-green), #00e08f);
    box-shadow: 0 -4px 20px rgba(0, 245, 160, 0.3);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 1rem;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: rgba(26, 26, 26, 0.1);
    transform: scale(1.02);
}

.sticky-cta-text {
    font-size: 1.1rem;
}

.sticky-cta-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1002;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s infinite;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.countdown-bar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: white;
    z-index: 998;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.3);
}

.countdown-bar.show {
    transform: translateY(0);
}

.countdown-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.countdown-bar-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown-bar-timer {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Hide sticky elements on larger screens where they're not needed */
@media (min-width: 1024px) {
    .sticky-cta {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
    }
}


/* 
-----------------------------
1. ANNOUNCEMENT BAR
-----------------------------
*/
.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#countdown-timer {
    font-weight: 800;
    color: var(--color-accent-green);
    font-size: 1.6rem;
    text-shadow: 
        0 0 15px rgba(0, 245, 160, 0.9),
        0 0 30px rgba(0, 245, 160, 0.6),
        0 0 45px rgba(0, 245, 160, 0.3);
    animation: mega-pulse 2s ease-in-out infinite;
}

@keyframes mega-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 15px rgba(0, 245, 160, 0.9),
            0 0 30px rgba(0, 245, 160, 0.6),
            0 0 45px rgba(0, 245, 160, 0.3);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 
            0 0 25px rgba(0, 245, 160, 1),
            0 0 50px rgba(0, 245, 160, 0.8),
            0 0 75px rgba(0, 245, 160, 0.5);
    }
}

/* 
-----------------------------
2. HERO SECTION
-----------------------------
*/
.hero-section {
    text-align: center;
    padding-top: calc(var(--spacing-unit) * 5);
    padding-bottom: calc(var(--spacing-unit) * 5);
    position: relative;
}

.hero-section h1 {
    margin: 0 auto 1rem;
    line-height: 1.1;
}

.hero-section .subhead {
    font-size: 1.15rem;
    max-width: 50ch;
    margin: 0 auto 1rem;
    color: var(--color-text-muted);
}

.hero-section .micro-trust {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.scroll-incentive {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background: var(--color-background);
    color: var(--color-text-body);
    font-weight: 600;
    transition: all 0.2s ease;
}

.scroll-incentive:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.section-previews {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.section-previews a {
    color: var(--color-text-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-previews a:hover {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

/* 
-----------------------------
3. SOCIAL PROOF
-----------------------------
*/
.social-proof-section {
    padding-top: 0;
    padding-bottom: 3rem;
    text-align: center;
}
.social-proof-section p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}
.logos-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 15s linear infinite;
}

.logos-container img {
    max-height: 30px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s ease;
}
.logos-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 
-----------------------------
4. CASE STUDY SECTION
-----------------------------
*/
.case-study-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.case-study-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.5"/><circle cx="90" cy="20" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="50" cy="80" r="1" fill="%23e2e8f0" opacity="0.4"/></svg>') repeat;
    pointer-events: none;
}

.case-study-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.case-study-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.case-study-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.case-study-intro {
    margin-bottom: 3rem;
}

.product-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(51, 65, 85, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.product-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Creative Showcase - Horizontal Scrolling Carousel */
.creative-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.creative-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.creative-label {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(51, 65, 85, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.creative-label .angle-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.creative-label h4 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.creative-label p {
    display: none; /* Hide description to keep it simple */
}

/* Remove icons to keep it simple */
.creative-label .label-icon {
    display: none;
}

.creative-strip {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    height: 120px;
}

.creative-slide {
    display: flex;
    gap: 1rem;
    height: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* Different scroll speeds for each row */
.creative-row[data-speed="slow"] .creative-slide {
    animation: scrollSlow 60s infinite linear;
}

.creative-row[data-speed="medium-slow"] .creative-slide {
    animation: scrollMediumSlow 45s infinite linear;
}

.creative-row[data-speed="medium"] .creative-slide {
    animation: scrollMedium 35s infinite linear;
}

.creative-row[data-speed="fast"] .creative-slide {
    animation: scrollFast 25s infinite linear;
}

.creative-slide img {
    height: 100%;
    width: auto;
    min-width: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.creative-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

/* Pause animation on hover */
.creative-row:hover .creative-slide {
    animation-play-state: paused;
}

/* Scroll animations */
@keyframes scrollSlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollMediumSlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollMedium {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollFast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Results Summary */
.results-summary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.results-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

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

.results-icon {
    font-size: 2rem;
}

.results-header h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

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

.winning-angle,
.runner-up {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.winner-badge,
.runner-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.winner-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
}

.runner-badge {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.winning-angle p,
.runner-up p {
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.winning-angle p:first-of-type,
.runner-up p:first-of-type {
    color: white;
    font-weight: 600;
}

.case-study-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

/* Mobile Responsive */

@media screen and (max-width: 465px) {
    body{
        padding-top: 76.79px;
    }
}
@media (max-width: 768px) {
    .case-study-section {
        padding: 3rem 0;
    }
    
    .case-study-header h2 {
        font-size: 2rem;
    }
    
    .creative-showcase {
        gap: 1.5rem;
    }
    
    .creative-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .creative-label {
        width: 100%;
        height: 80px;
        padding: 0.75rem;
    }
    
    .creative-label h4 {
        font-size: 0.75rem;
    }
    
    .creative-label .angle-number {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.625rem;
        margin-bottom: 0.25rem;
    }
    
    .creative-strip {
        height: 80px;
    }
    
    .creative-slide img {
        min-width: 100px;
        height: 80px;
    }
    
    /* Faster animations on mobile for better UX */
    .creative-row[data-speed="slow"] .creative-slide {
        animation: scrollSlow 40s infinite linear;
    }
    
    .creative-row[data-speed="medium-slow"] .creative-slide {
        animation: scrollMediumSlow 30s infinite linear;
    }
    
    .creative-row[data-speed="medium"] .creative-slide {
        animation: scrollMedium 25s infinite linear;
    }
    
    .creative-row[data-speed="fast"] .creative-slide {
        animation: scrollFast 20s infinite linear;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .case-study-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* 
-----------------------------
5. PROBLEM -> PROMISE
-----------------------------
*/
.problem-promise-section {
    text-align: center;
}

.problem-promise-section h2 {
    margin-bottom: 3rem;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--color-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

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

.problem-promise-section ul {
    margin: 0 auto 2rem;
    max-width: 60ch;
}

.problem-promise-section li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.visual-chart {
    max-width: 600px;
    margin: 2rem auto 0;
    /* Placeholder styles */
    border: 1px solid var(--color-border);
    padding: 1rem;
    border-radius: 8px;
}

/* 
-----------------------------
5. WHAT YOU GET
-----------------------------
*/
.what-you-get-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.what-you-get-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.value-props-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.value-props-grid .card {
    padding: 2.5rem;
    border: none;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 0 20px rgba(0, 82, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.value-props-grid .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-props-grid .card:hover {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 0 40px rgba(0, 82, 255, 0.1);
}

.value-props-grid .card:hover::before {
    transform: scaleX(1);
}

.value-props-grid .card img {
    height: 50px;
    margin: 0 auto 1.5rem;
}

.value-props-grid .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

/* 
-----------------------------
6. HOW IT WORKS
-----------------------------
*/
.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.stepper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Horizontal connecting line */
.stepper::before {
    content: '';
    position: absolute;
    left: -100px;
    right: -100px;
    top: 32px;
    height: 3px;
    background: #334155;
    border-radius: 2px;
    z-index: -1;
}

.step {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 4rem 1.5rem 2rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

/* Step number circles */
.step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #334155;
    border: none;
    box-shadow: 0 4px 12px rgba(51, 65, 85, 0.15);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.step:hover::before {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(51, 65, 85, 0.25);
}

.step:nth-child(1)::before { content: '1'; }
.step:nth-child(2)::before { content: '2'; }
.step:nth-child(3)::before { content: '3'; }
.step:nth-child(4)::before { content: '4'; }
.step:nth-child(5)::before { content: '5'; }

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step p {
    font-size: 1rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Mobile: Stack vertically */
@media (max-width: 767px) {
    .stepper {
        flex-direction: column;
        gap: 3rem;
        max-width: 600px;
    }
    
    .stepper::before {
        left: 2rem;
        right: auto;
        top: 4rem;
        bottom: 4rem;
        width: 3px;
        height: auto;
        background: #334155;
        border-radius: 2px;
    }
    
    .step {
        text-align: left;
        padding: 2rem 2rem 2rem 5rem;
    }
    
    .step::before {
        left: 0;
        top: 2rem;
        transform: none;
    }
}


/* 
-----------------------------
7. DELIVERABLES
-----------------------------
*/
.deliverables-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}
.deliverables-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.deliverables-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-daily {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 999px;
    vertical-align: middle;
}
.content-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
.checklist {
    font-size: 1.1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.checklist li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-green);
    font-weight: 700;
}
.report-preview img {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(30,58,138,0.18);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-preview img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.report-caption { display: none; }

/* 
-----------------------------
8. LINKEDIN TESTIMONIALS
-----------------------------
*/
.linkedin-testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--color-white) 100%);
    position: relative;
}

.linkedin-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230052ff' fill-opacity='0.02'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.linkedin-testimonials-section .container {
    position: relative;
    z-index: 1;
}

.linkedin-testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text-dark);
    font-size: 2.5rem;
    font-weight: 800;
}

.linkedin-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.linkedin-testimonial {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 0 20px rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.linkedin-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077b5, #00a0dc);
    z-index: 1;
}

.linkedin-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 0 40px rgba(0, 82, 255, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

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

.linkedin-testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 0.25rem 0;
}

.author-info span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077b5;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.linkedin-link:hover {
    background: #005885;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* 
-----------------------------
9. PRICING & SCARCITY
-----------------------------
*/
.savings-highlight {
    text-align: center;
    margin-bottom: 2rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: savings-pulse 3s infinite;
}

@keyframes savings-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.social-proof-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 160, 0.1), rgba(0, 82, 255, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 160, 0.2);
}

.live-counter {
    text-align: center;
}

.counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent-green);
    animation: counter-pulse 2s ease-in-out infinite;
}

@keyframes counter-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.counter-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.cohort-limit {
    text-align: center;
}

.limit-text {
    display: block;
    font-weight: 600;
    color: var(--color-text-body);
    margin-bottom: 0.25rem;
}

.spots-left {
    display: block;
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 700;
}


.price-urgency {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.urgency-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4500;
    margin-bottom: 0.5rem;
}

.price-countdown {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff4500;
}

.price-breakdown {
    text-align: center;
    margin: 1rem 0;
}

.per-day {
    background: rgba(0, 82, 255, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.emi-options {
    background: rgba(0, 245, 160, 0.05);
    border: 1px solid rgba(0, 245, 160, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.emi-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.emi-label {
    font-weight: 600;
    color: var(--color-text-body);
}

.emi-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-accent-green);
}

.emi-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.value-comparison {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 82, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item.highlight {
    background: rgba(0, 245, 160, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.comparison-label {
    font-size: 0.95rem;
}

.comparison-value {
    font-weight: 700;
    color: var(--color-accent);
}
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    background: var(--color-white);
}
.price-anchor {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}
.price-anchor .strikethrough {
    text-decoration: line-through;
}
.offer-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.price-desc {
    font-weight: 600;
}
.scarcity {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

@keyframes glow {
    0% { text-shadow: 0 0 8px rgba(0, 245, 160, 0.7); }
    50% { text-shadow: 0 0 16px rgba(0, 245, 160, 1); }
    100% { text-shadow: 0 0 8px rgba(0, 245, 160, 0.7); }
}

#countdown-timer-pricing {
    background: linear-gradient(45deg, var(--color-primary), #2d3748);
    color: var(--color-accent-green);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-align: center;
    border: 2px solid rgba(0, 245, 160, 0.3);
    box-shadow: 
        0 0 30px rgba(0, 245, 160, 0.4),
        inset 0 0 20px rgba(0, 245, 160, 0.1);
    animation: mega-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

#countdown-timer-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 160, 0.1), transparent);
    animation: shimmer-timer 3s linear infinite;
}

@keyframes mega-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(0, 245, 160, 0.4),
            inset 0 0 20px rgba(0, 245, 160, 0.1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 50px rgba(0, 245, 160, 0.6),
            0 0 100px rgba(0, 245, 160, 0.3),
            inset 0 0 30px rgba(0, 245, 160, 0.2);
    }
}

@keyframes shimmer-timer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* 
-----------------------------
10. FAQ
-----------------------------
*/
.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-grid details {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}
.faq-grid details:first-child {
    border-top: 1px solid var(--color-border);
}
.faq-grid summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    position: relative;
    padding-right: 2rem;
}
.faq-grid summary::-webkit-details-marker {
    display: none;
}
.faq-grid summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.2s;
}
.faq-grid details[open] summary::after {
    transform: rotate(45deg);
}
.faq-grid details p {
    margin-top: 1rem;
    padding-left: 0.5rem;
    color: var(--color-text-muted);
}

/* 
-----------------------------
11. FINAL CTA
-----------------------------
*/
.final-cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}
.final-cta-section h2 {
    color: var(--color-white);
}
.final-cta-section p {
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.8);
}
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-accent-green), #00e08f, var(--color-accent-green));
    background-size: 200% 200%;
    color: var(--color-primary);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem 0;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 245, 160, 0.4),
        0 0 40px rgba(0, 245, 160, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 15px 40px rgba(0, 245, 160, 0.6),
        0 0 60px rgba(0, 245, 160, 0.4);
    color: var(--color-primary);
}

.cta-button:hover::before {
    left: 100%;
}
.micro-text {
    font-size: 0.9rem;
}
.countdown-final {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-accent-green);
    animation: glow 2.5s infinite ease-in-out;
    animation-delay: 0.5s; /* Stagger the animation */
}
.final-logos {
    margin-top: 3rem;
    opacity: 0.8;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
}
.final-logos .logos-slide {
    animation-direction: reverse; /* Scroll in the other direction */
}
.final-logos img {
    max-height: 25px;
    filter: invert(100%) grayscale(100%) brightness(2);
}

/* 
-----------------------------
FOOTER
-----------------------------
*/
.site-footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}


/* 
-----------------------------
ANIMATION STYLES
-----------------------------
*/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delay for card elements */
.value-props-grid .card:nth-child(2) { transition-delay: 0.1s; }
.value-props-grid .card:nth-child(3) { transition-delay: 0.2s; }
.value-props-grid .card:nth-child(4) { transition-delay: 0.3s; }

.linkedin-testimonials-grid .linkedin-testimonial:nth-child(2) { transition-delay: 0.1s; }
.linkedin-testimonials-grid .linkedin-testimonial:nth-child(3) { transition-delay: 0.2s; }

.stepper .step:nth-child(1) { transition-delay: 0.1s; }
.stepper .step:nth-child(2) { transition-delay: 0.2s; }
.stepper .step:nth-child(3) { transition-delay: 0.3s; }
.stepper .step:nth-child(4) { transition-delay: 0.4s; }
.stepper .step:nth-child(5) { transition-delay: 0.5s; }

/* 
-----------------------------
MEDIA QUERIES (TABLET+)
-----------------------------
*/
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    section {
        padding: calc(var(--spacing-unit) * 5) 0;
    }

    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-split {
        grid-template-columns: repeat(2, 1fr);
    }
    .linkedin-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .stepper {
        max-width: 1200px;
        gap: 2rem;
    }
    
    .step {
        padding: 4.5rem 2rem 2.5rem;
    }
    
    .step::before {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.4rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 1rem;
    }

}

/* 
-----------------------------
MEDIA QUERIES (DESKTOP+)
-----------------------------
*/
@media (min-width: 1024px) {
    h1 { font-size: 4rem; }
    
    .value-props-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .linkedin-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }


    .logos-container {
        gap: 4rem;
    }
    .logos-container img {
        max-height: 40px;
    }
}
