/* =========================================
   PORTAL PRO — PREMIUM SALES SITE
   Design System v2.0
   ========================================= */

:root {
    /* Palette */
    --forest:    #0d2420;
    --forest-mid: #163830;
    --forest-light: #1e4f45;
    --gold:      #d4af37;
    --gold-light: #e8c85a;
    --charcoal:  #111111;
    --off-white: #f5f3ee;
    --muted:     #8a9a96;
    --white:     #ffffff;
    --surface:   #f9fafb;
    --border:    rgba(0,0,0,0.07);

    /* Typography */
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'DM Serif Display', serif;

    /* Spacing */
    --section-gap: 7rem;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; }
em { font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: white; }

.btn-nav {
    background: var(--gold);
    color: var(--forest);
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
}
.btn-nav:hover { background: var(--gold-light); }

.btn-outline {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid rgba(13, 36, 32, 0.25);
}
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: white; }

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

.btn-full { width: 100%; justify-content: center; padding: 1rem; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* ===== LABELS & TITLES ===== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--gold); }

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 4rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}
.logo span { color: var(--gold); }
.navbar.scrolled .logo { color: var(--forest); }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a:hover { color: var(--forest); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: var(--forest);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/bg-texture.png') center/cover no-repeat;
    opacity: 0.3;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.trust-avatars { display: flex; }
.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--forest);
    margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #4a9e8a, #2c7a68); }
.av2 { background: linear-gradient(135deg, #c8a84b, #a67c3c); }
.av3 { background: linear-gradient(135deg, #6b8f71, #4a6b50); }

.hero-trust p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
    max-width: 620px;
}
.hero-proof-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    backdrop-filter: blur(10px);
}
.hero-proof-card span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.45rem;
}
.hero-proof-card strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}

.hero-visual { position: relative; }
.hero-img-wrapper { position: relative; }
.hero-demo-tag {
    position: absolute;
    top: -16px;
    right: 20px;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    color: var(--forest);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.card-1 { bottom: -15px; left: -25px; animation-delay: 0s; }
.card-2 { top: 20px; right: -20px; animation-delay: 1.5s; }

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

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}
.hero-scroll-hint span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.75rem;
}
.scroll-line {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}
.stat-item > div {
    display: inline;
}

.stat-number {
    display: inline;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--forest);
    line-height: 1;
}
.stat-item > span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-item p {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
    padding: var(--section-gap) 0;
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-light), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 36, 32, 0.1);
    border-color: rgba(13,36,32,0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--forest);
    transition: all 0.3s;
}
.feature-card:hover .feature-icon {
    background: var(--forest);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

.feature-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--forest);
    background: rgba(13,36,32,0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-top: 1.5rem;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--forest), var(--forest-mid));
    border-color: transparent;
}
.feature-highlight h3, .feature-highlight p { color: rgba(255,255,255,0.9); }
.feature-highlight p { color: rgba(255,255,255,0.6); }
.feature-highlight .feature-icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.feature-highlight:hover .feature-icon { background: var(--gold); color: var(--forest); }
.feature-highlight::before { background: linear-gradient(90deg, var(--gold), transparent); opacity: 1; }
.highlight-tag { background: rgba(212,175,55,0.2); color: var(--gold); }

/* ===== HOW IT WORKS ===== */
.how {
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}
.how-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--forest) 0%, #0a1e1b 100%);
    background-image: url('assets/bg-texture.png');
    background-size: cover;
    opacity: 1;
}
.how .container { position: relative; z-index: 2; }
.how .section-label, .how .section-title { position: relative; }

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.step h3 { color: white; font-size: 1.15rem; margin-bottom: 0.75rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; }

.step-arrow {
    font-size: 1.5rem;
    color: rgba(212,175,55,0.4);
    margin-top: 3rem;
    flex-shrink: 0;
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: var(--section-gap) 0;
    background: var(--surface);
    overflow: hidden;
}

.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-img {
    position: relative;
    display: flex;
    justify-content: center;
}
.showcase-img img {
    max-height: 600px;
    object-fit: contain;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(13,36,32,0.2));
}
.showcase-photo {
    width: min(420px, 100%);
    max-height: none;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(13,36,32,0.2);
}
.showcase-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.showcase-content .section-title { margin-bottom: 1.25rem; }

