/* ==========================================================================
   Playful Geometric Design System — Theme Override
   Memphis-inspired: hard shadows, chunky borders, bouncy interactions
   Load AFTER style.css to override neumorphic defaults.
   ========================================================================== */

/* --- Self-hosted fonts --- */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-latin.woff2') format('woff2');
    font-weight: 400 800;
    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: 'Plus Jakarta Sans';
    src: url('../fonts/plus-jakarta-sans-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 */
    --canvas: #FFFDF5;
    --ink: #1E293B;
    --muted: #64748B;
    --dim: #94A3B8;
    --divider: #E2E8F0;
    --accent: #8B5CF6;

    /* Surfaces */
    --card-bg: #FFFFFF;
    --card-border: #1E293B;
    --card-shadow-light: transparent;
    --card-shadow-dark: transparent;
    --card-inset-border: transparent;

    /* Navbar */
    --nav-bg: #FFFFFF;
    --nav-icon-gradient-start: #8B5CF6;
    --nav-icon-gradient-end: #8B5CF6;

    /* Footer */
    --footer-bg: #1E293B;
    --footer-text: #F1F5F9;
    --footer-gradient-start: #64748B;
    --footer-gradient-end: #1E293B;
    --footer-radius: 0;

    /* Heading gradient → solid dark */
    --grad-start: #1E293B;
    --grad-end: #1E293B;

    /* Buttons */
    --btn-bg: #8B5CF6;
    --btn-text: #FFFFFF;
    --btn-hover-bg: #7C3AED;

    /* Forms */
    --input-bg: #FFFFFF;
    --input-border: #CBD5E1;
    --input-shadow: transparent;

    /* Feedback */
    --success-bg: #ECFDF5;
    --success-border: #6EE7B7;
    --success-text: #065F46;
    --error-bg: #FEF2F2;
    --error-border: #FCA5A5;
    --error-text: #991B1B;
    --error-accent: #EF4444;
    --field-error: #DC2626;

    /* Fonts */
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-hand: 'Outfit', system-ui, sans-serif;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 24px;
    --radius-2xl: 9999px;

    /* Misc */
    --tooltip-bg: #1E293B;
    --tooltip-text: #FFFFFF;
    --dot-inactive: #E2E8F0;
    --dot-active: #8B5CF6;
    --section-alt-bg: #F1F5F9;
    --marker-color: #E2E8F0;
    --hover-bg: rgba(139,92,246,0.08);
}

/* --- Bouncy transition base --- */
* {
    transition-timing-function: cubic-bezier(0.34,1.56,0.64,1) !important;
}

/* --- Keyframes --- */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* 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.02em !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: 60px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
}
.h2 {
    font-size: 44px !important;
    line-height: 1.1 !important;
}

/* ==========================================================================
   CORE COMPONENTS: Kill neumorphic, add hard shadows
   ========================================================================== */

.neu {
    background: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
}
.neu-subtle {
    background: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
}

/* ==========================================================================
   BUTTONS: "Candy Button" with hard shadow
   ========================================================================== */

.btn-primary {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.btn-primary:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 6px 6px 0px 0px #1E293B !important;
    background: #7C3AED !important;
}
.btn-primary:active {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}
.btn-primary.sm {
    padding: 10px 20px !important;
    border-radius: 9999px !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
}
.btn-primary.sm:hover {
    transform: translate(-1px, -1px) !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
}

