/*
Theme Name: Pure Scrollytelling
Theme URI:
Author: Senior WordPress Engineer
Author URI:
Description: Stead Estate Management site converted to a WordPress theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pure-scrollytelling
*/

/* ============================================
   CSS VARIABLES (brand colours + tokens)
   ============================================ */
:root {
    --navy: #0e1e35;
    --navy-light: #1a3050;
    --gold: #c9a84c;
    --gold-light: #e0bd78;
    --cream: #faf7ef;
    --white: #ffffff;
    --black: #000000;
    --radius-full: 9999px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background: var(--white);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* WordPress Wrapper Reset */
#page,
#content,
.site,
.site-content,
#primary,
.site-main,
.pure-scrollytelling-wrapper {
    overflow: visible !important;
}

#content {
    margin: 0;
    padding: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-heading {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s;
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(14, 30, 53, 0.08);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img {
    height: 52px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(14, 30, 53, 0.75);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.25s, box-shadow 0.25s;
}

.btn-gold:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(14, 30, 53, 0.15);
}

.btn-outline-navy {
    border: 1px solid rgba(14, 30, 53, 0.2);
    color: var(--navy);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-outline-navy:hover {
    background: rgba(14, 30, 53, 0.05);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    padding: 0.5rem;
    color: var(--navy);
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(14, 30, 53, 0.8);
    padding: 0.5rem 0;
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 767px) {

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    height: 100dvh;
    width: 100%;
    background: var(--navy);
    overflow: hidden;
}

/* Canvas fills the hero */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Beige overlay */
#hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 247, 239, 0.8);
    z-index: 1;
}

/* Loading screen */
#hero-loading {
    position: absolute;
    inset: 0;
    background: var(--cream);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.6s;
}

#hero-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

#hero-loading img {
    height: 80px;
    width: auto;
    animation: pulse-scale 2s ease-in-out infinite;
}

#hero-loading span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    animation: pulse-opacity 1.5s ease-in-out infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Hero content panels */
.hero-panel {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
}

.hero-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-panel-right {
    align-items: flex-end;
    text-align: right;
    padding-right: 6rem;
}

.hero-panel-left {
    align-items: flex-start;
    text-align: left;
    padding-left: 6rem;
}

