/* ==========================================================================
   Organic / Natural Design System — Theme Override
   Wabi-sabi: warmth, imperfection, natural connection
   Load AFTER style.css to override neumorphic defaults.
   ========================================================================== */

/* --- Self-hosted fonts --- */
@font-face {
    font-family: 'Fraunces';
    src: url('../fonts/fraunces-latin.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-latin.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Token overrides --- */
:root {
    /* Core palette — Earth tones */
    --canvas: #FDFCF8;
    --ink: #2C2C24;
    --muted: #78786C;
    --dim: #9E9E8F;
    --divider: #DED8CF;
    --accent: #5D7052;

    /* Surfaces */
    --card-bg: #FEFEFA;
    --card-border: rgba(222, 216, 207, 0.5);
    --card-shadow-light: transparent;
    --card-shadow-dark: transparent;
    --card-inset-border: transparent;

    /* Navbar */
    --nav-bg: rgba(253, 252, 248, 0.7);
    --nav-icon-gradient-start: #5D7052;
    --nav-icon-gradient-end: #5D7052;

    /* Footer */
    --footer-bg: #2C2C24;
    --footer-text: #F3F4F1;
    --footer-gradient-start: #5D7052;
    --footer-gradient-end: #3A3A30;
    --footer-radius: 0;

    /* Heading gradient → solid warm dark */
    --grad-start: #2C2C24;
    --grad-end: #2C2C24;

    /* Buttons */
    --btn-bg: #5D7052;
    --btn-text: #F3F4F1;
    --btn-hover-bg: #4A5C42;

    /* Forms */
    --input-bg: rgba(255, 255, 255, 0.5);
    --input-border: #DED8CF;
    --input-shadow: transparent;

    /* Feedback */
    --success-bg: #F0F7ED;
    --success-border: #B5D4AA;
    --success-text: #3A5030;
    --error-bg: #FBF0EE;
    --error-border: #E0B5AE;
    --error-text: #8B3D33;
    --error-accent: #A85448;
    --field-error: #A85448;

    /* Fonts */
    --font-heading: 'Fraunces', 'Georgia', serif;
    --font-body: 'Nunito', system-ui, sans-serif;
    --font-hand: 'Fraunces', 'Georgia', serif;

    /* Radii — generous, organic */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-2xl: 32px;

    /* Misc */
    --tooltip-bg: #2C2C24;
    --tooltip-text: #F3F4F1;
    --dot-inactive: #DED8CF;
    --dot-active: #5D7052;
    --section-alt-bg: rgba(240, 235, 229, 0.3);
    --marker-color: #C1B9AD;
    --hover-bg: rgba(93, 112, 82, 0.08);
}

/* ==========================================================================
   GLOBAL: Paper grain texture overlay
   ========================================================================== */

body::after {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 9998 !important;
    opacity: 0.035 !important;
    mix-blend-mode: multiply !important;
    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") !important;
    background-repeat: repeat !important;
    background-size: 256px 256px !important;
}

/* ==========================================================================
   NATURAL TRANSITIONS
   ========================================================================== */

* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
}
h1 { font-weight: 800 !important; }

.h-grad {
    background-image: none !important;
    -webkit-text-fill-color: var(--ink) !important;
    color: var(--ink) !important;
}

.h1 {
    font-size: 62px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
}
.h2 {
    font-size: 46px !important;
    line-height: 1.1 !important;
}

/* ==========================================================================
   CORE COMPONENTS: Soft, organic cards
   ========================================================================== */

.neu {
    background: #FEFEFA !important;
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 4px 20px -2px rgba(93, 112, 82, 0.12) !important;
    border-radius: 2rem !important;
}
.neu-subtle {
    background: #FEFEFA !important;
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 12px -2px rgba(93, 112, 82, 0.08) !important;
}

/* ==========================================================================
   BUTTONS: Rounded pills with natural shadows
   ========================================================================== */

.btn-primary {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border: none !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 20px -2px rgba(93, 112, 82, 0.3) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    transition: all 0.3s ease !important;
}
.btn-primary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 24px -4px rgba(93, 112, 82, 0.4) !important;
    background: #4A5C42 !important;
}
.btn-primary:active {
    transform: scale(0.95) !important;
}
.btn-primary.sm {
    padding: 10px 22px !important;
    border-radius: 9999px !important;
    font-size: 14px !important;
    box-shadow: 0 3px 14px -2px rgba(93, 112, 82, 0.25) !important;
}
.btn-primary.sm:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 18px -3px rgba(93, 112, 82, 0.35) !important;
}

