/* ============================================
   Whacha Landing Page - Enhanced Design
   ============================================ */

/* CSS Variables - Whacha Green Theme */
:root {
    --dark-teal: #025A41;
    --soft-green: #61B27F;
    --light-mint: #ADD298;
    --muted-teal: #36835D;
    --off-white: #F7F7E2;
    
    /* Extended palette */
    --bg-sky: linear-gradient(180deg, #d4f5e9 0%, #b8edd8 25%, #8fe0c0 50%, #6dd5ad 75%, #4eca9a 100%);
    --bg-light: #f0faf5;
    --bg-dark: #0a2e23;
    --text-dark: #0a2e23;
    --text-muted: #4a7c6a;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(2, 90, 65, 0.08);
    --shadow-medium: 0 8px 40px rgba(2, 90, 65, 0.12);
    --shadow-strong: 0 20px 60px rgba(2, 90, 65, 0.15);
    --shadow-glow: 0 0 40px rgba(97, 178, 127, 0.4);
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-sky);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Hide the dark bg-gradient from common.css on landing page */
body.landing-page .bg-gradient {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Animated Background Shapes
   ============================================ */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--light-mint);
    top: -100px;
    left: -100px;
    animation: floatSlow 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--soft-green);
    top: 20%;
    right: -50px;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--dark-teal);
    bottom: 30%;
    left: 10%;
    animation: floatSlow 18s ease-in-out infinite;
    animation-delay: -5s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--off-white);
    bottom: -50px;
    right: 20%;
    animation: floatSlow 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 150px;
    height: 150px;
    background: var(--muted-teal);
    top: 50%;
    left: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.blob {
    position: absolute;
    opacity: 0.3;
    filter: blur(80px);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--soft-green) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--light-mint) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(10px, -10px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

/* ============================================
   Floating Navigation
   ============================================ */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 900px;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 10px 10px 10px 20px;
    box-shadow: var(--shadow-medium), 0 0 0 1px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.nav-pill:hover {
    box-shadow: var(--shadow-strong), 0 0 0 1px rgba(255,255,255,0.8);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-right: auto;
}

.logo-icon {
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-teal);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--dark-teal);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 178, 127, 0.4);
}

.nav-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.nav-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark-teal);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Floating emoji icons */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.6;
    animation: floatIcon 6s ease-in-out infinite;
}

.float-1 { top: 15%; left: 8%; animation-delay: 0s; }
.float-2 { top: 25%; right: 12%; animation-delay: -1s; }
.float-3 { top: 60%; left: 5%; animation-delay: -2s; }
.float-4 { bottom: 25%; right: 8%; animation-delay: -3s; }
.float-5 { top: 40%; left: 15%; animation-delay: -4s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Animation classes */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* Social proof - enhanced */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 60px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--soft-green), var(--dark-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--dark-teal);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: -1px;
}

.rating {
    color: var(--dark-teal);
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0;
}

.tagline {
    color: var(--text-muted);
    font-size: 13px;
}

/* Headline - animated lines */
.hero-headline {
    margin-bottom: 24px;
}

.hero-headline .line {
    display: block;
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    text-shadow: 0 4px 30px rgba(2, 90, 65, 0.2);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    animation: lineReveal 0.6s ease forwards;
}

.line-1 { animation-delay: 0.1s; }
.line-2 { animation-delay: 0.2s; }
.line-3 { animation-delay: 0.3s; }