.hero-h1 {
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-h2 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(14, 30, 53, 0.65);
    max-width: 480px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.hero-panel-right .hero-btns {
    justify-content: flex-end;
}

.hero-panel-left .hero-btns {
    justify-content: flex-start;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(14, 30, 53, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@media (max-width: 767px) {

    .hero-panel-right,
    .hero-panel-left {
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .hero-btns {
        justify-content: center !important;
    }
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.section-badge-navy {
    background: rgba(14, 30, 53, 0.06);
    color: var(--navy);
}

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-top: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: rgba(14, 30, 53, 0.55);
    margin-top: 1.25rem;
    line-height: 1.75;
    font-weight: 600;
}

/* Animate on scroll */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
#product {
    background: var(--white);
    padding: 7rem 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(14, 30, 53, 0.06);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(14, 30, 53, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.feature-card-inner {
    display: flex;
    flex-direction: column;
}

.feature-card.even .feature-card-inner {
    flex-direction: column;
}

@media (min-width: 1024px) {
    .feature-card-inner {
        flex-direction: row !important;
    }

    .feature-card.odd .feature-card-inner {
        flex-direction: row-reverse !important;
    }
}

.feature-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 280px;
    position: relative;
}

.feature-graphic.bg-gold {
    background: rgba(201, 168, 76, 0.1);
}

.feature-graphic.bg-navy {
    background: rgba(14, 30, 53, 0.05);
}

.feature-graphic.bg-navy2 {
    background: rgba(14, 30, 53, 0.1);
}

.feature-graphic.bg-gold2 {
    background: rgba(201, 168, 76, 0.2);
}

/* Rounded cutout corners */
.cutout-br {
    border-bottom-right-radius: 5rem;
}

.cutout-bl {
    border-bottom-left-radius: 5rem;
}

/* SVG / CSS mini illustrations */
.graphic-mock {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.mock-card {
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(14, 30, 53, 0.12);
    padding: 1.25rem;
    border: 1px solid rgba(14, 30, 53, 0.05);
}

.mock-line {
    height: 10px;
    border-radius: 99px;
    background: rgba(14, 30, 53, 0.1);
    margin-bottom: 0.5rem;
}

.mock-line.w75 {
    width: 75%;
}

.mock-line.w50 {
    width: 50%;
}

.mock-line.w90 {
    width: 90%;
}

.mock-line.gold {
    background: rgba(201, 168, 76, 0.35);
}

.mock-check-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.mock-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #34d399;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.feature-text h3 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.05rem;
    color: rgba(14, 30, 53, 0.55);
    line-height: 1.75;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(14, 30, 53, 0.5);
    transition: color 0.2s;
}

.feature-learn-more:hover {
    color: var(--navy);
}

.feature-learn-more-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.feature-learn-more:hover .feature-learn-more-icon {
    transform: scale(1.15);
}

/* ============================================
   WHO IT'S FOR (AUDIENCE)
   ============================================ */
#who-its-for {
    background: var(--navy);
    overflow: visible !important;
    padding: 5rem 0 6rem;
}

.audience-header {
    color: var(--white);
}

.audience-header .section-title {
    color: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.audience-card {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    transition: transform 0.3s;
}

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

.audience-card-graphic {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(14, 30, 53, 0.05);
}

.audience-card-graphic.bg-gold-soft {
    background: rgba(201, 168, 76, 0.1);
}

.audience-card-graphic.bg-navy-soft {
    background: rgba(14, 30, 53, 0.1);
}

.audience-card-graphic.bg-green-soft {
    background: rgba(52, 211, 153, 0.1);
}

.audience-card-graphic.bg-amber-soft {
    background: rgba(251, 191, 36, 0.1);
}

/* Round cutout corners on cards */
.cutout-br-audience {
    border-bottom-right-radius: 3.5rem;
}

.cutout-bl-audience {
    border-bottom-left-radius: 3.5rem;
}

.audience-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.audience-card-body {
    flex: 1;
    padding: 2rem;
    background: var(--white);
}

.audience-card-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.audience-card-body p {
    font-size: 0.9rem;
    color: rgba(14, 30, 53, 0.55);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.audience-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 30, 53, 0.05);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(14, 30, 53, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.audience-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.audience-cta-row {
    text-align: center;
    margin-top: 3.5rem;
}

/* ============================================
   PAYMENTS SECTION
   ============================================ */
#payments {
    background: var(--cream);
    padding: 7rem 0;
    overflow: hidden;
}

.payments-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .payments-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 6rem;
    }

    .payments-sticky {
        position: sticky;
        top: 8rem;
        flex: 1;
    }
}

.payments-sticky {
    flex: 1;
}

.payments-accordions {
    flex: 1;
}

.payments-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.payments-title em {
    font-style: italic;
    color: var(--gold);
}

.payments-sub {
    font-size: 1.05rem;
    color: rgba(14, 30, 53, 0.55);
    line-height: 1.75;
    font-weight: 600;
    margin-top: 1.5rem;
    max-width: 420px;
}

/* Phone mock */
.phone-mock {
    width: 240px;
    height: 320px;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(14, 30, 53, 0.15);
    border: 3px solid rgba(14, 30, 53, 0.04);
    padding: 1.25rem;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-notch {
    width: 40%;
    height: 6px;
    border-radius: 99px;
    background: rgba(14, 30, 53, 0.08);
    margin: 0 auto 1rem;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 0.75rem;
    padding: 0.6rem 0.75rem;
}

.phone-row-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #34d399;
    flex-shrink: 0;
}

.phone-row-line {
    flex: 1;
    height: 8px;
    border-radius: 99px;
    background: rgba(14, 30, 53, 0.15);
}

.phone-row-amount {
    height: 8px;
    width: 32px;
    border-radius: 99px;
    background: rgba(14, 30, 53, 0.3);
}

.phone-cta {
    width: 100%;
    height: 40px;
    background: var(--navy);
    border-radius: 0.75rem;
    margin-top: auto;
}

/* Accordions */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--white);
    border: 1px solid rgba(14, 30, 53, 0.06);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.accordion-item.open {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    justify-content: space-between;
}

.accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.accordion-item.open .accordion-icon {
    background: rgba(201, 168, 76, 0.12);
}

.accordion-item.open .accordion-icon svg {
    color: var(--gold);
}

.accordion-title {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(14, 30, 53, 0.65);
    transition: color 0.2s;
}

.accordion-item.open .accordion-title {
    color: var(--navy);
}

.accordion-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(14, 30, 53, 0.4);
    transition: background 0.2s, color 0.2s, transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
    background: var(--navy);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body {
    max-height: 300px;
}

.accordion-body-inner {
    padding: 0 2rem 2rem;
    padding-left: calc(2rem + 48px + 1rem);
    font-size: 1rem;
    color: rgba(14, 30, 53, 0.55);
    line-height: 1.75;
    font-weight: 600;
}

/* ============================================
   AI CONSULTANT
   ============================================ */
#ai-consultant {
    background: var(--navy);
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
}