.btn-secondary {
    background: transparent !important;
    color: #C18C5D !important;
    border: 2px solid #C18C5D !important;
    border-radius: 9999px !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.btn-secondary:hover {
    background: rgba(193, 140, 93, 0.08) !important;
    transform: scale(1.05) !important;
}

/* ==========================================================================
   BADGES: Earthy pills
   ========================================================================== */

.badge {
    background: rgba(93, 112, 82, 0.08) !important;
    border: 1px solid rgba(93, 112, 82, 0.2) !important;
    border-radius: 9999px !important;
    box-shadow: none !important;
    color: #5D7052 !important;
    font-weight: 600 !important;
}
.badge svg {
    color: #5D7052 !important;
}

/* Badge color variants */
.badge-green {
    background: rgba(93, 112, 82, 0.12) !important;
    color: #5D7052 !important;
}
.badge-blue {
    background: rgba(93, 112, 82, 0.9) !important;
    color: #F3F4F1 !important;
}
.badge-blue svg {
    color: #F3F4F1 !important;
}
.badge-purple {
    background: rgba(193, 140, 93, 0.15) !important;
    color: #9A6B3A !important;
}
.badge-purple svg {
    color: #9A6B3A !important;
}
.badge-white {
    background: #FEFEFA !important;
    color: #2C2C24 !important;
}
.badge-gray {
    background: #F0EDE8 !important;
    color: #6B6355 !important;
    border-color: #DDD8D0 !important;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
    background: linear-gradient(180deg, #F0EBE5 0%, #FDFCF8 70%) !important;
    position: relative !important;
}

/* Organic blob shapes as hero background */
.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 10% !important;
    left: -5% !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(93, 112, 82, 0.06) !important;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40% !important;
    filter: blur(60px) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}
.hero-section::after {
    content: '' !important;
    position: absolute !important;
    top: 20% !important;
    right: -8% !important;
    width: 350px !important;
    height: 350px !important;
    background: rgba(193, 140, 93, 0.06) !important;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
    filter: blur(60px) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Hero badge */
.hero-badge {
    border: 1px solid rgba(222, 216, 207, 0.6) !important;
    box-shadow: 0 2px 12px -2px rgba(93, 112, 82, 0.1) !important;
    background: rgba(253, 252, 248, 0.8) !important;
    border-radius: 9999px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
.hero-badge-inner {
    border: 1px solid rgba(93, 112, 82, 0.2) !important;
    box-shadow: none !important;
    background: rgba(93, 112, 82, 0.08) !important;
    border-radius: 9999px !important;
    color: #5D7052 !important;
    font-weight: 600 !important;
}
.pulse {
    background: #5D7052 !important;
}
.pulse::before {
    background: #5D7052 !important;
}

/* Hero screenshot card — asymmetric organic radius */
.hero-tilt .neu {
    box-shadow: 0 20px 60px -10px rgba(93, 112, 82, 0.18) !important;
    border-radius: 2rem !important;
}

/* ==========================================================================
   NAVBAR: Floating pill with glassmorphism
   ========================================================================== */

nav .neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 20px -4px rgba(93, 112, 82, 0.12) !important;
    background: rgba(253, 252, 248, 0.7) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}
nav .font-heading a:hover,
nav a:hover {
    background: rgba(93, 112, 82, 0.08) !important;
    border-radius: 12px !important;
}

/* ==========================================================================
   ICON FEATURES: Moss circles
   ========================================================================== */

.icon-feature {
    background: rgba(93, 112, 82, 0.1) !important;
    border-radius: 1rem !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    color: #5D7052 !important;
}
.icon-feature svg {
    color: #5D7052 !important;
    stroke: #5D7052 !important;
}

/* Cycle icon backgrounds — earth tones */
/* Problem section (3 cards) */
section:nth-of-type(3) .neu:nth-child(1) .icon-feature { background: rgba(93, 112, 82, 0.1) !important; }
section:nth-of-type(3) .neu:nth-child(1) .icon-feature svg { color: #5D7052 !important; stroke: #5D7052 !important; }
section:nth-of-type(3) .neu:nth-child(2) .icon-feature { background: rgba(193, 140, 93, 0.12) !important; }
section:nth-of-type(3) .neu:nth-child(2) .icon-feature svg { color: #C18C5D !important; stroke: #C18C5D !important; }
section:nth-of-type(3) .neu:nth-child(3) .icon-feature { background: rgba(168, 84, 72, 0.1) !important; }
section:nth-of-type(3) .neu:nth-child(3) .icon-feature svg { color: #A85448 !important; stroke: #A85448 !important; }

/* Why Worksuite bento (6 cards) — cycling earth palette */
section:nth-of-type(5) .grid > .neu:nth-child(1) .icon-feature { background: rgba(93, 112, 82, 0.1) !important; }
section:nth-of-type(5) .grid > .neu:nth-child(1) .icon-feature svg { color: #5D7052 !important; stroke: #5D7052 !important; }
section:nth-of-type(5) .grid > .neu:nth-child(2) .icon-feature { background: rgba(193, 140, 93, 0.12) !important; }
section:nth-of-type(5) .grid > .neu:nth-child(2) .icon-feature svg { color: #C18C5D !important; stroke: #C18C5D !important; }
section:nth-of-type(5) .grid > .neu:nth-child(3) .icon-feature { background: rgba(168, 84, 72, 0.1) !important; }
section:nth-of-type(5) .grid > .neu:nth-child(3) .icon-feature svg { color: #A85448 !important; stroke: #A85448 !important; }
section:nth-of-type(5) .grid > .neu:nth-child(4) .icon-feature { background: rgba(230, 220, 205, 0.5) !important; }
section:nth-of-type(5) .grid > .neu:nth-child(4) .icon-feature svg { color: #7A6F60 !important; stroke: #7A6F60 !important; }
section:nth-of-type(5) .grid > .neu:nth-child(5) .icon-feature { background: rgba(93, 112, 82, 0.1) !important; }
section:nth-of-type(5) .grid > .neu:nth-child(5) .icon-feature svg { color: #5D7052 !important; stroke: #5D7052 !important; }

/* Tab panel icon features — cycle through earth colors */
.tab-panel .space-y-4 > div:nth-child(1) .icon-feature { background: rgba(93, 112, 82, 0.1) !important; }
.tab-panel .space-y-4 > div:nth-child(1) .icon-feature svg { color: #5D7052 !important; stroke: #5D7052 !important; }
.tab-panel .space-y-4 > div:nth-child(2) .icon-feature { background: rgba(193, 140, 93, 0.12) !important; }
.tab-panel .space-y-4 > div:nth-child(2) .icon-feature svg { color: #C18C5D !important; stroke: #C18C5D !important; }
.tab-panel .space-y-4 > div:nth-child(3) .icon-feature { background: rgba(168, 84, 72, 0.1) !important; }
.tab-panel .space-y-4 > div:nth-child(3) .icon-feature svg { color: #A85448 !important; stroke: #A85448 !important; }

/* ==========================================================================
   TAB BAR
   ========================================================================== */

.tab-btn.neu-subtle {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border: none !important;
    box-shadow: 0 3px 14px -2px rgba(93, 112, 82, 0.25) !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
}
.tab-btn:not(.neu-subtle) {
    border: 1px solid transparent !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    border-radius: 9999px !important;
    color: var(--muted) !important;
}
.tab-btn:not(.neu-subtle):hover {
    background: rgba(93, 112, 82, 0.08) !important;
    border-color: transparent !important;
}

/* Tab panel container */
.tab-panel.neu {
    background: rgba(240, 235, 229, 0.2) !important;
    border: 1px solid rgba(222, 216, 207, 0.4) !important;
    box-shadow: 0 8px 30px -6px rgba(93, 112, 82, 0.12) !important;
    border-radius: 2rem !important;
}

/* Tab panel inner cards */
.tab-panel .neu-subtle {
    border: 1px solid rgba(222, 216, 207, 0.4) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.08) !important;
    border-radius: 1.5rem !important;
}
.tab-panel .neu {
    border: 1px solid rgba(222, 216, 207, 0.4) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.08) !important;
}

/* ==========================================================================
   BEFORE / AFTER COMPARISON
   ========================================================================== */

.compare-before {
    border: 1px solid rgba(222, 216, 207, 0.6) !important;
    box-shadow: 0 4px 20px -4px rgba(168, 84, 72, 0.12) !important;
    border-radius: 2rem !important;
}
.compare-after {
    border: 1px solid rgba(93, 112, 82, 0.3) !important;
    box-shadow: 0 4px 20px -4px rgba(93, 112, 82, 0.15) !important;
    border-radius: 2rem !important;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 8px 30px -6px rgba(193, 140, 93, 0.15) !important;
    border-radius: 2rem !important;
    background: #FEFEFA !important;
}

/* ==========================================================================
   ORBIT / INTEGRATIONS
   ========================================================================== */

/* Kill the glass bowl */
.orbit ~ .absolute.inset-0 .rounded-full[style],
section:has(.orbit) .pointer-events-none .absolute.rounded-full {
    background: none !important;
    box-shadow: none !important;
    border: 1px dashed rgba(222, 216, 207, 0.6) !important;
}

/* Center logo: organic soft */
section:has(.orbit) .absolute.left-1\/2.top-1\/2 > div {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 8px 30px -6px rgba(93, 112, 82, 0.15) !important;
    border-radius: 2rem !important;
    background: #FEFEFA !important;
}
section:has(.orbit) .absolute.left-1\/2.top-1\/2 > div > div {
    background: rgba(93, 112, 82, 0.08) !important;
    box-shadow: none !important;
}
section:has(.orbit) .absolute.left-1\/2.top-1\/2 svg {
    filter: none !important;
    stroke: #5D7052 !important;
}

/* Orbit tiles: organic */
.orbit-tile .neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.12) !important;
    border-radius: 1.5rem !important;
    background: #FEFEFA !important;
}
.orbit-tile .neu svg {
    filter: none !important;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.t-slide.neu,
.t-slide .neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    border-radius: 2rem !important;
    background: #FEFEFA !important;
    transition: all 0.3s ease !important;
}
/* Alternate shadow colors — earth tones */
.t-slide:nth-child(1) .neu,
.t-slide:nth-child(1).neu {
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.15) !important;
}
.t-slide:nth-child(2n) .neu,
.t-slide:nth-child(2n).neu {
    box-shadow: 0 6px 24px -6px rgba(193, 140, 93, 0.15) !important;
}
.t-slide:nth-child(3n) .neu,
.t-slide:nth-child(3n).neu {
    box-shadow: 0 6px 24px -6px rgba(168, 84, 72, 0.12) !important;
}

/* Subtle rotation on hover — picking up a card */
.t-slide .neu:hover,
.t-slide.neu:hover {
    transform: rotate(1deg) !important;
}

.t-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 9999px !important;
    border: none !important;
    background: #DED8CF !important;
    transition: all 0.3s ease !important;
}
.t-dot.active {
    background: #5D7052 !important;
    width: 28px !important;
    border-radius: 9999px !important;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.price-toggle {
    background: rgba(240, 235, 229, 0.5) !important;
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.08) !important;
    border-radius: 9999px !important;
}
.price-toggle button {
    border-radius: 9999px !important;
    font-weight: 600 !important;
}
.price-toggle button.active {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.2) !important;
}

/* Pricing cards */
#planGrid > div.neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.12) !important;
    border-radius: 2rem !important;
    padding: 28px !important;
    transition: all 0.3s ease !important;
}
#planGrid > div.neu:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 36px -8px rgba(93, 112, 82, 0.18) !important;
}
/* Featured card: elevated moss shadow */
#planGrid > div.neu:has(.popular-badge) {
    box-shadow: 0 10px 40px -8px rgba(93, 112, 82, 0.25) !important;
    border-color: rgba(93, 112, 82, 0.3) !important;
    transform: scale(1.02) !important;
}
#planGrid > div.neu:has(.popular-badge):hover {
    transform: scale(1.02) translateY(-4px) !important;
}

/* Plan name badge */
.plan-name {
    background: rgba(93, 112, 82, 0.1) !important;
    color: #5D7052 !important;
    border-radius: 9999px !important;
    padding: 4px 16px !important;
    font-weight: 700 !important;
    display: inline-block !important;
}
#planGrid > div.neu:nth-child(1) .plan-name {
    background: rgba(193, 140, 93, 0.12) !important;
    color: #9A6B3A !important;
}
#planGrid > div.neu:nth-child(3) .plan-name {
    background: rgba(168, 84, 72, 0.1) !important;
    color: #A85448 !important;
}

