/* ============================================================
   OsherVest — Shared Stylesheet
   Product of Desa Solutions India Pvt Ltd
   ============================================================ */

:root {
    --bg-base: #f0f3f5;
    --surface: #e8edf2;
    --surface-light: #f7fbff;
    --surface-card: #edf1f5;

    --text-primary: #2d2b28;
    --text-secondary: #7a756e;
    --text-muted: #a09b94;

    /* Brand palette */
    --brand-brown: #7a4e36;
    --brand-brown-dark: #5c3520;
    --brand-orange: #e8622a;
    /* Only for primary CTAs */
    --brand-orange-light: #f0845a;
    --brand-gold: #b8883a;
    /* Hero accent — warm gold matching logo */
    --brand-green: #25d366;
    /* WhatsApp green */

    /* Navbar — dark warm brown matching logo gold tones */
    --nav-bg: #2c1e14;
    --nav-border: rgba(200, 160, 80, 0.15);

    /* Neomorphic Shadows */
    --shadow-light: -6px -6px 16px rgba(255, 255, 255, 0.9);
    --shadow-dark: 6px 6px 16px rgba(170, 182, 198, 0.65);
    --shadow-hover-dark: 8px 8px 22px rgba(155, 170, 190, 0.75);
    --shadow-inset-light: inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    --shadow-inset-dark: inset 4px 4px 8px rgba(170, 182, 198, 0.5);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --transition: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── Background ── */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
}

/* Softer, more neutral orbs — less orange */
.orb-1 {
    width: 560px;
    height: 560px;
    background: #e8d5c4;
    top: -120px;
    left: -120px;
    animation: floatOrb 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 650px;
    height: 650px;
    background: #d8cabb;
    bottom: -220px;
    right: -160px;
    animation: floatOrb 19s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 420px;
    height: 420px;
    background: #e8e0d5;
    top: 40%;
    left: 28%;
    animation: floatOrb 22s linear infinite alternate;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(55px, 90px) scale(1.12);
    }
}

.layout-wrapper {
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Utilities ── */
.text-center {
    text-align: center;
}

/* Hero gradient text uses warm gold — NOT orange */
.text-gradient {
    color: var(--brand-gold);
}

/* ── Social icons — top right of navbar ── */
.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: rgba(240, 220, 180, 0.55);
    transition: color 0.2s, background 0.2s;
    text-decoration: none !important;
    flex-shrink: 0;
}

.nav-social-icon:hover {
    color: #f0d8a8 !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Thin divider between social icons and Log In button */
.nav-actions .nav-social-icon:last-of-type {
    margin-right: 0.5rem;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(200, 160, 80, 0.2);
}

/* ── Navbar ── */
.navbar {
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--nav-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #f0d8a8;
}

/* Warm gold text on dark navbar */
/* Owl logo — transparent PNG, drop shadow gives depth on dark bg */
.brand-logo-img {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    background: transparent;
    display: block;
}

/* Footer smaller variant */
.brand-logo-img-sm {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}

/* SVG logo classes kept for compatibility */
.brand-logo svg {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: block;
}

.brand-logo-sm svg {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    display: block;
}

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

.nav-links a {
    color: rgba(240, 220, 180, 0.75);
    /* Soft gold-white on dark bg */
    text-decoration: none;
    margin: 0 1.25rem;
    font-weight: 600;
    transition: color var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #f0d8a8;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: rgba(240, 216, 168, 0.85);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    letter-spacing: -0.1px;
}

.btn-primary {
    background: var(--brand-orange);
    color: white;
    box-shadow: 4px 4px 12px rgba(255, 120, 66, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 18px rgba(255, 120, 66, 0.4), -4px -4px 10px rgba(255, 255, 255, 0.8);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Navbar-context ghost — used in dark header */
.nav-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(240, 216, 168, 0.9);
    border: 1px solid rgba(200, 160, 80, 0.28);
    box-shadow: none;
}

.nav-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(200, 160, 80, 0.5);
}

/* Page-body ghost/secondary — light skeuo style */
.btn-secondary,
.btn-ghost {
    background: var(--surface);
    color: var(--brand-brown);
    border: none;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.09), -5px -5px 12px #ffffff;
}

.btn-secondary:hover,
.btn-ghost:hover {
    color: var(--brand-brown-dark);
    box-shadow: var(--shadow-inset-dark), var(--shadow-inset-light);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.88rem;
}

/* ── Cards / Panels ── */
.glass-panel {
    background: var(--surface-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-dark), var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ── Hero ── */
.hero-section {
    padding: 7.5rem 0 4rem;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.3rem;
    background: var(--surface);
    border-radius: var(--radius-pill);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-inset-dark), var(--shadow-light);
}

