/* 
 * Gamer Premium CSS Design System - Senior UI/UX & CRO Overhaul 
 * Inspired by Razer, NVIDIA, and high-end hardware interfaces.
 */

:root {
    --bg-dark: #050505;
    --card-bg: #0c0c0c;
    --border-color: #161616;
    --border-hover: #262626;
    --neon-green: #00FF66;
    --neon-green-glow: rgba(0, 255, 102, 0.4);
    --neon-green-dim: rgba(0, 255, 102, 0.08);
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-dim: #52525b;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & scrollbar styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #18181b;
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Page wrappers & layouts */
.header-wrapper {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Canvas background dust overlay */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ambient glows */
.glow-spot {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(160px);
    opacity: 0.15;
}

.spotlight-left {
    top: -10vw;
    left: -10vw;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
}

.spotlight-right {
    bottom: -15vw;
    right: -10vw;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.6) 0%, transparent 70%);
}

/* 1. Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.header-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green);
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* 2. Hero Section */
.hero-section {
    padding: 50px 0 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
    width: 100%;
}

.tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-green);
    margin-bottom: 12px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.text-neon {
    color: var(--neon-green);
}

.glow-text {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
}

.hero-subheadline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.price-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0b0b0b;
    border: 1px solid #18181b;
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.badge-prefix {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.cta-block {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

/* CRO Button WhatsApp */
.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    background-color: var(--neon-green);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 20px 28px;
    border-radius: 4px;
    box-shadow: 0 4px 25px rgba(0, 255, 102, 0.25);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.primary-cta span {
    z-index: 5;
}

.whatsapp-svg {
    z-index: 5;
}

/* Button glare hover effect */
.primary-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 25%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.65s;
    z-index: 1;
}

.primary-cta:hover::after {
    left: 130%;
    transition: 0.65s ease-in-out;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 102, 0.5);
    background-color: #00e65c;
}

.hero-trust-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.bullet-check {
    color: var(--neon-green);
    font-weight: 700;
}

/* Hero Showcase Frame (Razer Aesthetic) */
.hero-graphic-area {
    display: flex;
    justify-content: center;
    width: 100%;
}

.obsidian-showcase-frame {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    overflow: hidden;
    transition: var(--transition-normal);
}

.obsidian-showcase-frame:hover {
    border-color: rgba(0, 255, 102, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.9), 0 0 20px rgba(0, 255, 102, 0.03);
}

.hero-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
    object-fit: cover;
}

/* Vertical Laser Scan effect */
.laser-scanner {
    position: absolute;
    top: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--neon-green) 50%, transparent 100%);
    box-shadow: 0 0 6px var(--neon-green-glow);
    z-index: 10;
    pointer-events: none;
    animation: scanLine 6s linear infinite;
}

@keyframes scanLine {
    0% { top: 12px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: calc(100% - 46px); opacity: 0; }
}

.showcase-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 12px;
}

.glow-indicator {
    width: 5px;
    height: 5px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-green);
    animation: glowBreath 2s ease-in-out infinite;
}

@keyframes glowBreath {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.caption-text {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray);
}

/* 3. Section Headers & Layouts */
.section-title-tag {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
    text-transform: uppercase;
    text-align: center;
}

/* Light Section Styles (Alternating) */
.light-section {
    background-color: #ffffff !important;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
}

.light-section .section-subtitle {
    color: #0c0c0c !important;
}

.light-section .benefit-card {
    background-color: #ffffff !important;
    border: 1px solid #e4e4e7 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.light-section .benefit-card:hover {
    border-color: rgba(0, 255, 102, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-section .benefit-title {
    color: #0c0c0c !important;
}

.light-section .benefit-text {
    color: #52525b !important;
}

.light-section .about-heading-accent {
    color: #0c0c0c !important;
    text-shadow: none !important;
}

.light-section .about-paragraph {
    color: #4b5563 !important;
}

.light-section .founder-card {
    background: #f8f8fa !important;
    border: 1px solid #e4e4e7 !important;
}

.light-section .founder-card:hover {
    border-color: rgba(0, 255, 102, 0.3) !important;
    background: rgba(0, 255, 102, 0.01) !important;
}

.light-section .founder-name {
    color: #0c0c0c !important;
}

.light-section .founder-title {
    color: #71717a !important;
}

.light-section .card-icon-wrapper {
    background: rgba(0, 255, 102, 0.03) !important;
    border: 1px solid rgba(0, 255, 102, 0.15) !important;
}

/* 4. Benefits Section */
.benefits-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 32px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon-wrapper {
    background: rgba(0, 255, 102, 0.04);
    border: 1px solid rgba(0, 255, 102, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* 5. Social Proof (Stats) */
.social-proof-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}

.stat-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

/* 6. Deliveries & Winners Grid */
.deliveries-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.deliveries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.delivery-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.delivery-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.delivery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 12;
    overflow: hidden;
    background-color: #080808;
    border-bottom: 1px solid var(--border-color);
}

.delivery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.delivery-card:hover .delivery-img {
    transform: scale(1.03);
}

.delivery-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 255, 102, 0.15);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-details {
    padding: 24px;
}

.delivery-winner {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.winner-city {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-left: 6px;
}

.delivery-prize {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.delivery-prize strong {
    color: var(--text-white);
}

.delivery-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--neon-green);
    font-weight: 600;
}

/* 7. Quem Somos (About Section) */
.about-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.ig-card-container {
    width: 100%;
}

/* Instagram Card Mimic */
.instagram-card-mock {
    background-color: #0c0c0c;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.ig-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.ig-avatar-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-green) 0%, rgba(0, 255, 102, 0.2) 100%);
    box-shadow: 0 0 6px rgba(0, 255, 102, 0.2);
}

.ig-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-dark);
}