/* Popular badge */
.popular-badge {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border: none !important;
    box-shadow: 0 4px 14px -2px rgba(93, 112, 82, 0.3) !important;
    font-weight: 600 !important;
    transform: rotate(3deg) !important;
    border-radius: 12px !important;
}

/* Check star */
.check-star {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border-radius: 9999px !important;
    border: none !important;
}

/* Save label */
.save-label {
    color: #C18C5D !important;
    font-weight: 600 !important;
}

/* Currency select */
.currency-select {
    border: 1px solid #DED8CF !important;
    box-shadow: 0 2px 8px -2px rgba(93, 112, 82, 0.08) !important;
    border-radius: 9999px !important;
    font-weight: 500 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232C2C24' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
}

/* Compare table */
.compare-table th,
.compare-table td {
    border-bottom: 1px solid rgba(222, 216, 207, 0.5) !important;
}
.compare-table thead th {
    font-weight: 700 !important;
}
.compare-table .check {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border: none !important;
    border-radius: 9999px !important;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item.neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.08) !important;
    border-radius: 1.5rem !important;
    background: #FEFEFA !important;
    transition: all 0.3s ease !important;
}
.faq-item.open.neu {
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.15) !important;
}
.faq-toggle {
    background: #5D7052 !important;
    border: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    background: #5D7052 !important;
    border: none !important;
    border-radius: 2.5rem !important;
    box-shadow: 0 20px 60px -10px rgba(93, 112, 82, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}
.cta-section * {
    color: #F3F4F1 !important;
}
.cta-section .h-grad {
    -webkit-text-fill-color: #FFFFFF !important;
    color: #FFFFFF !important;
}
.cta-section .badge {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    box-shadow: none !important;
    color: #F3F4F1 !important;
}
.cta-section .badge svg {
    color: #F3F4F1 !important;
}
.cta-section .btn-primary {
    background: #C18C5D !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 20px -4px rgba(193, 140, 93, 0.4) !important;
}
.cta-section .btn-primary:hover {
    background: #A87A4E !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 28px -4px rgba(193, 140, 93, 0.5) !important;
}
.cta-section .btn-secondary {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}
.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.7) !important;
}