@keyframes lineReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-headline .highlight {
    background: linear-gradient(135deg, #0a3d2e 0%, var(--dark-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* CTA Buttons - enhanced */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(97, 178, 127, 0.4);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(97, 178, 127, 0.3);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-teal);
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-icon {
    font-size: 18px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.badge-item svg {
    color: var(--soft-green);
}

/* Phone mockup - enhanced */
.hero-phone {
    flex: 0 0 340px;
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(97, 178, 127, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: phonePulse 4s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.phone-frame {
    width: 290px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 45px;
    padding: 12px;
    box-shadow: var(--shadow-strong), 0 0 0 4px rgba(255,255,255,0.1), inset 0 0 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* WhatsApp UI - enhanced */
.wa-header {
    background: var(--dark-teal);
    padding: 50px 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.wa-back {
    font-size: 18px;
    opacity: 0.8;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--soft-green), var(--muted-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wa-avatar.pulse {
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(97, 178, 127, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(97, 178, 127, 0); }
}

.wa-info {
    flex: 1;
}

.wa-name {
    font-weight: 600;
    font-size: 16px;
}

.wa-status {
    font-size: 12px;
    opacity: 0.8;
}

.wa-actions {
    display: flex;
    gap: 16px;
    font-size: 18px;
    opacity: 0.8;
}

.wa-chat {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #ece5dd 0%, #d9d2c5 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageIn 0.4s ease-out;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-message.user {
    background: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.wa-message.bot {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.wa-message.typing {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
}

.wa-message.typing span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.wa-message.typing span:nth-child(2) { animation-delay: -1.1s; }
.wa-message.typing span:nth-child(3) { animation-delay: -0.9s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

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

.wa-input {
    background: white;
    padding: 12px 16px;
    margin: 8px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-emoji, .wa-mic {
    font-size: 20px;
    opacity: 0.6;
}

.wa-input-placeholder {
    flex: 1;
    color: #999;
    font-size: 14px;
}

/* Notification cards */
.notification-card {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    animation: notifFloat 5s ease-in-out infinite;
}

.notif-1 {
    top: 60px;
    right: -60px;
    animation-delay: 0s;
}

.notif-2 {
    bottom: 100px;
    left: -80px;
    animation-delay: -2.5s;
}

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

.notif-icon {
    font-size: 24px;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-content strong {
    font-size: 13px;
    color: var(--text-dark);
}

.notif-content span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes wheelScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 80px 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-teal);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-teal);
    display: inline;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   Superpowers Section - Bento Grid
   ============================================ */
.superpowers {
    padding: 100px 24px 120px;
    background: white;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title-large {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    background: rgba(97, 178, 127, 0.15);
    color: var(--dark-teal);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.bento-card.bento-wide {
    grid-column: span 1;
}

.bento-card.bento-full {
    grid-column: span 2;
}

/* Card Themes */
.bento-mint {
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
    border: 1px solid rgba(97, 178, 127, 0.15);
}

.bento-mint h3 {
    color: var(--dark-teal);
}

.bento-mint p {
    color: #2d5a47;
}

.bento-light {
    background: #f8faf9;
    border: 1px solid rgba(0,0,0,0.06);
}

.bento-light h3 {
    color: var(--dark-teal);
}

.bento-light p {
    color: var(--text-dark);
}

.bento-text-white,
.bento-content h3.bento-text-white,
.bento-content p.bento-text-white {
    color: var(--off-white) !important;
}

.bento-dark {
    background: linear-gradient(135deg, #36835D 0%, var(--dark-teal) 100%);
    color: white;
}

.bento-dark h3,
.bento-dark p {
    color: white;
}

.bento-dark p {
    opacity: 0.85;
}

.bento-gradient {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--muted-teal) 50%, var(--dark-teal) 100%);
    color: white;
}

.bento-gradient h3,
.bento-gradient p {
    color: white;
}

.bento-gradient p {
    opacity: 0.9;
}

/* Soft green card - better contrast */
.bento-soft {
    background: linear-gradient(135deg, #f0f9f4 0%, #e3f2e8 100%);
    border: 1px solid rgba(97, 178, 127, 0.2);
}

.bento-soft h3 {
    color: var(--dark-teal);
}

.bento-soft p {
    color: var(--text-dark);
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.bento-content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.bento-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.bento-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--dark-teal) !important;
}

/* Bento Visuals */
.bento-visual {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* App Icons Visual */
.apps-visual {
    margin-top: 24px;
}

.app-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: iconBounce 3s ease-in-out infinite;
}

.app-icon:nth-child(2) { animation-delay: -0.5s; }
.app-icon:nth-child(3) { animation-delay: -1s; }
.app-icon:nth-child(4) { animation-delay: -1.5s; }

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

/* Notification Cards Visual */
.notification-cards {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.notif-card {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 180px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: cardSlide 4s ease-in-out infinite;
}

.notif-card:nth-child(2) { animation-delay: -1.3s; }
.notif-card:nth-child(3) { animation-delay: -2.6s; }

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

.notif-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.notif-badge.meeting {
    background: #e3f2fd;
    color: #1976d2;
}

.notif-badge.tasks {
    background: #f3e5f5;
    color: #7b1fa2;
}

.notif-badge.reminder {
    background: #fff3e0;
    color: #f57c00;
}

.notif-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.notif-card .notif-time {
    font-size: 12px;
    color: var(--text-muted);
}

.notif-card ul {
    list-style: none;
    font-size: 12px;
    color: var(--text-muted);
    padding: 0;
    margin: 0;
}

.notif-card ul li {
    padding: 2px 0;
}

.notif-card ul li::before {
    content: "• ";
    color: var(--soft-green);
}

/* Chat Bubble Visual */
.chat-bubble {
    margin-bottom: 24px;
}

.chat-msg {
    background: white;
    border-radius: 18px 18px 18px 4px;
    padding: 16px 20px;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.chat-msg span:first-child {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Sphere Visual */
.sphere-visual {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.floating-sphere {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--light-mint) 50%, var(--muted-teal) 100%);
    opacity: 0.6;
    box-shadow: 0 8px 32px rgba(97, 178, 127, 0.3);
    animation: sphereFloat 6s ease-in-out infinite;
}

.floating-sphere.small {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -30px;
    left: -40px;
    animation-delay: -2s;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-green) 100%);
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Abstract Visual */
.abstract-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 250px;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
}

.abstract-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(97, 178, 127, 0.4) 0%, rgba(173, 210, 152, 0.2) 100%);
    right: 20px;
    bottom: 20px;
    animation: shapeFloat 8s ease-in-out infinite;
}

.abstract-shape.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(97, 178, 127, 0.3) 100%);
    right: 150px;
    bottom: 80px;
    animation: shapeFloat 6s ease-in-out infinite reverse;
}

.abstract-shape.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(173, 210, 152, 0.5) 0%, rgba(247, 247, 226, 0.3) 100%);
    right: 80px;
    bottom: 160px;
    animation: shapeFloat 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -15px) scale(1.05); }
}

/* Legacy card styles for compatibility */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.card-cta:hover {
    gap: 10px;
    color: var(--soft-green);
}

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

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

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 120px 24px;
    background: white;
    position: relative;
    z-index: 1;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-btn.active {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.toggle-btn:hover:not(.active) {
    color: var(--text-dark);
}

.discount-badge {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 28px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    background: white;
    border-color: var(--soft-green);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(97, 178, 127, 0.3);
}

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

.plan-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    transition: all 0.4s ease;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

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

.x {
    color: #ccc;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark-teal);
    border: 2px solid var(--dark-teal);
}

.pricing-btn:hover {
    background: var(--dark-teal);
    color: white;
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-teal) 100%);
    color: white;
    border: none;
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(97, 178, 127, 0.4);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 120px 24px;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--dark-teal);
}

.faq-icon {
    color: var(--soft-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   Final CTA Section - Enhanced "Forgetfulness" Section
   ============================================ */
.final-cta {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated gradient background */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0a2e23 0%,
        var(--dark-teal) 30%,
        #0d4434 60%,
        #082922 100%
    );
    animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Floating particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.p1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-green), transparent 70%);
    top: 10%;
    left: -5%;
    animation: particleFloat 15s ease-in-out infinite;
}

.p2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--light-mint), transparent 70%);
    top: 60%;
    right: -3%;
    animation: particleFloat 18s ease-in-out infinite reverse;
}