.showcase-content > p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.showcase-account {
    background: rgba(13,36,32,0.04);
    border: 1px solid rgba(13,36,32,0.08);
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.4rem;
}
.showcase-account-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
}
.showcase-account-row span {
    font-size: 0.8rem;
    color: var(--muted);
}
.showcase-account-row strong {
    text-align: right;
    font-size: 0.92rem;
    color: var(--forest);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
}
.check-icon {
    width: 24px;
    height: 24px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

/* ===== PORTAL GALLERY ===== */
.portal-gallery {
    padding: var(--section-gap) 0;
}
.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: -2rem 0 3rem;
}
.gallery-meta span {
    background: rgba(13,36,32,0.06);
    color: var(--forest);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.gallery-card {
    background: linear-gradient(180deg, #ffffff, #fafaf7);
    border: 1px solid rgba(13,36,32,0.08);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: 0 16px 40px rgba(13,36,32,0.06);
}
.gallery-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(13,36,32,0.06);
    color: var(--forest);
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.gallery-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.gallery-card-head h3 {
    font-size: 1.05rem;
    color: var(--charcoal);
}
.gallery-card-head strong {
    color: var(--forest);
    font-family: var(--font-serif);
    font-size: 1.45rem;
}
.gallery-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.gallery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gallery-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.gallery-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--section-gap) 0;
}

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

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.35s var(--ease);
}
.price-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.price-card.featured {
    background: var(--forest);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(13,36,32,0.25);
}
.price-card.featured .plan-name,
.price-card.featured .plan-price,
.price-card.featured .plan-features li { color: var(--white); }
.price-card.featured .plan-desc,
.price-card.featured .plan-monthly { color: rgba(255,255,255,0.55); }
.price-card.featured .plan-features li { border-color: rgba(255,255,255,0.1); }

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name { font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.plan-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 2rem; }

.plan-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
    line-height: 1;
}
.plan-price span { font-size: 1rem; font-family: var(--font-body); color: var(--muted); font-weight: 400; }

.plan-monthly {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--charcoal);
}
.plan-features li:last-child { border-bottom: none; }

/* ===== CTA FOOTER ===== */
.cta-footer {
    position: relative;
    overflow: hidden;
    padding: var(--section-gap) 0 0;
    background: var(--forest);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('assets/bg-texture.png') center/cover no-repeat;
    opacity: 0.2;
}

.cta-inner { position: relative; z-index: 2; max-width: 680px; }

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-content > p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.form-group input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-note,
.form-status {
    font-size: 0.82rem;
    line-height: 1.6;
}
.form-note {
    color: rgba(255,255,255,0.6);
}
.form-note a {
    color: var(--gold-light);
}
.form-status {
    min-height: 1.5rem;
    color: rgba(255,255,255,0.88);
}
.form-status.is-error {
    color: #fca5a5;
}
.post-submit-link[hidden] {
    display: none;
}

.legal-page {
    min-height: 100vh;
    padding: 4rem 0;
    background: var(--off-white);
}
.legal-inner {
    max-width: 800px;
}
.legal-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--forest);
    font-weight: 600;
}
.legal-updated {
    color: var(--muted);
    margin-bottom: 2rem;
}
.legal-section {
    margin-bottom: 2rem;
}
.legal-section h2 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--forest);
}
.legal-section p {
    color: var(--charcoal);
    line-height: 1.75;
}

.footer-bar {
    margin-top: var(--section-gap);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-logo { font-size: 1.2rem; font-weight: 800; color: white; }
.footer-logo span { color: var(--gold); }
.footer-bar p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
    :root { --section-gap: 5rem; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background: var(--forest);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.35s var(--ease);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
    .hamburger { display: flex; z-index: 1000; }

    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-scroll-hint { display: none; }
    .hero-proof-grid { grid-template-columns: 1fr; }

    .stats-inner { justify-content: center; gap: 2rem; }
    .stat-divider { display: none; }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow { transform: rotate(90deg); margin: 0; }

    .showcase-inner { grid-template-columns: 1fr; gap: 3rem; }
    .showcase-photo { width: min(360px, 100%); }

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

    .footer-bar-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-badge { font-size: 0.72rem; }
}