/* Decorative organic blobs */
.cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: -60px !important;
    right: -40px !important;
    width: 200px !important;
    height: 200px !important;
    background: rgba(193, 140, 93, 0.2) !important;
    border: none !important;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40% !important;
    opacity: 1 !important;
    z-index: 0 !important;
    filter: blur(20px) !important;
}
.cta-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40px !important;
    left: 5% !important;
    width: 160px !important;
    height: 160px !important;
    background: rgba(230, 220, 205, 0.15) !important;
    border: none !important;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
    opacity: 1 !important;
    z-index: 0 !important;
    filter: blur(20px) !important;
}

/* ==========================================================================
   MARQUEE / TRUSTED BY
   ========================================================================== */

.marquee-track span {
    font-weight: 600 !important;
    color: #78786C !important;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-input {
    border: 1px solid #DED8CF !important;
    border-radius: 9999px !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.5) !important;
}
.contact-input:focus {
    border-color: #5D7052 !important;
    box-shadow: 0 0 0 3px rgba(93, 112, 82, 0.12) !important;
    outline: none !important;
}

/* Textarea — not pill-shaped */
textarea.contact-input {
    border-radius: 1.5rem !important;
}

/* Map container */
.reveal:has(iframe) {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    border-radius: 2rem !important;
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.12) !important;
    overflow: hidden !important;
}