.p3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, white, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: particleFloat 12s ease-in-out infinite;
    animation-delay: -3s;
}

.p4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--muted-teal), transparent 70%);
    top: 30%;
    right: 20%;
    animation: particleFloat 20s ease-in-out infinite;
    animation-delay: -5s;
}

.p5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--off-white), transparent 70%);
    bottom: 10%;
    right: 40%;
    animation: particleFloat 14s ease-in-out infinite reverse;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* Regret cards - hidden on all screens to prevent overlap */
.regret-cards {
    display: none;
}

/* Main CTA content */
.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    color: white;
    font-weight: 500;
    font-size: 15px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--light-mint);
    border-radius: 50%;
    animation: pulseBadge 2s ease-in-out infinite;
}

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

/* Headline */
.cta-headline {
    margin-bottom: 24px;
}

.cta-headline .line {
    display: block;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

.cta-headline .highlight-line {
    background: linear-gradient(135deg, var(--light-mint) 0%, #7deba8 50%, var(--off-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Subtext */
.cta-subtext {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext em {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.cta-subtext strong {
    color: var(--light-mint);
    font-weight: 600;
}

/* CTA buttons */
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.final-cta .btn-primary {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-green) 100%);
    color: var(--dark-teal);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(173, 210, 152, 0.3);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 15px 45px rgba(173, 210, 152, 0.4);
    transform: translateY(-4px);
}

.final-cta .btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* Trust items */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.trust-item svg {
    color: var(--light-mint);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 24px 40px;
    background: var(--bg-dark);
    color: white;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-brand > p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--soft-green);
    color: white;
    transform: translateY(-3px);
}

.footer-links-grid {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--light-mint);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.footer-tagline {
    color: rgba(255,255,255,0.6) !important;
}

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

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-phone {
        flex: none;
    }
    
    .notification-card {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.bento-wide,
    .bento-card.bento-full {
        grid-column: span 1;
    }
    
    .bento-card {
        min-height: auto;
        padding: 28px;
    }
    
    .notification-cards {
        flex-direction: column;
    }
    
    .abstract-visual {
        display: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-radius: 24px;
        box-shadow: var(--shadow-medium);
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 120px 16px 60px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .cta-headline .line {
        font-size: 32px;
    }
    
    .cta-subtext {
        font-size: 16px;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-phone {
        transform: scale(0.85);
    }
    
    .superpowers-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links-grid {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        width: calc(100% - 32px);
    }
    
    .nav-pill {
        padding: 10px 10px 10px 16px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero-headline .line {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-phone {
        transform: scale(0.75);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .bento-content h3 {
        font-size: 20px;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    .sphere-visual {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-headline .line {
        font-size: 28px;
    }
    
    .cta-badge {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}