#ai-consultant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 600px;
    height: 600px;
    background: rgba(201, 168, 76, 0.03);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ai-chat-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ai-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.ai-status {
    font-size: 0.75rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ai-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}

.ai-chat-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .ai-chat-body {
        flex-direction: row;
        min-height: 300px;
    }
}

.ai-questions {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .ai-questions {
        width: 40%;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.ai-questions-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.75rem 0.5rem;
}

.ai-q-btn {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    text-align: left;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

.ai-q-btn.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
}

.ai-q-btn .q-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.ai-q-btn.active .q-icon {
    color: var(--gold);
}

.ai-q-btn .q-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
    transition: color 0.2s;
}

.ai-q-btn.active .q-text {
    color: var(--white);
}

.ai-answer-area {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-bubble {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}

.user-bubble-inner {
    background: rgba(201, 168, 76, 0.2);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border-radius: 1.25rem 1.25rem 0 1.25rem;
    max-width: 480px;
    line-height: 1.5;
}

.ai-response {
    display: flex;
    gap: 0.75rem;
}

.ai-response-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ai-response-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: 0 1.25rem 1.25rem 1.25rem;
    max-width: 480px;
    line-height: 1.7;
}

.ai-typing {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.ai-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.6);
    animation: ai-bounce 1s infinite;
}

.ai-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.ai-typing span:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes ai-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.ai-input-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ai-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.8rem 1.25rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
}

.ai-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s;
}

.ai-send-btn:hover {
    background: var(--gold-light);
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
    background: var(--cream);
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(14, 30, 53, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(14, 30, 53, 0.08);
}

.pricing-card.featured {
    background: var(--navy);
    border: 2px solid rgba(201, 168, 76, 0.3);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(14, 30, 53, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}

.pricing-card.featured .pricing-card-name {
    color: var(--white);
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: rgba(14, 30, 53, 0.5);
    margin-top: 0.35rem;
}

.pricing-card.featured .pricing-card-desc {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 1.5rem;
}

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

.pricing-period {
    font-size: 0.85rem;
    color: rgba(14, 30, 53, 0.4);
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.45);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(14, 30, 53, 0.6);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-check {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.9rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--navy);
    color: var(--white);
    transition: background 0.25s;
}

.pricing-cta:hover {
    background: var(--navy-light);
}

.pricing-card.featured .pricing-cta {
    background: var(--gold);
    color: var(--navy);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--white);
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    background: var(--cream);
    padding: 7rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.contact-text .section-title {
    text-align: left;
}

.contact-sub {
    font-size: 1.05rem;
    color: rgba(14, 30, 53, 0.55);
    margin-top: 1.25rem;
    line-height: 1.75;
    font-weight: 600;
}

.contact-perks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(14, 30, 53, 0.7);
    font-weight: 500;
}

.perk-icon {
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(14, 30, 53, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(14, 30, 53, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(14, 30, 53, 0.65);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: #f9f9f9;
    border: 1px solid rgba(14, 30, 53, 0.1);
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--navy);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(14, 30, 53, 0.3);
}

.contact-form textarea {
    resize: none;
}

.contact-form .error-msg {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.contact-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.25s;
}

.contact-submit:hover {
    background: var(--navy-light);
}

.contact-success {
    background: var(--white);
    border: 1px solid rgba(14, 30, 53, 0.06);
    border-radius: 1.5rem;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(14, 30, 53, 0.04);
    display: none;
}

.contact-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.contact-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contact-success p {
    color: rgba(14, 30, 53, 0.55);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
    background: var(--navy);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    font-size: clamp(7rem, 20vw, 22rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.15em;
    line-height: 1;
    transform: translateY(1.5rem);
    user-select: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.footer-brand img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

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

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE UTILITY
   ============================================ */
@media (max-width: 1023px) {
    #who-its-for {
        height: auto !important;
        min-height: unset !important;
    }

    .payments-layout {
        flex-direction: column;
    }

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

    .feature-text {
        padding: 2rem;
    }

    .feature-graphic {
        min-height: 220px;
    }
}