/* Meta Technical Provider Badge */
.badge-meta {
    background: linear-gradient(135deg, #5a3120, #c9801e);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(201, 128, 30, 0.30);
    border: none;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: var(--brand-brown);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 1.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hero Window */
.hero-image-wrapper {
    margin-top: 5rem;
    perspective: 1200px;
}

.hero-window {
    transform: rotateX(6deg) scale(0.98);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-window {
    transform: rotateX(0deg) scale(1);
}

.glass-window {
    background: var(--surface-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-dark), var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.window-header {
    height: 40px;
    background: var(--surface);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.window-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.ui-snippet {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* ── Trust / Stats ── */
.trust-section {
    padding: 5rem 0 4rem;
}

.trusted-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
    color: var(--brand-brown);
}

.stat-card .text-gradient {
    color: var(--brand-orange);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── Feature Split ── */
.feature-split-section {
    padding: 7rem 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.reverse .split-container {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--surface);
    box-shadow: var(--shadow-dark), var(--shadow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    letter-spacing: -1px;
    color: var(--brand-brown);
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.split-image {
    flex: 1;
    perspective: 1000px;
}

.split-image .glass-window {
    transform: rotateY(-5deg) rotateX(4deg);
    transition: transform 0.4s;
}

.split-image .glass-window:hover {
    transform: rotateY(0) rotateX(0);
}

.reverse .split-image .glass-window {
    transform: rotateY(5deg) rotateX(4deg);
}

.tall-window {
    max-height: 700px;
    overflow: hidden;
}

/* ── Bento Grid ── */
.feature-grid-section {
    padding: 6rem 0;
}

.center-desc {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.bento-card {
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover-dark), var(--shadow-light);
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bento-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--brand-brown);
}

.bento-content p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bento-img-wrap {
    margin: 0 -2.8rem -2.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.bento-img-wrap img {
    display: block;
    width: 100%;
    opacity: 0.95;
}

/* ── Advisors Section ── */
.advisors-section {
    padding: 7rem 0;
    background: rgba(142, 91, 65, 0.04);
    border-radius: 32px;
    margin: 0 1rem;
}

.advisors-header {
    margin-bottom: 4rem;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advisor-card {
    padding: 2.2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover-dark), var(--shadow-light);
}

.advisor-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advisor-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-brown);
    margin-bottom: 0.7rem;
}

.advisor-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
    padding: 6rem 0 8rem;
}

.cta-container {
    padding: 5rem 3rem;
    text-align: center;
    border-top: 4px solid var(--brand-orange);
}

.cta-badge {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.cta-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.3rem;
    letter-spacing: -1px;
    color: var(--brand-brown);
}

.cta-container>p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-sub a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}

.cta-sub a:hover {
    text-decoration: underline;
}

/* ── Footer — matches dark header ── */
footer {
    padding: 4.5rem 0 2rem;
    background: var(--nav-bg);
    /* Same dark brown as navbar */
    border-top: 1px solid var(--nav-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f0d8a8;
    margin-bottom: 0.3rem;
}

/* Gold on dark */
.footer-sub {
    font-size: 0.88rem;
    color: rgba(240, 220, 180, 0.65);
    font-weight: 500;
}

.footer-address {
    font-size: 0.84rem;
    color: rgba(240, 220, 180, 0.45);
    margin-top: 0.3rem;
}

.footer-cols {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(200, 160, 80, 0.6);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(240, 220, 180, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #f0d8a8;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 160, 80, 0.12);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(240, 220, 180, 0.4);
    margin-bottom: 0.3rem;
}

/* ── Inner Page Styles ── */
/* Page header banner for inner pages */
.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero .badge {
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--brand-brown);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Prose / Legal content */
.prose-section {
    padding: 3rem 0 6rem;
}

.prose-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark), var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4rem;
    max-width: 860px;
    margin: 0 auto;
}

.prose-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-brown);
    margin: 2.5rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.prose-card h2:first-of-type {
    margin-top: 0.5rem;
    border-top: none;
}

.prose-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-brown-dark);
    margin: 1.5rem 0 0.6rem;
}

.prose-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prose-card ul,
.prose-card ol {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-card li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.prose-card strong {
    color: var(--text-primary);
    font-weight: 700;
}

.prose-card a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}

.prose-card a:hover {
    text-decoration: underline;
}

.prose-meta {
    background: rgba(142, 91, 65, 0.06);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── Features Grid (features.html) ── */
.features-section {
    padding: 5rem 0;
}

.features-category {
    margin-bottom: 5rem;
}

.features-category-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-category-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.75), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover-dark), var(--shadow-light);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(232, 213, 196, 0.4), rgba(255, 255, 255, 0.9));
    border-radius: 14px;
    box-shadow: inset 2px 2px 4px rgba(255,255,255,0.9), 2px 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.6);
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* ── Interactive Features Page Tabs ── */
.features-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: sticky;
    top: 90px; 
    z-index: 100;
}