/* Contact form card */
section .neu:has(#contactForm) {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 8px 30px -6px rgba(93, 112, 82, 0.12) !important;
    border-radius: 2rem !important;
}

/* Contact info bar */
.contact-info-bar {
    background: #FEFEFA !important;
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.1) !important;
    border-radius: 2rem !important;
    color: #2C2C24 !important;
}
.contact-info-bar * {
    color: #2C2C24 !important;
}
.contact-info-bar p,
.contact-info-bar [style*="footer-text"] {
    color: #78786C !important;
}
/* Icon containers — earth-tone circles */
.contact-info-bar > div:nth-child(1) > div:first-child {
    background: rgba(93, 112, 82, 0.1) !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: none !important;
}
.contact-info-bar > div:nth-child(2) > div:first-child {
    background: rgba(193, 140, 93, 0.12) !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: none !important;
}
.contact-info-bar > div:nth-child(3) > div:first-child {
    background: rgba(168, 84, 72, 0.1) !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: none !important;
}
.contact-info-bar > div:nth-child(1) svg {
    color: #5D7052 !important;
    stroke: #5D7052 !important;
}
.contact-info-bar > div:nth-child(2) svg {
    color: #C18C5D !important;
    stroke: #C18C5D !important;
}
.contact-info-bar > div:nth-child(3) svg {
    color: #A85448 !important;
    stroke: #A85448 !important;
}