.btn-secondary {
    background: transparent !important;
    color: var(--ink) !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.btn-secondary:hover {
    background: #FBBF24 !important;
    transform: translate(-1px, -1px) !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
}

/* ==========================================================================
   BADGES: Colorful pills with hard shadow
   ========================================================================== */

.badge {
    background: #FBBF24 !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    color: #1E293B !important;
    font-weight: 600 !important;
    transform: rotate(-2deg) !important;
}
.badge svg {
    color: #1E293B !important;
}

/* Badge color variants */
.badge-green {
    background: #34D399 !important;
}
.badge-blue {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
}
.badge-blue svg {
    color: #FFFFFF !important;
}
.badge-purple {
    background: #F472B6 !important;
    color: #FFFFFF !important;
}
.badge-purple svg {
    color: #FFFFFF !important;
}
.badge-white {
    background: #FFFFFF !important;
    color: #1E293B !important;
}
.badge-gray {
    background: #F1F0EB !important;
    color: #64748B !important;
    border-color: #E2E0D8 !important;
}

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

.hero-section {
    background: linear-gradient(180deg, #FEF3C7 0%, #FFFDF5 60%) !important;
}

/* Dot grid pattern overlay */
.hero-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70% !important;
    background-image: radial-gradient(circle, #CBD5E1 1.2px, transparent 1.2px) !important;
    background-size: 28px 28px !important;
    mask-image: radial-gradient(ellipse at center top, black 10%, transparent 65%) !important;
    -webkit-mask-image: radial-gradient(ellipse at center top, black 10%, transparent 65%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Hero badge */
.hero-badge {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    background: #FFFFFF !important;
    border-radius: 9999px !important;
}
.hero-badge-inner {
    border: 2px solid #1E293B !important;
    box-shadow: none !important;
    background: #FEF3C7 !important;
    border-radius: 9999px !important;
    color: #1E293B !important;
    font-weight: 600 !important;
}
.pulse {
    background: #34D399 !important;
}
.pulse::before {
    background: #34D399 !important;
}

/* Hero screenshot card */
.hero-tilt .neu {
    box-shadow: 8px 8px 0px 0px #1E293B !important;
    border-radius: 20px !important;
}

/* ==========================================================================
   NAVBAR: Chunky pill with hard shadow
   ========================================================================== */

nav .neu {
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    background: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
nav .font-heading a:hover,
nav a:hover {
    background: rgba(139,92,246,0.1) !important;
}

/* ==========================================================================
   ICON FEATURES: Colored circles
   ========================================================================== */

.icon-feature {
    background: #8B5CF6 !important;
    border-radius: 9999px !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    color: #FFFFFF !important;
}
.icon-feature svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* Cycle icon colors — confetti pattern */
/* Problem section (3 cards) */
section:nth-of-type(3) .icon-feature:nth-child(1) { background: #8B5CF6 !important; }
section:nth-of-type(3) .neu:nth-child(2) .icon-feature { background: #F472B6 !important; }
section:nth-of-type(3) .neu:nth-child(3) .icon-feature { background: #FBBF24 !important; color: #1E293B !important; }
section:nth-of-type(3) .neu:nth-child(3) .icon-feature svg { color: #1E293B !important; stroke: #1E293B !important; }

/* Why Worksuite bento (6 cards) */
section:nth-of-type(5) .grid > .neu:nth-child(1) .icon-feature { background: #34D399 !important; color: #1E293B !important; }
section:nth-of-type(5) .grid > .neu:nth-child(1) .icon-feature svg { color: #1E293B !important; stroke: #1E293B !important; }
section:nth-of-type(5) .grid > .neu:nth-child(2) .icon-feature { background: #F472B6 !important; }
section:nth-of-type(5) .grid > .neu:nth-child(3) .icon-feature { background: #FBBF24 !important; color: #1E293B !important; }
section:nth-of-type(5) .grid > .neu:nth-child(3) .icon-feature svg { color: #1E293B !important; stroke: #1E293B !important; }
section:nth-of-type(5) .grid > .neu:nth-child(4) .icon-feature { background: #8B5CF6 !important; }
section:nth-of-type(5) .grid > .neu:nth-child(5) .icon-feature { background: #34D399 !important; color: #1E293B !important; }
section:nth-of-type(5) .grid > .neu:nth-child(5) .icon-feature svg { color: #1E293B !important; stroke: #1E293B !important; }

/* Tab panel icon features — cycle through colors */
.tab-panel .icon-feature:nth-child(1) { background: #8B5CF6 !important; }
.tab-panel .space-y-4 > div:nth-child(1) .icon-feature { background: #8B5CF6 !important; }
.tab-panel .space-y-4 > div:nth-child(2) .icon-feature { background: #F472B6 !important; }
.tab-panel .space-y-4 > div:nth-child(3) .icon-feature { background: #FBBF24 !important; color: #1E293B !important; }
.tab-panel .space-y-4 > div:nth-child(3) .icon-feature svg { color: #1E293B !important; stroke: #1E293B !important; }

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

.tab-btn.neu-subtle {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
}
.tab-btn:not(.neu-subtle) {
    border: 2px solid transparent !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
}
.tab-btn:not(.neu-subtle):hover {
    background: rgba(139,92,246,0.1) !important;
    border-color: transparent !important;
}

/* Tab panel container */
.tab-panel.neu {
    background: #F8FAFC !important;
    border: 2px solid #1E293B !important;
    box-shadow: 6px 6px 0px 0px #E2E8F0 !important;
    border-radius: 24px !important;
}

/* Tab panel inner cards */
.tab-panel .neu-subtle {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 16px !important;
}
.tab-panel .neu {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
}

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

.compare-before {
    border: 2px solid #CBD5E1 !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
}
.compare-after {
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #8B5CF6 !important;
}

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

.stats-bar {
    border: 2px solid #1E293B !important;
    box-shadow: 6px 6px 0px 0px #FBBF24 !important;
    border-radius: 20px !important;
    background: #FFFFFF !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: 2px dashed #E2E8F0 !important;
}

/* Center logo: hard shadow */
section:has(.orbit) .absolute.left-1\/2.top-1\/2 > div {
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #8B5CF6 !important;
    border-radius: 24px !important;
    background: #FFFFFF !important;
}
section:has(.orbit) .absolute.left-1\/2.top-1\/2 > div > div {
    background: #FEF3C7 !important;
    box-shadow: none !important;
}
section:has(.orbit) .absolute.left-1\/2.top-1\/2 svg {
    filter: none !important;
    stroke: #1E293B !important;
}

/* Orbit tiles: hard shadow */
.orbit-tile .neu {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    border-radius: 16px !important;
    background: #FFFFFF !important;
}
.orbit-tile .neu svg {
    filter: none !important;
}

/* Outer orbit ring */
section:has(.orbit) > div > .reveal > .absolute.inset-0 .rounded-full {
    border: 2px dashed #CBD5E1 !important;
}

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

.t-slide.neu,
.t-slide .neu {
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
}
.t-slide:nth-child(2n) .neu,
.t-slide:nth-child(2n).neu {
    box-shadow: 5px 5px 0px 0px #F472B6 !important;
}
.t-slide:nth-child(3n) .neu,
.t-slide:nth-child(3n).neu {
    box-shadow: 5px 5px 0px 0px #FBBF24 !important;
}

.t-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 9999px !important;
    border: 2px solid #1E293B !important;
    background: #FFFFFF !important;
}
.t-dot.active {
    background: #8B5CF6 !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}

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

.price-toggle {
    background: #F1F5F9 !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    border-radius: 9999px !important;
}
.price-toggle button {
    border-radius: 9999px !important;
    font-weight: 700 !important;
}
.price-toggle button.active {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}

/* Pricing cards */
#planGrid > div.neu {
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 24px !important;
    padding: 28px !important;
}
/* Featured card: pink shadow (targets card with Popular badge) */
#planGrid > div.neu:has(.popular-badge) {
    box-shadow: 8px 8px 0px 0px #F472B6 !important;
    transform: scale(1.03) !important;
}

/* Plan name badge */
.plan-name {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border-radius: 9999px !important;
    padding: 4px 16px !important;
    font-weight: 700 !important;
    border: 2px solid #1E293B !important;
    display: inline-block !important;
}
#planGrid > div.neu:nth-child(1) .plan-name {
    background: #34D399 !important;
    color: #1E293B !important;
}
#planGrid > div.neu:nth-child(3) .plan-name {
    background: #FBBF24 !important;
    color: #1E293B !important;
}

/* Popular badge */
.popular-badge {
    background: #FBBF24 !important;
    color: #1E293B !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    font-weight: 700 !important;
    transform: rotate(3deg) !important;
}

/* Check star */
.check-star {
    background: #34D399 !important;
    color: #1E293B !important;
    border-radius: 9999px !important;
    border: 2px solid #1E293B !important;
}

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

/* Currency select */
.currency-select {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
}

/* Compare table */
.compare-table th,
.compare-table td {
    border-bottom: 2px solid #E2E8F0 !important;
}
.compare-table thead th {
    font-weight: 700 !important;
}
.compare-table .check {
    background: #34D399 !important;
    color: #1E293B !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
}

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

.faq-item.neu {
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
}
.faq-item.open.neu {
    box-shadow: 4px 4px 0px 0px #8B5CF6 !important;
}
.faq-toggle {
    background: #1E293B !important;
    border: 2px solid #1E293B !important;
    box-shadow: 2px 2px 0px 0px #8B5CF6 !important;
}

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

.cta-section {
    background: #8B5CF6 !important;
    border: 2px solid #1E293B !important;
    border-radius: 32px !important;
    box-shadow: 8px 8px 0px 0px #1E293B !important;
    position: relative !important;
    overflow: hidden !important;
}
.cta-section * {
    color: #FFFFFF !important;
}
.cta-section .h-grad {
    -webkit-text-fill-color: #FFFFFF !important;
    color: #FFFFFF !important;
}
/* Hide badge in CTA */
.cta-section .badge {
    background: rgba(255,255,255,0.2) !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
}
.cta-section .badge svg {
    color: #FFFFFF !important;
}
.cta-section .btn-primary {
    background: #FBBF24 !important;
    color: #1E293B !important;
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
}
.cta-section .btn-primary:hover {
    background: #F59E0B !important;
    transform: translate(-2px, -2px) !important;
    box-shadow: 6px 6px 0px 0px #1E293B !important;
}
.cta-section .btn-secondary {
    background: transparent !important;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}
.cta-section .btn-secondary:hover {
    background: #FBBF24 !important;
    border-color: #1E293B !important;
    color: #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
}

/* Decorative shapes */
.cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: -30px !important;
    right: -30px !important;
    width: 120px !important;
    height: 120px !important;
    background: #FBBF24 !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    opacity: 0.6 !important;
    z-index: 0 !important;
}
.cta-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: -20px !important;
    left: 10% !important;
    width: 80px !important;
    height: 80px !important;
    background: #F472B6 !important;
    border: 2px solid #1E293B !important;
    border-radius: 9999px !important;
    opacity: 0.5 !important;
    z-index: 0 !important;
}

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

.marquee-track span {
    font-weight: 700 !important;
    color: #1E293B !important;
    position: relative;
}
.marquee-track span::after {
    content: '•' !important;
    /* margin-left: 24px !important; */
    color: #8B5CF6 !important;
    position: absolute;
    left: -28px;
    top: calc(50% - 16.5px);
}

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

.contact-input {
    border: 2px solid #CBD5E1 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    background: #FFFFFF !important;
}
.contact-input:focus {
    border-color: #8B5CF6 !important;
    box-shadow: 4px 4px 0px 0px #8B5CF6 !important;
    outline: none !important;
}

/* Map container */
.reveal:has(iframe) {
    border: 2px solid #1E293B !important;
    border-radius: 20px !important;
    box-shadow: 4px 4px 0px 0px #E2E8F0 !important;
    overflow: hidden !important;
}

/* Contact form card */
section .neu:has(#contactForm) {
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 24px !important;
}

/* Contact info bar */
.contact-info-bar {
    background: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
    color: #1E293B !important;
}
.contact-info-bar * {
    color: #1E293B !important;
}
.contact-info-bar p,
.contact-info-bar [style*="footer-text"] {
    color: #64748B !important;
}
/* Icon containers — colorful circles */
.contact-info-bar > div:nth-child(1) > div:first-child {
    background: #8B5CF6 !important;
    border: 2px solid #1E293B !important;
    border-radius: 12px !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}
.contact-info-bar > div:nth-child(2) > div:first-child {
    background: #F472B6 !important;
    border: 2px solid #1E293B !important;
    border-radius: 12px !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}
.contact-info-bar > div:nth-child(3) > div:first-child {
    background: #FBBF24 !important;
    border: 2px solid #1E293B !important;
    border-radius: 12px !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}
.contact-info-bar > div:nth-child(1) svg,
.contact-info-bar > div:nth-child(2) svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}
.contact-info-bar > div:nth-child(3) svg {
    color: #1E293B !important;
    stroke: #1E293B !important;
}

/* Form buttons */
#contactForm .btn-primary,
#signupForm .btn-primary {
    background: #FBBF24 !important;
    color: #1E293B !important;
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    padding: 16px 36px !important;
    font-size: 16px !important;
}
#contactForm .btn-primary:hover,
#signupForm .btn-primary:hover {
    background: #F59E0B !important;
    transform: translate(-2px, -2px) !important;
    box-shadow: 6px 6px 0px 0px #1E293B !important;
}

/* Form alerts */
.form-alert {
    border-radius: 16px !important;
    border: 2px solid #1E293B !important;
    font-weight: 500 !important;
}
.form-alert.success {
    background: #ECFDF5 !important;
    color: #065F46 !important;
    box-shadow: 3px 3px 0px 0px #34D399 !important;
}
.form-alert.error {
    background: #FEF2F2 !important;
    color: #991B1B !important;
    box-shadow: 3px 3px 0px 0px #EF4444 !important;
}
.field-error {
    color: #DC2626 !important;
    font-weight: 600 !important;
}
.contact-input.is-error {
    border-color: #EF4444 !important;
    box-shadow: 3px 3px 0px 0px #EF4444 !important;
}

/* Social buttons */
.social-btn {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 16px !important;
    background: #FFFFFF !important;
}
.social-btn:hover {
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    transform: translate(-1px, -1px) !important;
}

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

/* My Account button */
a.neu-subtle:has(.rounded-full) {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 9999px !important;
}
a.neu-subtle .rounded-full {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
}

/* Or-divider */
.or-divider span {
    font-weight: 600 !important;
}

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

.feature-nav {
    background: #F1F5F9 !important;
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #1E293B !important;
    border-radius: 9999px !important;
}
.feature-nav-link {
    border-radius: 9999px !important;
    font-weight: 600 !important;
}
.feature-nav-link.active {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
}

/* Module cards */
.module-card {
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
}
.module-card:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 6px 6px 0px 0px #8B5CF6 !important;
}

/* Module icon colors — shuffled */
.module-card:nth-child(1) .module-icon { background: #8B5CF6 !important; }
.module-card:nth-child(2) .module-icon { background: #FBBF24 !important; }
.module-card:nth-child(3) .module-icon { background: #F472B6 !important; }
.module-card:nth-child(4) .module-icon { background: #34D399 !important; }
.module-card:nth-child(5) .module-icon { background: #8B5CF6 !important; }
.module-card:nth-child(6) .module-icon { background: #F472B6 !important; }
.module-card:nth-child(7) .module-icon { background: #FBBF24 !important; }
.module-card:nth-child(8) .module-icon { background: #34D399 !important; }

/* Module icon: border + shadow like icon-feature */
.module-card .module-icon {
    border: 2px solid #1E293B !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
    border-radius: 9999px !important;
    color: #FFFFFF !important;
}
.module-card:nth-child(2) .module-icon,
.module-card:nth-child(4) .module-icon,
.module-card:nth-child(7) .module-icon {
    color: #1E293B !important;
}
.module-card:nth-child(2) .module-icon svg,
.module-card:nth-child(4) .module-icon svg,
.module-card:nth-child(7) .module-icon svg {
    color: #1E293B !important;
    stroke: #1E293B !important;
}

/* Integration tiles */
.integration-tile {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 16px !important;
    background: #FFFFFF !important;
}
.integration-tile:hover {
    box-shadow: 4px 4px 0px 0px #8B5CF6 !important;
    transform: translate(-1px, -1px) !important;
}

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

/* Article cards */
article.neu {
    border: 2px solid #1E293B !important;
    box-shadow: 5px 5px 0px 0px #E2E8F0 !important;
    border-radius: 20px !important;
}

/* Sidebar TOC */
aside .neu-subtle {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 16px !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: #8B5CF6 !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 3px 3px 0px 0px rgba(255,255,255,0.3) !important;
    color: #FFFFFF !important;
}
.footer-social:hover {
    background: #7C3AED !important;
    transform: translate(-1px, -1px) !important;
    box-shadow: 4px 4px 0px 0px rgba(255,255,255,0.3) !important;
}

footer a.text-dim {
    color: rgba(241,245,249,0.6) !important;
}
footer a.text-dim:hover {
    color: #FBBF24 !important;
}

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

#mobile-menu.mobile-menu {
    border-left: 2px solid #1E293B !important;
}
[dir="rtl"] #mobile-menu.mobile-menu {
    border-left: none !important;
    border-right: 2px solid #1E293B !important;
}
#mobile-menu .neu-subtle {
    border: 2px solid #1E293B !important;
    box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    border-radius: 12px !important;
    background: #FFFFFF !important;
}
#mobile-menu .neu-subtle:hover {
    background: #FEF3C7 !important;
    box-shadow: 4px 4px 0px 0px #8B5CF6 !important;
}
#nav-close.neu-subtle {
    border: 2px solid #1E293B !important;
    box-shadow: 2px 2px 0px 0px #1E293B !important;
    background: #FFFFFF !important;
}
.mob-link {
    color: #1E293B !important;
    font-weight: 700 !important;
}
#mobile-menu .btn-primary {
    background: #8B5CF6 !important;
    color: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   RESPONSIVE: Reduce hard shadow sizes on mobile
   ========================================================================== */

@media (max-width: 767px) {
    .h1 {
        font-size: 36px !important;
        letter-spacing: -0.02em !important;
    }
    .h2 {
        font-size: 32px !important;
    }
    .neu {
        box-shadow: 3px 3px 0px 0px #E2E8F0 !important;
    }
    .btn-primary {
        box-shadow: 3px 3px 0px 0px #1E293B !important;
    }
    .btn-primary:hover {
        box-shadow: 4px 4px 0px 0px #1E293B !important;
    }
    nav .neu {
        box-shadow: 3px 3px 0px 0px #1E293B !important;
    }
    .hero-tilt .neu {
        box-shadow: 5px 5px 0px 0px #1E293B !important;
    }
    .stats-bar {
        box-shadow: 4px 4px 0px 0px #FBBF24 !important;
    }
    .cta-section {
        box-shadow: 5px 5px 0px 0px #1E293B !important;
    }
    #planGrid > div.neu:has(.popular-badge) {
        transform: none !important;
    }
}

/* Nav dropdown */
.nav-dropdown-menu {
    background: #FFFFFF !important;
    border: 2px solid #1E293B !important;
    border-radius: 16px !important;
    box-shadow: 4px 4px 0px 0px #1E293B !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.nav-dropdown-menu a { color: #1E293B !important; border-radius: 10px !important; font-weight: 600 !important; }
.nav-dropdown-menu a:hover { background: #F5F3FF !important; color: #8B5CF6 !important; transform: translateX(2px); }
.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: #8B5CF6 !important; }