.features-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05), inset 0 2px 4px rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow-x: auto;
    max-width: 100%;
}

.features-tabs::-webkit-scrollbar {
    display: none;
}

.feature-tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.feature-tab-btn:hover {
    color: var(--brand-brown);
    background: rgba(255, 255, 255, 0.5);
}

.feature-tab-btn.active {
    background: var(--surface);
    color: var(--brand-brown);
    box-shadow: var(--shadow-inset-dark), var(--shadow-light);
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease-out forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Pricing (pricing.html) ── */
.pricing-section {
    padding: 4rem 0 7rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pricing-toggle span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-toggle .active-label {
    color: var(--brand-orange);
}

.toggle-switch {
    position: relative;
    width: 54px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    border-radius: 34px;
    box-shadow: var(--shadow-inset-dark), var(--shadow-inset-light);
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: var(--brand-orange);
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--brand-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s;
}

.pricing-card.glass-panel {
    background: var(--surface-card);
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.featured {
    background: var(--brand-brown);
    box-shadow: 0 20px 50px rgba(142, 91, 65, 0.35);
    border: none;
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card.featured .pricing-plan-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-price-sub,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-feature {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-card.featured .pricing-divider {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
}

.pricing-card.featured .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--brand-brown);
    line-height: 1;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    padding-top: 0.6rem;
    display: inline-block;
}

.pricing-price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}

.pricing-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.pricing-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.4rem 0;
}

.pricing-feature-check {
    color: var(--brand-orange);
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-feature-x {
    color: var(--text-muted);
    flex-shrink: 0;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 3rem;
    line-height: 1.65;
}

.pricing-note a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0 7rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-brown);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.contact-item-text a {
    font-size: 1rem;
    color: var(--brand-brown);
    font-weight: 600;
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--brand-orange);
}

.contact-form-card {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-dark), var(--shadow-inset-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    box-shadow: var(--shadow-inset-dark), var(--shadow-inset-light), 0 0 0 3px rgba(255, 120, 66, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 4px 4px 12px rgba(37, 211, 102, 0.25), -3px -3px 8px rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Full Mobile Support
   ═══════════════════════════════════════════ */

/* ── Tablet / Small desktop ── */
@media (max-width: 1060px) {
    .container {
        padding: 0 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-container {
        flex-direction: column !important;
        gap: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-cols {
        gap: 2.5rem;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {

    /* Typography */
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    /* Hero */
    .hero-section {
        padding: 5rem 0 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-trust {
        font-size: 0.78rem;
    }

    /* Nav — mobile dropdown inherits dark header bg */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        /* Dark brown — matches header */
        border-bottom: 1px solid var(--nav-border);
        backdrop-filter: blur(12px);
        padding: 1.2rem 1.5rem 1.5rem;
        gap: 0.2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        z-index: 199;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.05rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(200, 160, 80, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    /* Layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-category {
        margin-bottom: 3rem;
    }

    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-toggle {
        gap: 0.75rem;
    }

    /* Contact form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    /* Legal / Prose */
    .prose-card {
        padding: 2rem 1.25rem;
    }

    .prose-card h2 {
        font-size: 1.3rem;
    }

    /* CTA */
    .cta-section {
        padding: 4rem 0 5rem;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        text-align: center;
        justify-content: center;
    }

    /* Page hero */
    .page-hero {
        padding: 4rem 0 2.5rem;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-cols {
        flex-direction: column;
        gap: 1.75rem;
    }

    .footer-brand {
        gap: 0.75rem;
    }

    /* Nav actions: compact both buttons on mobile — both remain visible */
    /* Hide social icons from navbar on mobile — keep header clean */
    .nav-social-icon {
        display: none !important;
    }

    .nav-actions .btn-ghost,
    #nav-login-btn {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .nav-actions .btn-primary {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .navbar {
        position: relative;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-section {
        padding: 4rem 0 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-price {
        font-size: 2.4rem;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .bento-card {
        padding: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .hero-window {
        display: none;
    }

    .footer-cols {
        gap: 1.5rem;
    }
}