/* Form buttons */
#contactForm .btn-primary,
#signupForm .btn-primary {
    background: #C18C5D !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 20px -2px rgba(193, 140, 93, 0.3) !important;
    padding: 16px 36px !important;
    font-size: 16px !important;
}
#contactForm .btn-primary:hover,
#signupForm .btn-primary:hover {
    background: #A87A4E !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 24px -4px rgba(193, 140, 93, 0.4) !important;
}

/* Form alerts */
.form-alert {
    border-radius: 1.5rem !important;
    border: 1px solid transparent !important;
    font-weight: 500 !important;
}
.form-alert.success {
    background: #F0F7ED !important;
    border-color: #B5D4AA !important;
    color: #3A5030 !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.1) !important;
}
.form-alert.error {
    background: #FBF0EE !important;
    border-color: #E0B5AE !important;
    color: #8B3D33 !important;
    box-shadow: 0 2px 10px -2px rgba(168, 84, 72, 0.1) !important;
}
.field-error {
    color: #A85448 !important;
    font-weight: 500 !important;
}
.contact-input.is-error {
    border-color: #A85448 !important;
    box-shadow: 0 0 0 3px rgba(168, 84, 72, 0.1) !important;
}

/* Social buttons */
.social-btn {
    border: 1px solid #DED8CF !important;
    box-shadow: 0 2px 8px -2px rgba(93, 112, 82, 0.06) !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.5) !important;
}
.social-btn:hover {
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.12) !important;
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   SIGNUP PAGE
   ========================================================================== */

a.neu-subtle:has(.rounded-full) {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.08) !important;
    border-radius: 9999px !important;
}
a.neu-subtle .rounded-full {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
}

.or-divider span {
    font-weight: 500 !important;
}

/* ==========================================================================
   FEATURES PAGE
   ========================================================================== */

.feature-nav {
    background: rgba(240, 235, 229, 0.4) !important;
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.06) !important;
    border-radius: 9999px !important;
}
.feature-nav-link {
    border-radius: 9999px !important;
    font-weight: 500 !important;
}
.feature-nav-link.active {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.2) !important;
}

/* Module cards */
.module-card {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.1) !important;
    border-radius: 1.5rem !important;
    background: #FEFEFA !important;
    transition: all 0.3s ease !important;
}
.module-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px -6px rgba(93, 112, 82, 0.15) !important;
}

