/* ========================================
   TRINOVA V2 - PREMIUM LANDING PAGE STYLES
   ======================================== */

:root {
    /* Brand Colors */
    --color-primary: #299F93;
    --color-teal-light: #3FC9B8;
    --color-teal-dark: #1F7A6F;
    --color-accent: #FF8A5C;
    --color-warning: #FF6B6B;
    --color-gold: #FFD93D;

    /* Background Colors */
    --color-bg-deep: #0a0b0b;
    --color-bg-card: rgba(30, 32, 32, 0.8);
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    --color-bg-elevated: rgba(41, 159, 147, 0.05);

    /* Text Colors */
    --color-text-main: #E8E8E8;
    --color-text-muted: #9A9A9A;
    --color-white: #FFFFFF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;

    /* Borders */
    --border-subtle: 1px solid rgba(41, 159, 147, 0.15);
    --border-glow: 1px solid rgba(41, 159, 147, 0.4);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(41, 159, 147, 0.15);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg-deep);
    color: var(--color-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-teal-light) 50%, var(--color-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.text-accent {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-bg-elevated);
    border: var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(41, 159, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(41, 159, 147, 0.4), 0 0 80px rgba(63, 201, 184, 0.2);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glow {
    background: transparent;
    border: 2px solid rgba(41, 159, 147, 0.5);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
}

.btn-glow:hover {
    border-color: var(--color-primary);
    background: rgba(41, 159, 147, 0.1);
    box-shadow: 0 0 30px rgba(41, 159, 147, 0.3);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(10, 11, 11, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(41, 159, 147, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}

.logo-digitals {
    background: linear-gradient(90deg, var(--color-primary), var(--color-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--color-bg-deep);
    z-index: 999;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: var(--border-subtle);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
}

/* ========================================
   HERO SECTION - BENTO LAYOUT
   ======================================== */

.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-main {
    grid-row: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-elevated);
    border: var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero h1 {
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.shield-icon {
    color: var(--color-primary);
}

/* Hero Visual */
.hero-visual {
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(41, 159, 147, 0.3));
}

.growth-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease forwards 0.5s;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.data-point {
    opacity: 0;
    animation: popIn 0.4s ease forwards;
}

.data-point:nth-child(4) {
    animation-delay: 1s;
}

.data-point:nth-child(5) {
    animation-delay: 1.2s;
}

.data-point:nth-child(6) {
    animation-delay: 1.4s;
}

.data-point:nth-child(7) {
    animation-delay: 1.6s;
}

.data-point:nth-child(8) {
    animation-delay: 1.8s;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.float-element {
    animation: float 4s ease-in-out infinite;
}

.float-element:nth-child(10) {
    animation-delay: 0s;
}

.float-element:nth-child(11) {
    animation-delay: 1s;
}

.float-element:nth-child(12) {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hero Metrics */
.hero-metrics {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.metric-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* Hero Glows */
.hero-glow,
.hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-glow {
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(41, 159, 147, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 201, 184, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

/* ========================================
   CRISIS SECTION
   ======================================== */

.crisis-section {
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, rgba(41, 159, 147, 0.03) 50%, var(--color-bg-deep) 100%);
}

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pain-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(20px);
}

.pain-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(41, 159, 147, 0.2);
}

.pain-icon {
    margin-bottom: var(--spacing-sm);
}

.pain-icon svg {
    transition: transform 0.3s ease;
}

.pain-card:hover .pain-icon svg {
    transform: scale(1.1);
}

.pain-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.pain-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Wing animation */
.wing {
    animation: flap 0.5s ease-in-out infinite alternate;
    transform-origin: center right;
}

.wing-left {
    transform-origin: center right;
}

.wing-right {
    transform-origin: center left;
    animation-delay: 0.25s;
}

@keyframes flap {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

/* Sand animation */
.sand-grain {
    animation: fall 1.5s ease-in-out infinite;
}

.sand-grain:nth-child(2) {
    animation-delay: 0.5s;
}

.sand-grain:nth-child(3) {
    animation-delay: 1s;
}

@keyframes fall {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(3px);
    }
}

/* Bucket Visualization */
.bucket-visualization {
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

.bucket-svg {
    width: 100%;
    height: auto;
}

.lead-drop {
    animation: drip 2s ease-in-out infinite;
}

.lead-drop:nth-child(1) {
    animation-delay: 0s;
}

.lead-drop:nth-child(2) {
    animation-delay: 0.7s;
}

.lead-drop:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes drip {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(40px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(80px);
        opacity: 0;
    }
}

.falling-money {
    animation: fallMoney 2.5s ease-in-out infinite;
}

.falling-money:nth-child(1) {
    animation-delay: 0.3s;
}

.falling-money:nth-child(2) {
    animation-delay: 1s;
}

.falling-money:nth-child(3) {
    animation-delay: 1.7s;
}

@keyframes fallMoney {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

.water-level {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        d: path("M105 120 Q150 130 200 125 Q250 120 295 130 L290 170 Q200 180 110 170Z");
    }

    50% {
        d: path("M105 125 Q150 115 200 130 Q250 125 295 120 L290 170 Q200 175 110 170Z");
    }
}

.crisis-conclusion {
    text-align: center;
    font-size: 1.4rem;
}

.crisis-conclusion strong {
    font-size: 1.6rem;
}

/* ========================================
   SYSTEM SECTION - SCROLLYTELLING
   ======================================== */

.system-section {
    background: var(--color-bg-deep);
    position: relative;
}

.system-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(41, 159, 147, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.scrollytelling-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* Phone Mockup */
.phone-mockup {
    position: sticky;
    top: 120px;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 20px;
    margin: 0 auto 10px;
}

.phone-screen {
    background: #0a0a0a;
    border-radius: 28px;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.screen-content.active {
    opacity: 1;
    transform: translateX(0);
}

/* Mock Ad */
.mock-ad {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 0.75rem;
}

.ad-badge {
    background: rgba(41, 159, 147, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--color-primary);
}

.ad-brand {
    color: var(--color-text-muted);
}

.ad-cta {
    text-align: center;
    padding: 12px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mock Funnel */
.mock-funnel {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.funnel-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    padding: 10px 0;
}

.funnel-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field {
    background: rgba(41, 159, 147, 0.1);
    border: 1px solid rgba(41, 159, 147, 0.2);
    border-radius: 10px;
    padding: 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-field.filled {
    background: rgba(41, 159, 147, 0.2);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.funnel-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Mock SMS */
.mock-sms {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sms-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.sms-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    max-width: 85%;
    line-height: 1.4;
}

.sms-bubble.received {
    background: rgba(41, 159, 147, 0.15);
    color: var(--color-text-main);
    align-self: flex-start;
}

.sms-bubble.sent {
    background: var(--color-primary);
    color: white;
    align-self: flex-end;
}

.sms-bubble.link {
    color: var(--color-teal-light);
    text-decoration: underline;
}

/* Mock Calendar */
.mock-calendar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.check-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.cal-header span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.cal-details {
    background: rgba(41, 159, 147, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.cal-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cal-row:last-child {
    border-bottom: none;
}

.cal-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: auto;
}

/* System Steps */
.system-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.step:hover,
.step.active {
    border-color: var(--color-primary);
    background: rgba(41, 159, 147, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(41, 159, 147, 0.3), rgba(63, 201, 184, 0.1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.step-content h3 {
    color: var(--color-teal-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
    background: var(--color-bg-deep);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(180deg, var(--color-bg-deep), rgba(41, 159, 147, 0.05));
}

.stats-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 30px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
}

.stats-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stats-header h2 {
    margin: var(--spacing-sm) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg-glass);
    border: var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* ========================================
   DELIVERABLES SECTION
   ======================================== */

.deliverables-section {
    background: var(--color-bg-deep);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.deliverable-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.deliverable-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.deliverable-icon {
    flex-shrink: 0;
}

.deliverable-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.deliverable-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    background: linear-gradient(180deg, var(--color-bg-deep), rgba(41, 159, 147, 0.03));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(180deg, rgba(41, 159, 147, 0.08), var(--color-bg-card));
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(41, 159, 147, 0.15);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: var(--spacing-xs) 0;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .period {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.price-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md);
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check-icon {
    color: var(--color-primary);
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(41, 159, 147, 0.5);
    color: var(--color-white);
}

.btn-outline:hover {
    background: rgba(41, 159, 147, 0.1);
    border-color: var(--color-primary);
}

.guarantee-small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.pricing-notes {
    margin-top: var(--spacing-md);
}

.pricing-notes p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee-section {
    padding: var(--spacing-xl) 0;
}

.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(41, 159, 147, 0.1), transparent 70%);
    pointer-events: none;
}

.guarantee-badge {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.guarantee-card h2 {
    margin-bottom: var(--spacing-xs);
}

.guarantee-headline {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.guarantee-card p {
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */

.founder-section {
    background: var(--color-bg-deep);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 30px;
}

.founder-image {
    position: relative;
    flex-shrink: 0;
}

.founder-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.founder-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(41, 159, 147, 0.3), transparent 70%);
    z-index: -1;
}

.founder-content {
    flex: 1;
}

.founder-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-white);
    margin: var(--spacing-sm) 0;
    line-height: 1.6;
}

.founder-content cite {
    font-style: normal;
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(41, 159, 147, 0.1), rgba(63, 201, 184, 0.05));
    border: var(--border-subtle);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 159, 147, 0.1), transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-card h2,
.cta-card p,
.cta-card .btn {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    margin-bottom: var(--spacing-sm);
}

.cta-card p {
    max-width: 500px;
    margin: 0 auto var(--spacing-md);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: rgba(10, 11, 11, 0.9);
    padding-top: var(--spacing-lg);
    border-top: var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: var(--spacing-sm);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.link-group h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--color-primary);
}

.link-group svg {
    opacity: 0.7;
}

.copyright {
    text-align: center;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .hero-bento {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    .hero-illustration {
        max-width: 280px;
        margin: 0 auto;
    }

    .scrollytelling-container {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {

    /* Hide desktop nav, show mobile */
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: var(--spacing-md);
    }

    .hero-bento {
        gap: var(--spacing-sm);
    }

    .hero-main {
        text-align: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .hero-guarantee {
        font-size: 0.8rem;
    }

    .hero-visual {
        display: none;
        /* Hide complex SVG on mobile */
    }

    .hero-metrics {
        justify-content: center;
        gap: var(--spacing-xs);
        flex-wrap: wrap;
    }

    .metric-card {
        min-width: 100px;
        padding: 0.75rem 1rem;
        flex: 1 1 calc(33% - 0.5rem);
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    /* Pain Cards */
    .crisis-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .pain-card {
        padding: var(--spacing-sm);
    }

    .pain-icon svg {
        width: 48px;
        height: 48px;
    }

    .pain-card h3 {
        font-size: 1.1rem;
    }

    .pain-card p {
        font-size: 0.9rem;
    }

    /* Hide bucket animation on mobile - too complex */
    .bucket-visualization {
        display: none;
    }

    .crisis-conclusion {
        font-size: 1.1rem;
    }

    .crisis-conclusion strong {
        font-size: 1.25rem;
    }

    /* Scrollytelling System */
    .scrollytelling-container {
        gap: var(--spacing-sm);
    }

    .phone-mockup {
        margin-bottom: var(--spacing-sm);
    }

    .phone-frame {
        max-width: 220px;
        padding: 8px;
        border-radius: 30px;
    }

    .phone-notch {
        width: 80px;
        height: 20px;
        border-radius: 15px;
    }

    .phone-screen {
        height: 380px;
        border-radius: 22px;
    }

    .screen-content {
        padding: 12px;
    }

    .funnel-header {
        font-size: 1rem;
    }

    .form-field {
        padding: 10px;
        font-size: 0.8rem;
    }

    .funnel-btn {
        padding: 12px;
        font-size: 0.85rem;
    }

    .sms-bubble {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .system-steps {
        gap: var(--spacing-sm);
    }

    .step {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .benefit-card {
        padding: var(--spacing-sm);
    }

    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    /* Stats */
    .stats-card {
        padding: var(--spacing-md);
        border-radius: 20px;
    }

    .stats-header h2 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-item {
        padding: var(--spacing-sm);
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Deliverables */
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .deliverable-card {
        padding: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
    }

    .deliverable-icon {
        margin-bottom: 0.5rem;
    }

    .deliverable-icon svg {
        width: 40px;
        height: 40px;
    }

    .deliverable-card h3 {
        font-size: 1rem;
    }

    .deliverable-card p {
        font-size: 0.85rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-card {
        padding: var(--spacing-md);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .price .currency {
        font-size: 1.2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .pricing-notes p {
        font-size: 0.8rem;
    }

    /* Founder */
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .founder-photo {
        width: 140px;
        height: 140px;
    }

    .founder-content blockquote {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta-card {
        padding: var(--spacing-md);
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .link-group {
        text-align: center;
    }

    .link-group a {
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Hide complex animations on mobile */
    .hero-glow,
    .hero-glow-2 {
        display: none;
    }

    .grain-overlay {
        opacity: 0.02;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }

    .hero-metrics {
        gap: 0.5rem;
    }

    .metric-card {
        min-width: 90px;
        padding: 0.6rem 0.8rem;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    /* Phone mockup */
    .phone-frame {
        max-width: 200px;
    }

    .phone-screen {
        height: 340px;
    }

    /* Steps */
    .step {
        padding: var(--spacing-xs);
    }

    .step-number {
        font-size: 1.5rem;
    }

    /* Stats */
    .stat-value {
        font-size: 2rem;
    }

    /* Pricing */
    .pricing-card {
        padding: var(--spacing-sm);
    }

    .price .amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
    }

    /* Founder */
    .founder-photo {
        width: 120px;
        height: 120px;
    }

    .founder-content blockquote {
        font-size: 1rem;
    }

    /* CTA */
    .cta-card h2 {
        font-size: 1.3rem;
    }

    /* Navbar */
    .logo {
        font-size: 1.3rem;
    }

    /* Mobile menu */
    .mobile-menu {
        padding: 80px 1.5rem 2rem;
    }

    .mobile-menu-link {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   INNER PAGE & BLOG STYLES (COMPATIBILITY)
   ========================================================================== */

.contact-page-section,
.about-page-section,
.privacy-page-section {
    padding: 150px 0 var(--spacing-lg);
    min-height: 80vh;
}

.contact-wrapper,
.about-content,
.privacy-content {
    background: var(--color-bg-card);
    border: 1px solid rgba(41, 159, 147, 0.1);
    border-radius: 20px;
    padding: var(--spacing-md);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* (Standardized form styles are now at the bottom of the file) */

/* Blog Styles */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px var(--spacing-md) var(--spacing-xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(41, 159, 147, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    /* Make container relative for stretched link */
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(41, 159, 147, 0.15);
}

.blog-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.blog-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Stretched link to make whole card clickable */
.blog-title a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-title a:hover {
    color: var(--color-primary);
}

.blog-excerpt {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: var(--color-teal-light);
}

/* Article Styles (Singular) */
.article-container {
    max-width: 800px;
    margin: 150px auto 60px;
    padding: 0 2rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-meta {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.3rem;
    color: var(--color-text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(41, 159, 147, 0.2);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-white);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--color-primary);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.callout-box {
    background: var(--color-bg-card);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(41, 159, 147, 0.1), rgba(63, 201, 184, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

/* ========================================
   COMPONENTS
   ======================================== */

.stats-card {
    background: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.stats-header {
    margin-bottom: 2.5rem;
}

.bg-glass {
    background: var(--color-bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: var(--border-subtle);
    border-radius: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
}

/* ========================================
   FORMS
   ======================================== */

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(41, 159, 147, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(41, 159, 147, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(41, 159, 147, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23299F93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--color-bg-deep);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}