.ig-user-details {
    display: flex;
    flex-direction: column;
}

.ig-user-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-user-handle {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
}

.ig-verify-icon {
    display: block;
}

.ig-full-name {
    font-size: 0.8rem;
    color: var(--text-white);
    font-weight: 500;
    margin-top: 1px;
}

.ig-niche {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.ig-card-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 0;
    margin-bottom: 14px;
}

.ig-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.ig-stat-val {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-white);
}

.ig-stat-lbl {
    font-size: 0.6rem;
    color: var(--text-gray);
}

.ig-card-bio {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-gray);
    margin-bottom: 18px;
}

.ig-card-bio p {
    margin-bottom: 3px;
}

.ig-link-text {
    color: var(--neon-green);
    font-weight: 600;
    margin-top: 4px;
}

.ig-btn {
    display: block;
    width: 100%;
    background-color: #0095f6;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 9px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-fast);
}

.ig-btn:hover {
    background-color: #1877f2;
}

/* About Text Description column */
.about-text-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-heading-accent {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--neon-green);
    margin-bottom: 16px;
}

.about-paragraph {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.founders-team {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.founder-card:hover {
    border-color: rgba(0, 255, 102, 0.1);
    background: rgba(0, 255, 102, 0.01);
}

.founder-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d0d0d;
    border: 1px solid rgba(0, 255, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-badge {
    color: var(--neon-green);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
}

.founder-meta {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-white);
}

.founder-title {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* 8. Final CTA Banner Card */
.final-cta-section {
    padding: 60px 0;
}

.cta-banner-card {
    position: relative;
    background-color: #0b0b0b;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.03) 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.final-cta-headline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.final-cta-subtext {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

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

/* 9. Scrolling Ticker */
.live-status-ticker {
    width: 100%;
    overflow: hidden;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 12px 0;
    margin-bottom: 40px;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: infiniteScroll 25s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.t-indicator {
    width: 4px;
    height: 4px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--neon-green);
}

@keyframes infiniteScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* 10. Footer */
.main-footer {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.main-footer p {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.footer-alert {
    margin-top: 8px;
}

/* 11. Live join Toast */
.live-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar-ring {
    background-color: rgba(0, 255, 102, 0.05);
    color: var(--neon-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 102, 0.15);
}

.toast-body {
    display: flex;
    flex-direction: column;
}

.toast-txt {
    font-size: 0.8rem;
    color: var(--text-white);
}

.toast-txt strong {
    color: var(--neon-green);
}

.toast-sub {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 1px;
}

.toast-dismiss {
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1.1rem;
    padding-left: 4px;
    line-height: 1;
}

.toast-dismiss:hover {
    color: var(--text-white);
}

/* 12. Media Queries (Desktop Viewports) */
@media (min-width: 768px) {
    .hero-section {
        padding: 80px 0 100px 0;
    }

    .hero-headline {
        font-size: 3.5rem;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subheadline {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .price-badge-row {
        margin-bottom: 28px;
    }

    .cta-block {
        margin-bottom: 28px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-grid {
        grid-template-columns: 1fr 1.25fr;
        gap: 60px;
    }

    .founders-team {
        flex-direction: row;
    }
    
    .founder-card {
        flex: 1;
    }

    .cta-banner-card {
        padding: 60px 40px;
    }

    .final-cta-headline {
        font-size: 2rem;
    }

    .final-cta-subtext {
        font-size: 0.95rem;
    }
    
    .primary-cta {
        width: auto;
        padding: 20px 40px;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
}