/* Module icon colors — earth tones shuffled */
.module-card:nth-child(1) .module-icon { background: #5D7052 !important; color: #F3F4F1 !important; }
.module-card:nth-child(2) .module-icon { background: #C18C5D !important; color: #FFFFFF !important; }
.module-card:nth-child(3) .module-icon { background: rgba(168, 84, 72, 0.85) !important; color: #F3F4F1 !important; }
.module-card:nth-child(4) .module-icon { background: #7A6F60 !important; color: #F3F4F1 !important; }
.module-card:nth-child(5) .module-icon { background: #5D7052 !important; color: #F3F4F1 !important; }
.module-card:nth-child(6) .module-icon { background: #C18C5D !important; color: #FFFFFF !important; }
.module-card:nth-child(7) .module-icon { background: rgba(168, 84, 72, 0.85) !important; color: #F3F4F1 !important; }
.module-card:nth-child(8) .module-icon { background: #7A6F60 !important; color: #F3F4F1 !important; }

.module-card .module-icon {
    border: none !important;
    box-shadow: none !important;
    border-radius: 1rem !important;
}
.module-card .module-icon svg {
    color: #F3F4F1 !important;
    stroke: #F3F4F1 !important;
}

/* Integration tiles */
.integration-tile {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 10px -2px rgba(93, 112, 82, 0.06) !important;
    border-radius: 1rem !important;
    background: #FEFEFA !important;
}
.integration-tile:hover {
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.12) !important;
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

article.neu {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 6px 24px -6px rgba(93, 112, 82, 0.1) !important;
    border-radius: 2rem !important;
}

/* Sidebar TOC */
aside .neu-subtle {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 4px 16px -4px rgba(93, 112, 82, 0.08) !important;
    border-radius: 1.5rem !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

/* Full-width footer, no rounded corners */
footer > div {
    max-width: 100% !important;
    padding: 0 !important;
}
footer .mx-5 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    padding-left: max(2rem, calc((100vw - 1080px) / 2 + 2rem)) !important;
    padding-right: max(2rem, calc((100vw - 1080px) / 2 + 2rem)) !important;
}

.footer-social {
    background: #5D7052 !important;
    border: none !important;
    box-shadow: 0 2px 8px -2px rgba(93, 112, 82, 0.3) !important;
    color: #F3F4F1 !important;
    border-radius: 12px !important;
}
.footer-social:hover {
    background: #4A5C42 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px -3px rgba(93, 112, 82, 0.4) !important;
}

footer a.text-dim {
    color: rgba(243,244,241,0.5) !important;
}
footer a.text-dim:hover {
    color: #C18C5D !important;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

#mobile-menu.mobile-menu {
    background: #FDFCF8 !important;
    border-left: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: -20px 0 60px rgba(93, 112, 82, 0.1) !important;
}
#mobile-menu .neu-subtle {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 8px -2px rgba(93, 112, 82, 0.06) !important;
    border-radius: 1rem !important;
    background: #FEFEFA !important;
}
#mobile-menu .neu-subtle:hover {
    background: rgba(93, 112, 82, 0.06) !important;
    box-shadow: 0 4px 14px -3px rgba(93, 112, 82, 0.12) !important;
}
#nav-close.neu-subtle {
    border: 1px solid rgba(222, 216, 207, 0.5) !important;
    box-shadow: 0 2px 8px -2px rgba(93, 112, 82, 0.06) !important;
    background: #FEFEFA !important;
    border-radius: 12px !important;
}
.mob-link {
    color: #2C2C24 !important;
    font-weight: 600 !important;
}
#mobile-menu .btn-primary {
    background: #5D7052 !important;
    color: #F3F4F1 !important;
    border: none !important;
    box-shadow: 0 4px 20px -2px rgba(93, 112, 82, 0.3) !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
    .h1 {
        font-size: 38px !important;
        letter-spacing: -0.02em !important;
    }
    .h2 {
        font-size: 32px !important;
    }

    /* Reduce blob sizes on mobile */
    .hero-section::before {
        width: 200px !important;
        height: 200px !important;
    }
    .hero-section::after {
        width: 180px !important;
        height: 180px !important;
    }

    .cta-section {
        border-radius: 2rem !important;
    }

    #planGrid > div.neu:has(.popular-badge) {
        transform: none !important;
    }
}

/* Nav dropdown */
.nav-dropdown-menu {
    background: #FEFEFA !important;
    border: 1px solid rgba(222,216,207,0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px -2px rgba(93,112,82,0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.nav-dropdown-menu a { color: #5D7052 !important; border-radius: 14px !important; }
.nav-dropdown-menu a:hover { background: rgba(93,112,82,0.08) !important; }
.nav-dropdown-toggle { color: var(--ink) !important; }
.mob-accordion-toggle { color: var(--ink) !important; }
.mob-accordion-body a { color: var(--muted) !important; }
.mob-accordion-body a:hover { color: #5D7052 !important; }
