/* ============================================================
   MrMoyo.com — Design System
   Copied from Olance Freelancing Marketplace exactly.
   Fonts: Inknut Antiqua (headings), Inter (body)
   Primary: HSL(113,100%,33%) green
   Secondary: HSL(207,88%,20%) dark navy
   ============================================================ */

:root {
    /* Olance Base Colors */
    --base-h: 113;
    --base-s: 100%;
    --base-l: 33%;
    --base: var(--base-h) var(--base-s) var(--base-l);

    --base-two-h: 207;
    --base-two-s: 88%;
    --base-two-l: 20%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);

    --white: 0 0% 100%;
    --black: 0 0% 0%;
    --body-bg: 180 3% 94%;
    --body-color: 0 0% 46%;
    --text-color: 0 0% 51%;
    --heading-color: 0 0% 13%;
    --border-color: 0 0% 88%;
    --section-bg: 208 100% 97%;

    --heading-font: "Inknut Antiqua", serif;
    --body-font: "Inter", sans-serif;

    --box-shadow: 0px 4px 0px 0px #0a0a0a14;
    --box-shadow-two: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    color: hsl(var(--body-color));
    background-color: hsl(var(--body-bg));
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 45px; font-weight: 700; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

a {
    text-decoration: none;
    color: hsl(var(--base));
    transition: all 0.3s ease;
}

a:hover {
    color: hsl(var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2));
}

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

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ============ BUTTONS — Olance exact ============ */
.btn--base {
    background-color: hsl(var(--base));
    color: #fff !important;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn--base:hover {
    background-color: hsl(var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.15));
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px hsl(var(--base) / 0.3);
}

.btn--base-outline {
    background-color: transparent;
    color: hsl(var(--base)) !important;
    border: 2px solid hsl(var(--base));
    border-radius: 5px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn--base-outline:hover {
    background-color: hsl(var(--base));
    color: #fff !important;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
}

.text-base {
    color: hsl(var(--base)) !important;
}

/* ============ HEADER/NAV — Olance exact ============ */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header-area .navbar {
    padding: 0;
}

.header-fixed {
    background-color: #fff;
    box-shadow: var(--header-box-shadow);
    padding: 5px 0;
}

.header-fixed .nav-link {
    color: hsl(var(--heading-color)) !important;
}

.header-fixed .logo-text {
    color: hsl(var(--heading-color));
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s;
}

.logo-text--light {
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: hsl(var(--base)) !important;
}

.navbar-toggler {
    border: 1px solid hsl(var(--base));
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300a800' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ NAV DROPDOWN — Explore menu ============ */
.dropdown-menu--custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    min-width: 240px;
    margin-top: 10px;
}

.dropdown-menu--custom .dropdown-item {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--heading-color));
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-menu--custom .dropdown-item i {
    width: 20px;
    text-align: center;
    color: hsl(var(--base));
    font-size: 13px;
}

.dropdown-menu--custom .dropdown-item:hover,
.dropdown-menu--custom .dropdown-item.active {
    background: hsl(var(--base) / 0.08);
    color: hsl(var(--base));
}

.dropdown-menu--custom .dropdown-item.active {
    font-weight: 600;
}

.dropdown-menu--custom .dropdown-divider {
    margin: 8px 16px;
    border-color: hsl(var(--border-color));
}

.navbar-nav .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    vertical-align: middle;
    margin-left: 5px;
}

/* ============ HERO/BANNER — Olance exact ============ */
.banner-section {
    background: linear-gradient(135deg, hsl(113 100% 20%) 0%, hsl(113 100% 33%) 50%, hsl(150 80% 25%) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(113 100% 40% / 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(207 88% 30% / 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.banner-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.banner-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}

.banner-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.banner-badge__value {
    display: block;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.banner-badge__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-weight: 500;
}

.banner-image {
    position: relative;
    z-index: 2;
}

.banner-image .blob-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, hsl(113 100% 45% / 0.2) 0%, transparent 70%);
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    z-index: -1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; }
    50% { border-radius: 50% 40% 50% 60% / 60% 40% 40% 50%; }
}

/* Hero Graphic — Floating territory planets */
.hero-graphic {
    position: relative;
    width: 440px;
    height: 460px;
    margin: 0 auto;
    overflow: visible;
}

/* ── Morphing backdrop blobs ── */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(2px);
    opacity: 0.12;
}
.hero-blob--1 {
    width: 320px; height: 320px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, hsl(0 0% 100% / 0.7) 0%, hsl(0 0% 100% / 0) 70%);
    animation: blobMorph1 12s ease-in-out infinite;
}
.hero-blob--2 {
    width: 260px; height: 260px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, hsl(45 100% 70% / 0.5) 0%, hsl(45 100% 70% / 0) 70%);
    animation: blobMorph2 15s ease-in-out infinite 3s;
}

@keyframes blobMorph1 {
    0%, 100% { border-radius: 42% 58% 55% 45% / 56% 44% 56% 44%; transform: translate(-50%, -50%) scale(1); }
    25% { border-radius: 55% 45% 42% 58% / 44% 56% 48% 52%; transform: translate(-48%, -52%) scale(1.06); }
    50% { border-radius: 48% 52% 58% 42% / 52% 48% 55% 45%; transform: translate(-52%, -48%) scale(0.95); }
    75% { border-radius: 44% 56% 45% 55% / 58% 42% 44% 56%; transform: translate(-50%, -53%) scale(1.04); }
}
@keyframes blobMorph2 {
    0%, 100% { border-radius: 58% 42% 48% 52% / 45% 55% 42% 58%; transform: translate(-50%, -50%) scale(1); }
    33% { border-radius: 45% 55% 55% 45% / 52% 48% 58% 42%; transform: translate(-53%, -47%) scale(1.08); }
    66% { border-radius: 52% 48% 42% 58% / 55% 45% 48% 52%; transform: translate(-47%, -52%) scale(0.94); }
}

/* ── Central compass ── */
.hero-compass {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-compass__core {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(45 100% 60% / 0.3) 0%, hsl(45 100% 50% / 0.08) 70%);
    border: 2px solid hsl(45 100% 60% / 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: hsl(45 100% 70%);
    position: relative;
    z-index: 2;
    animation: compassSpin 30s linear infinite;
}

@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-compass__glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(45 100% 60% / 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: compassGlow 4s ease-in-out infinite;
}

@keyframes compassGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Wider orbit rings around compass */
.hero-compass__ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px dashed hsl(0 0% 100% / 0.12);
}
.hero-compass__ring--outer {
    width: 340px; height: 340px;
    transform: translate(-50%, -50%);
    animation: orbitSpin 45s linear infinite;
}
.hero-compass__ring--inner {
    width: 230px; height: 230px;
    transform: translate(-50%, -50%);
    border-color: hsl(45 100% 60% / 0.15);
    border-style: dashed;
    animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Star field background */
.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.hero-stars::before,
.hero-stars::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #fff;
}
.hero-stars::before {
    width: 3px; height: 3px;
    top: 30px; left: 80px;
    box-shadow:
        60px 40px 0 1px hsl(0 0% 100% / 0.5),
        180px 20px 0 0px hsl(0 0% 100% / 0.3),
        300px 60px 0 1px hsl(0 0% 100% / 0.4),
        120px 120px 0 0px hsl(0 0% 100% / 0.25),
        350px 140px 0 1px hsl(0 0% 100% / 0.35),
        40px 200px 0 0px hsl(0 0% 100% / 0.3),
        250px 220px 0 1px hsl(0 0% 100% / 0.4),
        380px 260px 0 0px hsl(0 0% 100% / 0.2),
        100px 300px 0 1px hsl(0 0% 100% / 0.35),
        320px 340px 0 0px hsl(0 0% 100% / 0.3),
        200px 380px 0 1px hsl(0 0% 100% / 0.25),
        60px 400px 0 0px hsl(0 0% 100% / 0.3);
    animation: starsTwinkle 4s ease-in-out infinite;
}
.hero-stars::after {
    width: 2px; height: 2px;
    top: 60px; left: 20px;
    box-shadow:
        140px 30px 0 0px hsl(0 0% 100% / 0.2),
        280px 90px 0 1px hsl(0 0% 100% / 0.3),
        30px 150px 0 0px hsl(0 0% 100% / 0.35),
        200px 170px 0 1px hsl(0 0% 100% / 0.2),
        380px 200px 0 0px hsl(0 0% 100% / 0.4),
        90px 250px 0 1px hsl(0 0% 100% / 0.25),
        310px 290px 0 0px hsl(0 0% 100% / 0.3),
        160px 350px 0 1px hsl(0 0% 100% / 0.2),
        400px 380px 0 0px hsl(0 0% 100% / 0.35),
        50px 360px 0 1px hsl(0 0% 100% / 0.25);
    animation: starsTwinkle 5s ease-in-out infinite 2s;
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Each planet container */
.hero-planet {
    position: absolute;
    z-index: 2;
}

/* The planet body — a large rounded icon */
.hero-planet__body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.hero-planet__body::after {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%;
    border: 1.5px dashed hsl(0 0% 100% / 0.2);
    animation: planetOrbitRing 12s linear infinite;
}

@keyframes planetOrbitRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reveal panel — hidden by default, shown on hover */
.hero-planet__reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: hsl(0 0% 100% / 0.18);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 40px hsl(0 0% 100% / 0.15), 0 0 80px hsl(0 0% 100% / 0.05);
}

.hero-planet__reveal-icon {
    font-size: 44px;
    color: #fff;
}

.hero-planet__reveal-name {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px hsl(0 0% 0% / 0.3);
    white-space: nowrap;
}

/* On hover: hide planet body, show reveal */
.hero-planet:hover .hero-planet__body {
    transform: scale(0.5);
    opacity: 0;
}

.hero-planet:hover .hero-planet__reveal {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Planet colors */
.hero-planet--0 .hero-planet__body {
    background: #fff;
    color: hsl(207 88% 40%);
    box-shadow: 0 6px 30px hsl(207 88% 40% / 0.4), 0 0 15px hsl(0 0% 100% / 0.2);
}
.hero-planet--0 .hero-planet__reveal { background: hsl(207 88% 40% / 0.35); }

.hero-planet--1 .hero-planet__body {
    background: #FFD700;
    color: hsl(0 0% 15%);
    box-shadow: 0 6px 30px hsl(45 100% 50% / 0.4), 0 0 15px hsl(45 100% 50% / 0.15);
}
.hero-planet--1 .hero-planet__reveal { background: hsl(45 100% 50% / 0.25); }

.hero-planet--2 .hero-planet__body {
    background: hsl(340 80% 60%);
    color: #fff;
    box-shadow: 0 6px 30px hsl(340 80% 60% / 0.4), 0 0 15px hsl(340 80% 60% / 0.15);
}
.hero-planet--2 .hero-planet__reveal { background: hsl(340 80% 60% / 0.3); }

.hero-planet--3 .hero-planet__body {
    background: hsl(270 70% 60%);
    color: #fff;
    box-shadow: 0 6px 30px hsl(270 70% 60% / 0.4), 0 0 15px hsl(270 70% 60% / 0.15);
}
.hero-planet--3 .hero-planet__reveal { background: hsl(270 70% 60% / 0.3); }

.hero-planet--4 .hero-planet__body {
    background: hsl(30 90% 55%);
    color: #fff;
    box-shadow: 0 6px 30px hsl(30 90% 55% / 0.4), 0 0 15px hsl(30 90% 55% / 0.15);
}
.hero-planet--4 .hero-planet__reveal { background: hsl(30 90% 55% / 0.3); }

/* Planet positions + unique floating orbits */
.hero-planet--0 {
    top: 20px;
    left: 50%;
    margin-left: -36px;
    animation: planetFloat0 8s ease-in-out infinite;
}
.hero-planet--1 {
    top: 100px;
    right: 20px;
    animation: planetFloat1 10s ease-in-out infinite 1s;
}
.hero-planet--2 {
    bottom: 60px;
    right: 50px;
    animation: planetFloat2 9s ease-in-out infinite 0.5s;
}
.hero-planet--3 {
    bottom: 60px;
    left: 50px;
    animation: planetFloat3 11s ease-in-out infinite 2s;
}
.hero-planet--4 {
    top: 100px;
    left: 20px;
    animation: planetFloat4 7s ease-in-out infinite 1.5s;
}

/* Each planet has a unique wandering orbit */
@keyframes planetFloat0 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(12px, 8px); }
    50% { transform: translate(-8px, 14px); }
    75% { transform: translate(6px, -4px); }
}
@keyframes planetFloat1 {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-10px, 12px); }
    50% { transform: translate(-18px, -6px); }
    80% { transform: translate(5px, -10px); }
}
@keyframes planetFloat2 {
    0%, 100% { transform: translate(0, 0); }
    30% { transform: translate(14px, -10px); }
    60% { transform: translate(-6px, -16px); }
    85% { transform: translate(-12px, 5px); }
}
@keyframes planetFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-8px, -12px); }
    55% { transform: translate(16px, -4px); }
    80% { transform: translate(4px, 10px); }
}
@keyframes planetFloat4 {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(10px, 14px); }
    45% { transform: translate(16px, -8px); }
    75% { transform: translate(-6px, 6px); }
}

/* ============ SECTION STYLING — Olance exact ============ */
.section-padding {
    padding: 80px 0;
    overflow-x: hidden;
}

.section-bg {
    background-color: hsl(var(--section-bg));
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: hsl(var(--heading-color));
}

.section-header h2 span {
    color: hsl(var(--base));
}

.section-header p {
    font-size: 16px;
    color: hsl(var(--text-color));
    max-width: 600px;
    margin: 0 auto;
}

/* ============ TERRITORY CARDS — Olance category card style ============ */
.territory-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--box-shadow-two);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid hsl(var(--border-color));
    position: relative;
    overflow: hidden;
}

.territory-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--base));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.territory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.territory-card:hover::before {
    transform: scaleX(1);
}

.territory-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: hsl(var(--base));
    transition: all 0.3s;
}

.territory-card:hover .territory-card__icon {
    background: hsl(var(--base));
    color: #fff;
}

.territory-card__title {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: hsl(var(--heading-color));
}

.territory-card__question {
    font-size: 14px;
    font-style: italic;
    color: hsl(var(--base));
    margin-bottom: 10px;
    font-weight: 500;
}

.territory-card__desc {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-bottom: 0;
}

/* ============ PROJECT CARDS — Olance job listing card style ============ */
.project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card__image {
    height: 200px;
    background: linear-gradient(135deg, hsl(var(--base) / 0.1), hsl(var(--base-two) / 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: hsl(var(--base) / 0.5);
    position: relative;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge--status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--body-font);
}

.badge--in-development {
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
}

.badge--live {
    background: hsl(211 100% 50% / 0.1);
    color: hsl(211 100% 50%);
}

.badge--concept {
    background: hsl(45 100% 51% / 0.15);
    color: hsl(45 80% 35%);
}

.badge--paused {
    background: hsl(0 0% 50% / 0.1);
    color: hsl(0 0% 40%);
}

.badge--success {
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
}

.badge--warning {
    background: hsl(45 100% 51% / 0.15);
    color: hsl(45 80% 35%);
}

.badge--danger {
    background: hsl(0 70% 50% / 0.1);
    color: hsl(0 70% 45%);
}

.badge--info {
    background: hsl(207 88% 40% / 0.1);
    color: hsl(207 88% 40%);
}

.badge--purple {
    background: hsl(280 60% 45% / 0.1);
    color: hsl(280 60% 45%);
}

.badge--territory {
    background: hsl(var(--base-two) / 0.1);
    color: hsl(var(--base-two));
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-card__title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: hsl(var(--heading-color));
}

.project-card__title a {
    color: inherit;
}

.project-card__title a:hover {
    color: hsl(var(--base));
}

.project-card__desc {
    font-size: 14px;
    color: hsl(var(--text-color));
    flex: 1;
}

.project-card__link {
    margin-top: auto;
    padding-top: 15px;
}

/* ============ PROJECT DETAIL (Portfolio) ============ */
.project-detail-hero {
    padding: 0 0 20px;
}

.project-detail-hero__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-detail-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.project-section:last-child {
    border-bottom: none;
}

.project-section__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.project-section__content {
    font-size: 16px;
    line-height: 1.8;
    color: hsl(var(--text-color));
}

.project-section--lessons {
    background: hsl(113 100% 33% / 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid hsl(113 100% 33%);
    border-bottom: none;
}

.project-info-card {
    background: #fff;
    border: 1px solid hsl(var(--border-color));
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--box-shadow-two);
}

.project-info-card__title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid hsl(113 100% 33%);
}

.project-info-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid hsl(var(--border-color) / 0.5);
}

.project-info-card__row--stack {
    flex-direction: column;
    align-items: flex-start;
}

.project-info-card__row:last-of-type {
    border-bottom: none;
}

.project-info-card__label {
    font-size: 13px;
    color: hsl(var(--text-color));
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.project-info-card__links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid hsl(var(--border-color));
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.project-gallery__item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-gallery__item:hover {
    transform: scale(1.02);
}

.project-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
}

.project-gallery__item--expanded {
    grid-column: 1 / -1;
}

/* ============ HOW IT WORKS / STONE AGE TEST — Olance exact ============ */
.how-it-works {
    background: linear-gradient(135deg, hsl(var(--base-two)) 0%, hsl(207 88% 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.how-it-works .section-header h2 {
    color: #fff;
}

.how-it-works .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.step-card__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.step-card__number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed hsl(var(--base) / 0.3);
    top: -10px;
    left: -10px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.step-card__title {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.step-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Step connectors — Olance style */
.step-connector {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, hsl(var(--base) / 0.5), transparent);
}

/* ============ COMING SOON SECTIONS ============ */
.coming-soon-section {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.coming-soon-section .section-header {
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.coming-soon-question {
    font-family: var(--heading-font);
    font-size: 20px;
    color: hsl(var(--heading-color));
    max-width: 700px;
    margin: 0 auto 20px;
    font-style: italic;
}

/* ============ ABOUT PAGE — Olance profile page style ============ */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, hsl(113 100% 20%) 0%, hsl(113 100% 33%) 100%);
}

.about-photo-wrapper {
    position: relative;
    display: inline-block;
}

.about-photo-wrapper .blob-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: hsl(var(--base) / 0.15);
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    animation: blobFloat 8s ease-in-out infinite;
    z-index: 0;
}

.about-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid hsl(var(--base));
    position: relative;
    z-index: 1;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: hsl(var(--base) / 0.3);
}

.about-content-section {
    padding: 60px 0;
}

.about-content-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: hsl(var(--heading-color));
}

.about-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: hsl(var(--text-color));
}

.about-content-section ul {
    list-style: none;
    padding: 0;
}

.about-content-section ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: hsl(var(--text-color));
}

.about-content-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: hsl(var(--base));
}

.about-quote {
    background: hsl(var(--section-bg));
    border-left: 4px solid hsl(var(--base));
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
    font-style: italic;
    font-size: 17px;
    color: hsl(var(--heading-color));
}

/* Stone Age Test CTA Banner (About page) */
.stone-age-cta-banner {
    background: linear-gradient(135deg, hsl(207 88% 12%) 0%, hsl(207 88% 20%) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stone-age-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, hsl(113 100% 33% / 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.stone-age-cta-banner__icon {
    font-size: 36px;
    color: hsl(45 100% 55%);
    margin-bottom: 20px;
    display: inline-block;
}

.stone-age-cta-banner__heading {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.stone-age-cta-banner__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto 30px;
}

.stone-age-cta-banner__btn {
    background: hsl(113 100% 33%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stone-age-cta-banner__btn:hover {
    background: hsl(113 100% 28%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsl(113 100% 33% / 0.3);
}

/* ============ PHILOSOPHY PAGE ============ */
.philosophy-territory {
    padding: 50px 0;
    border-bottom: 1px solid hsl(var(--border-color));
}

.philosophy-territory:last-child {
    border-bottom: none;
}

.philosophy-territory__question {
    font-family: var(--heading-font);
    font-size: 22px;
    color: hsl(var(--base));
    margin-bottom: 25px;
    font-style: italic;
}

.philosophy-territory__sub-questions {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.philosophy-territory__sub-questions li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: hsl(var(--heading-color));
    border-bottom: 1px solid hsl(var(--border-color) / 0.5);
    font-style: italic;
}

.philosophy-territory__sub-questions li::before {
    content: '?';
    font-family: var(--heading-font);
    position: absolute;
    left: 0;
    color: hsl(var(--base));
    font-weight: 700;
    font-size: 18px;
}

.philosophy-territory__perspective {
    background: hsl(var(--section-bg));
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: hsl(var(--text-color));
}

/* ============ CONTACT PAGE ============ */
.contact-section {
    padding: 40px 0 80px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
}

.contact-form .form-label {
    font-weight: 500;
    color: hsl(var(--heading-color));
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .form-control {
    border: 1px solid hsl(var(--border-color));
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 15px;
    font-family: var(--body-font);
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: hsl(var(--base));
    box-shadow: 0 0 0 3px hsl(var(--base) / 0.1);
}

.contact-info {
    padding: 40px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--base));
    font-size: 20px;
    flex-shrink: 0;
}

/* ============ COMING SOON PAGE ============ */
.coming-soon-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.coming-soon-page__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: hsl(var(--base));
}

.coming-soon-page h2 {
    margin-bottom: 20px;
}

.coming-soon-page p {
    font-size: 17px;
    color: hsl(var(--text-color));
    max-width: 600px;
    margin: 0 auto 20px;
}

/* ============ BREADCRUMB / PAGE HEADER — Olance style ============ */
.page-header {
    background: linear-gradient(135deg, hsl(113 100% 20%) 0%, hsl(113 100% 33%) 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(113 100% 45% / 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.breadcrumb-nav .current {
    color: #fff;
    font-size: 14px;
}

/* ============ FOOTER — Olance exact dark footer ============ */
.footer-area {
    background-color: #212121;
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget__title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(var(--base));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: hsl(var(--base));
    padding-left: 5px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-quote__text {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__text {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============ EASTER EGG ============ */
.easter-egg {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}

.easter-egg__trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 20px;
    color: hsl(var(--base) / 0.3);
    cursor: pointer;
    transition: all 0.5s;
}

.easter-egg:hover .easter-egg__trigger {
    background: hsl(var(--base));
    color: #fff;
    transform: rotate(180deg);
}

.easter-egg__reveal {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.easter-egg:hover .easter-egg__reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.easter-egg__reveal p {
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(var(--heading-color));
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* ============ ALERT / FLASH MESSAGES ============ */
.alert-success {
    background-color: hsl(var(--base) / 0.1);
    border-color: hsl(var(--base) / 0.2);
    color: hsl(var(--base));
}

/* ============ FILTERS — Olance style ============ */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid hsl(var(--border-color));
    border-radius: 25px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: hsl(var(--text-color));
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--body-font);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: hsl(var(--base));
    background: hsl(var(--base));
    color: #fff;
}

/* ============ TECH TAGS ============ */
.tech-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tech-tag {
    background: hsl(var(--section-bg));
    color: hsl(var(--text-color));
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* ============ SESSION CARDS — Olance service card style ============ */
.session-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.session-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: hsl(var(--base));
}

.session-card__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.session-card__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.session-card__duration,
.session-card__price {
    font-size: 14px;
    color: hsl(var(--text-color));
}

.session-card__price {
    font-weight: 700;
    color: hsl(var(--base));
    font-size: 18px;
}

.session-card__question {
    color: hsl(var(--base));
    font-family: var(--heading-font);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.session-card__description {
    font-size: 14px;
    color: hsl(var(--text-color));
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* ============ BOOKING FORM ============ */
.booking-form-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
}

.booking-form-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Calendar Date Picker */
.date-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.date-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid hsl(var(--border-color));
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 80px;
    font-family: var(--body-font);
}

.date-btn:hover {
    border-color: hsl(var(--base));
}

.date-btn.active {
    border-color: hsl(var(--base));
    background: hsl(var(--base) / 0.05);
}

.date-btn__day {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(var(--text-color));
}

.date-btn__date {
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--heading-color));
    margin: 4px 0;
}

.date-btn__slots {
    font-size: 11px;
    color: hsl(var(--base));
}

/* Time Slot Buttons */
.time-slot-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.time-slot-btn {
    padding: 10px 20px;
    border: 2px solid hsl(var(--border-color));
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--body-font);
    font-size: 14px;
    color: hsl(var(--heading-color));
}

.time-slot-btn:hover {
    border-color: hsl(var(--base));
}

.time-slot-btn.active {
    border-color: hsl(var(--base));
    background: hsl(var(--base));
    color: #fff;
}

/* Session Summary Sidebar */
.session-summary-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    position: sticky;
    top: 100px;
    text-align: center;
}

.session-summary-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: hsl(var(--base));
}

.session-summary-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.session-summary-card__detail {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-bottom: 8px;
}

.session-summary-card__detail i {
    color: hsl(var(--base));
    width: 20px;
    margin-right: 5px;
}

.session-summary-card__quote {
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(var(--base));
    font-style: italic;
    margin: 15px 0;
    padding: 15px;
    background: hsl(var(--base) / 0.05);
    border-radius: 8px;
    border-left: 3px solid hsl(var(--base));
    text-align: left;
}

.session-summary-card__desc {
    font-size: 13px;
    color: hsl(var(--text-color));
    line-height: 1.6;
}

/* ============ PAYMENT / CONFIRMATION CARDS ============ */
.payment-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
}

.payment-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: hsl(var(--base));
}

.payment-card__summary {
    background: hsl(var(--section-bg));
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.payment-card__amount {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: hsl(var(--base));
    margin: 10px 0 0;
}

.confirmation-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
}

.confirmation-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: hsl(var(--base));
}

.confirmation-card__subtitle {
    font-size: 16px;
    color: hsl(var(--text-color));
    margin-bottom: 25px;
}

.confirmation-card__details {
    background: hsl(var(--section-bg));
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.confirmation-card__details strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: hsl(var(--text-color));
    margin-bottom: 4px;
}

.confirmation-card__details p {
    font-size: 15px;
    color: hsl(var(--heading-color));
    margin: 0;
}

/* How it Works steps on sessions page */
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: hsl(var(--base));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* ============ RESPONSIVE — matching Olance breakpoints ============ */
@media (max-width: 1199px) {
    h1, .banner-content h1 { font-size: 38px; }
    h2, .section-header h2 { font-size: 34px; }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: var(--box-shadow-two);
    }

    .navbar-nav .nav-link {
        color: hsl(var(--heading-color)) !important;
        padding: 10px 15px !important;
        border-bottom: 1px solid hsl(var(--border-color));
    }

    .dropdown-menu--custom {
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        border-left: 3px solid hsl(var(--base));
        margin-left: 15px;
    }

    .dropdown-menu--custom .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
    }

    .header-area .logo-text {
        color: hsl(var(--heading-color));
    }

    .header-area {
        background: #fff;
        box-shadow: var(--header-box-shadow);
    }

    .banner-section {
        padding: 150px 0 80px;
        text-align: center;
    }

    .banner-content p {
        margin: 0 auto 30px;
    }

    .banner-badges {
        justify-content: center;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    h1, .banner-content h1 { font-size: 30px; }
    h2, .section-header h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .section-padding {
        padding: 60px 0;
    }

    .banner-section {
        padding: 130px 0 60px;
        min-height: auto;
    }

    .banner-badge {
        padding: 12px 18px;
        min-width: 100px;
    }

    .banner-badge__value {
        font-size: 22px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-quote__text {
        font-size: 14px;
    }

    .about-photo {
        width: 200px;
        height: 200px;
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .banner-badges {
        gap: 10px;
    }

    .banner-badge {
        flex: 1;
        min-width: 80px;
        padding: 10px 12px;
    }

    .territory-card {
        padding: 25px 20px;
    }

    .step-card {
        padding: 20px 10px;
    }
}

/* ============ ADMIN STYLES ============ */
.admin-sidebar {
    background: hsl(var(--heading-color));
    height: 100vh;
    padding: 20px 0;
    position: fixed;
    width: 250px;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.admin-sidebar__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    padding: 12px 25px 4px;
    margin-top: 4px;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 12px 25px !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff !important;
    background: hsl(var(--base) / 0.15);
    border-left: 3px solid hsl(var(--base));
}

.admin-sidebar .nav-link i {
    width: 20px;
    margin-right: 10px;
}

.admin-content {
    margin-left: 250px;
    padding: 20px 30px;
    min-height: 100vh;
    background: hsl(var(--body-bg));
}

.admin-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    padding: 25px;
    margin-bottom: 20px;
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.admin-card__header h4 {
    margin: 0;
    font-size: 18px;
}

.admin-table {
    width: 100%;
}

.admin-table th {
    background: hsl(var(--section-bg));
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 600;
    color: hsl(var(--heading-color));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid hsl(var(--border-color));
    vertical-align: middle;
}

.admin-stat {
    text-align: center;
    padding: 25px;
}

.admin-stat__value {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--base));
}

.admin-stat__label {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-top: 5px;
}

/* Dashboard Grouped Panels */
.dashboard-panel-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-panel-stat {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 8px;
    background: hsl(var(--section-bg));
    border-radius: 8px;
    min-width: 70px;
}

.dashboard-panel-stat--alert {
    background: hsl(40 100% 95%);
}

.dashboard-panel-stat__value {
    display: block;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    color: hsl(var(--heading-color));
    line-height: 1.2;
}

.dashboard-panel-stat--alert .dashboard-panel-stat__value {
    color: hsl(40 100% 45%);
}

.dashboard-panel-stat__label {
    display: block;
    font-size: 11px;
    color: hsl(var(--text-color));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dashboard-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: hsl(var(--heading-color));
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dashboard-action-btn:hover {
    background: hsl(113 100% 33%);
    color: #fff;
    border-color: hsl(113 100% 33%);
}

.dashboard-action-btn i {
    font-size: 11px;
}

/* Dashboard Activity Feed */
.dashboard-activity-feed {
    display: flex;
    flex-direction: column;
}

.dashboard-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid hsl(var(--border-color));
    text-decoration: none;
    transition: background 0.2s ease;
}

.dashboard-activity-item:last-child {
    border-bottom: none;
}

.dashboard-activity-item:hover {
    background: hsl(var(--section-bg));
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 6px;
}

.dashboard-activity-item__icon {
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--section-bg));
    border-radius: 50%;
    flex-shrink: 0;
}

.dashboard-activity-item__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dashboard-activity-item__text {
    font-size: 13px;
    color: hsl(var(--heading-color));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-activity-item__time {
    font-size: 11px;
    color: hsl(var(--text-color));
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(113 100% 20%) 0%, hsl(113 100% 33%) 100%);
}

.admin-login__card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
}

@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }
}

/* ============ TERRITORY INVITATION CARD (6th card) ============ */
.territory-card--invitation {
    background: linear-gradient(135deg, hsl(113 100% 25%) 0%, hsl(113 100% 33%) 50%, hsl(150 80% 30%) 100%);
    color: #fff;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.territory-card--invitation::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.territory-card--invitation:hover {
    transform: translateY(-5px);
}

.territory-card__icon--invitation {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.territory-card--invitation .territory-card__title { color: #fff; }
.territory-card--invitation .territory-card__question { color: rgba(255,255,255,0.9); }
.territory-card--invitation .territory-card__desc { color: rgba(255,255,255,0.7); }

/* ============ PHASE 3: POST CARDS (The Trail) ============ */
.post-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.post-card__image {
    height: 200px;
    overflow: hidden;
    background: hsl(var(--section-bg));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__placeholder {
    font-size: 48px;
    color: hsl(var(--base) / 0.3);
}

.post-card__body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.post-card__title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card__title a {
    color: hsl(var(--heading-color));
    text-decoration: none;
    transition: color 0.3s;
}

.post-card__title a:hover {
    color: hsl(var(--base));
}

.post-card__excerpt {
    font-size: 14px;
    color: hsl(var(--text-color));
    line-height: 1.7;
    flex-grow: 1;
}

.post-card__link {
    font-size: 14px;
    font-weight: 600;
    color: hsl(var(--base));
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.post-card__link:hover {
    color: hsl(113 100% 25%);
}

.post-card__link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

.post-card__link:hover i {
    transform: translateX(3px);
}

/* Featured Post */
.featured-post {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
}

.featured-post__title {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-post__title a {
    color: hsl(var(--heading-color));
    text-decoration: none;
    transition: color 0.3s;
}

.featured-post__title a:hover {
    color: hsl(var(--base));
}

.featured-post__excerpt {
    font-size: 16px;
    color: hsl(var(--text-color));
    line-height: 1.7;
}

.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.featured-post__image {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post__placeholder {
    width: 100%;
    height: 300px;
    background: hsl(var(--section-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 64px;
    color: hsl(var(--base) / 0.2);
}

/* Post Detail */
.post-detail__body {
    font-size: 16px;
    line-height: 1.9;
    color: hsl(var(--text-color));
}

.post-detail__body p {
    margin-bottom: 20px;
}

.post-detail__body h2,
.post-detail__body h3 {
    margin: 30px 0 15px;
    color: hsl(var(--heading-color));
}

.post-detail__body blockquote {
    border-left: 4px solid hsl(var(--base));
    padding: 15px 25px;
    margin: 25px 0;
    background: hsl(var(--base) / 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* ============ PHASE 3: FEATURED QUESTION ============ */
.featured-question {
    text-align: center;
    padding: 50px 40px;
    background: hsl(var(--base) / 0.03);
    border-radius: 15px;
    border: 1px solid hsl(var(--base) / 0.1);
}

.featured-question__icon {
    font-size: 48px;
    color: hsl(var(--base));
    margin-bottom: 20px;
}

.featured-question__text {
    font-family: var(--heading-font);
    font-size: 24px;
    color: hsl(var(--heading-color));
    line-height: 1.5;
    margin-bottom: 15px;
}

.featured-question__context {
    font-size: 15px;
    color: hsl(var(--text-color));
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.featured-question__subs {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ PHASE 3: QUESTION CARDS ============ */
.question-territory-group__title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid hsl(var(--base) / 0.2);
}

.question-territory-group__title i {
    color: hsl(var(--base));
    margin-right: 10px;
}

.question-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s;
}

.question-card:hover {
    border-color: hsl(var(--base) / 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.question-card__text {
    font-family: var(--heading-font);
    font-size: 18px;
    color: hsl(var(--heading-color));
    line-height: 1.5;
    margin-bottom: 12px;
}

.question-card__context {
    font-size: 14px;
    color: hsl(var(--text-color));
    line-height: 1.7;
    margin-bottom: 10px;
}

.question-card__subs {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid hsl(var(--border-color));
}

.sub-question {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Inquiry Tabs (Questions Library) */
.inquiry-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 2px solid hsl(var(--border-color));
}

.inquiry-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: hsl(var(--heading-color));
    transition: all 0.2s ease;
}

.inquiry-tab:hover {
    border-color: hsl(113 100% 33%);
    color: hsl(113 100% 33%);
}

.inquiry-tab--active {
    background: hsl(113 100% 33%);
    color: #fff;
    border-color: hsl(113 100% 33%);
}

.inquiry-tab--active:hover {
    color: #fff;
}

.inquiry-tab i {
    font-size: 14px;
}

.inquiry-tab__count {
    font-size: 11px;
    background: rgba(0,0,0,0.08);
    padding: 2px 7px;
    border-radius: 10px;
}

.inquiry-tab--active .inquiry-tab__count {
    background: rgba(255,255,255,0.25);
}

/* Inquiry Cards (compact question cards for listing) */
.inquiry-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    border: 1px solid hsl(var(--border-color));
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.inquiry-card:hover {
    border-color: hsl(113 100% 33% / 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.inquiry-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.inquiry-card__text {
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(var(--heading-color));
    line-height: 1.5;
    flex: 1;
}

.inquiry-card__bookmark {
    color: hsl(113 100% 33%);
    font-size: 14px;
    flex-shrink: 0;
}

.inquiry-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.inquiry-card__reflections,
.inquiry-card__depth {
    font-size: 11px;
    color: hsl(var(--text-color));
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Question Detail Page */
.question-detail-hero {
    text-align: center;
    padding: 30px 0 20px;
}

.question-detail-hero__icon {
    font-size: 36px;
    color: hsl(113 100% 33%);
    margin-bottom: 20px;
}

.question-detail-hero__text {
    font-family: var(--heading-font);
    font-size: 28px;
    color: hsl(var(--heading-color));
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 20px;
}

.question-detail-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.question-detail-context {
    background: hsl(var(--section-bg));
    padding: 25px 30px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 16px;
    line-height: 1.7;
    color: hsl(var(--text-color));
}

.question-detail-subs {
    margin: 30px 0;
    padding: 25px;
    border-left: 3px solid hsl(113 100% 33%);
    background: hsl(113 100% 33% / 0.03);
    border-radius: 0 10px 10px 0;
}

.question-detail-subs h5 {
    margin-bottom: 15px;
}

.question-detail-respond {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
}

.question-detail-respond h5 {
    margin-bottom: 15px;
}

.question-detail-community {
    margin: 30px 0;
}

.question-detail-community h5 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid hsl(var(--border-color));
}

/* ============ PHASE 3: BOOK CARDS (The Bookshelf) ============ */
.book-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
}

.book-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.book-card__cover {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(113 100% 20% / 0.1) 0%, hsl(207 88% 20% / 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-card__placeholder {
    text-align: center;
    padding: 20px;
}

.book-card__placeholder i {
    font-size: 48px;
    color: hsl(var(--base) / 0.3);
    display: block;
    margin-bottom: 10px;
}

.book-card__placeholder span {
    font-size: 13px;
    color: hsl(var(--text-color));
    font-weight: 500;
}

.book-card__body {
    padding: 25px;
}

.book-card__title {
    font-size: 20px;
    margin-bottom: 5px;
}

.book-card__author {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-bottom: 10px;
}

.book-card__commentary {
    font-size: 14px;
    color: hsl(var(--text-color));
    line-height: 1.7;
    margin-bottom: 12px;
}

.book-card__question {
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(113 100% 25%);
    line-height: 1.5;
    font-style: italic;
}

.book-card__question i {
    margin-right: 6px;
}

/* Book Card Mini (homepage) */
.book-card-mini {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow-two);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s;
}

.book-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.book-card-mini__icon {
    font-size: 36px;
    color: hsl(var(--base) / 0.5);
    margin-bottom: 15px;
}

.book-card-mini__title {
    font-size: 18px;
    margin-bottom: 5px;
}

.book-card-mini__author {
    font-size: 14px;
    color: hsl(var(--text-color));
    margin-bottom: 12px;
}

.book-card-mini__question {
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(var(--base));
    line-height: 1.5;
    font-style: italic;
}

/* ============ PHASE 3: PAGE HEADER SUBTITLE ============ */
.page-header__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--heading-font);
    font-size: 16px;
    font-style: italic;
    max-width: 600px;
    margin: 10px auto 0;
    position: relative;
    z-index: 2;
}

.page-header__meta {
    position: relative;
    z-index: 2;
}

/* ============ PHASE 3: RESPONSIVE ADDITIONS ============ */
@media (max-width: 767px) {
    .featured-question {
        padding: 30px 20px;
    }

    .featured-question__text {
        font-size: 20px;
    }

    .featured-post__title {
        font-size: 22px;
    }

    .book-card__cover {
        min-height: 180px;
    }

    .question-card {
        padding: 20px;
    }

    .question-card__text {
        font-size: 16px;
    }
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.testimonial-card__icon {
    color: hsl(var(--base));
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.testimonial-card__quote {
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 1.7;
    color: hsl(0 0% 20%);
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__client {
    font-size: 14px;
    font-weight: 600;
    color: hsl(0 0% 30%);
}

.testimonial-card__location {
    font-size: 13px;
    color: hsl(0 0% 55%);
}

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

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter__label {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-newsletter__form {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.footer-newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--body-font);
    font-size: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.footer-newsletter__input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter__input:focus {
    outline: none;
    border-color: hsl(113 100% 45%);
    background: rgba(255,255,255,0.12);
}

.footer-newsletter__btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-newsletter__success {
    color: hsl(113 100% 60%);
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 0;
}

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

.sessions-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(var(--base-two)) 0%, hsl(207 88% 15%) 100%);
    position: relative;
    overflow: hidden;
}

.sessions-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.sessions-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sessions-cta h3 {
    font-family: var(--heading-font);
    color: #fff;
    font-size: 26px;
    margin-bottom: 16px;
}

.sessions-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sessions-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 5px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Step circles for How It Works */
/* Conversion CTA box */
.cta-box {
    background: hsl(113 100% 97%);
    border-left: 4px solid hsl(var(--base));
    padding: 25px 30px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.cta-box h4 {
    font-family: var(--heading-font);
    font-size: 17px;
    margin-bottom: 10px;
    color: hsl(0 0% 15%);
}

.cta-box p {
    font-size: 15px;
    color: hsl(0 0% 40%);
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-card__quote {
        font-size: 14px;
    }
    .footer-newsletter__form {
        flex-direction: column;
    }
    .footer-newsletter__input {
        width: 100%;
    }
    .sessions-cta h3 {
        font-size: 22px;
    }
    .sessions-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   PHASE 4 — AUTH PAGES
   ============================================ */

.auth-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--box-shadow-two);
}

.auth-card__header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card__header h2 {
    font-family: var(--heading-font);
    font-size: 22px;
    margin-bottom: 8px;
}

.auth-card__header p {
    color: hsl(0 0% 51%);
    font-size: 15px;
}

.auth-card__footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid hsl(var(--border-color));
}

.auth-card__footer p {
    font-size: 14px;
    color: hsl(0 0% 51%);
    margin: 0;
}

.auth-link {
    font-size: 14px;
    color: hsl(var(--base));
}

/* ============================================
   PHASE 4 — USER DASHBOARD
   ============================================ */

.dashboard-page {
    padding: 40px 0 60px;
    min-height: 70vh;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: var(--box-shadow-two);
    position: sticky;
    top: 100px;
}

.dashboard-sidebar__user {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid hsl(var(--border-color));
    margin-bottom: 15px;
}

.dashboard-sidebar__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(var(--base));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
}

.dashboard-sidebar__user h5 {
    font-family: var(--heading-font);
    font-size: 16px;
    margin-bottom: 0;
}

.dashboard-sidebar__nav a {
    display: block;
    padding: 10px 15px;
    color: hsl(0 0% 40%);
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.dashboard-sidebar__nav a:hover {
    background: hsl(113 100% 97%);
    color: hsl(var(--base));
}

.dashboard-sidebar__nav a.active {
    background: hsl(113 100% 95%);
    color: hsl(var(--base));
    font-weight: 600;
}

.dashboard-sidebar__nav a i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

.dashboard-sidebar__nav hr {
    border-color: hsl(var(--border-color));
    margin: 10px 0;
}

.dashboard-logout-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    background: none;
    border: none;
    color: hsl(0 0% 40%);
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    font-family: var(--body-font);
    transition: all 0.2s;
}

.dashboard-logout-btn:hover {
    background: hsl(0 80% 95%);
    color: hsl(0 70% 50%);
}

.dashboard-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow-two);
}

.dashboard-stat-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: hsl(113 100% 95%);
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dashboard-stat-card__number {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: hsl(var(--heading-color));
    line-height: 1;
}

.dashboard-stat-card__label {
    font-size: 13px;
    color: hsl(0 0% 51%);
    margin-top: 2px;
}

.dashboard-featured-question {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid hsl(var(--base));
    box-shadow: var(--box-shadow-two);
}

.dashboard-featured-question__label {
    font-size: 13px;
    color: hsl(var(--base));
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.dashboard-featured-question__text {
    font-family: var(--heading-font);
    font-size: 18px;
    color: hsl(var(--heading-color));
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ============================================
   PHASE 4 — PARTNERSHIPS
   ============================================ */

.partnership-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow-two);
    height: 100%;
    transition: transform 0.2s;
}

.partnership-card:hover {
    transform: translateY(-3px);
}

.partnership-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(113 100% 95%);
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.partnership-card h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 10px;
}

.partnership-card__question {
    color: hsl(var(--base));
    font-size: 14px;
    margin-bottom: 12px;
}

.partnership-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--box-shadow-two);
}

/* ============================================
   PHASE 4 — QUESTION INTERACTIONS
   ============================================ */

.question-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.bookmark-btn {
    background: none;
    border: 1px solid hsl(var(--border-color));
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: hsl(0 0% 51%);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bookmark-btn:hover,
.bookmark-btn.active {
    background: hsl(113 100% 95%);
    border-color: hsl(var(--base));
    color: hsl(var(--base));
}

.bookmark-btn.active i {
    font-weight: 900;
}

.community-responses {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid hsl(var(--border-color));
}

.community-response {
    padding: 10px 0;
    border-bottom: 1px solid hsl(0 0% 95%);
    font-size: 14px;
    color: hsl(0 0% 40%);
}

.community-response:last-child {
    border-bottom: none;
}

.community-response__time {
    font-size: 11px;
    color: hsl(0 0% 65%);
    margin-top: 4px;
}

.territory-tag {
    display: inline-block;
    padding: 3px 10px;
    background: hsl(113 100% 95%);
    color: hsl(var(--base));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.territory-tag--sm {
    padding: 2px 8px;
    font-size: 11px;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    .auth-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .dashboard-stat-card {
        padding: 15px;
    }
    .dashboard-stat-card__number {
        font-size: 20px;
    }
    .partnership-card {
        padding: 20px;
    }
}

/* Question card header with bookmark */
.question-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.bookmark-btn.bookmarked {
    color: hsl(var(--base));
}

/* Community reflections on question cards */
.question-card__community {
    padding-top: 12px;
    border-top: 1px solid hsl(var(--border-color));
}

.question-card__community-label {
    font-size: 12px;
    font-weight: 600;
    color: hsl(0 0% 51%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.question-card__community-label i {
    margin-right: 4px;
    color: hsl(var(--base));
}

.question-card__respond {
    padding-top: 12px;
    border-top: 1px solid hsl(var(--border-color));
}

.question-card__respond textarea {
    font-size: 13px;
    resize: vertical;
}

/* Partnerships Explore nav link */
.footer-links a {
    text-decoration: none;
}

.bookmark-btn.bookmarked i {
    font-weight: 900;
}

.bookmark-form {
    display: inline;
}

.question-card__community {
    border-top: 1px solid hsl(0 0% 92%);
    padding-top: 12px;
}

.question-card__community-label {
    font-size: 12px;
    font-weight: 600;
    color: hsl(0 0% 51%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.question-card__community-label i {
    margin-right: 5px;
    color: hsl(var(--base));
}

.community-reflection {
    padding: 8px 0;
    border-bottom: 1px solid hsl(0 0% 95%);
}

.community-reflection:last-child {
    border-bottom: none;
}

.community-reflection__text {
    font-size: 14px;
    font-style: italic;
    color: hsl(0 0% 35%);
    margin-bottom: 2px;
}

.question-card__respond {
    border-top: 1px solid hsl(0 0% 92%);
    padding-top: 12px;
}

/* ============================================================
   THE MIRROR — AI CHAT (Phase 5)
   ============================================================ */

/* Conversations panel (left column) */
.mirror-conversations-panel {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.mirror-conv-item {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 4px;
    transition: background 0.2s;
    border-left: 3px solid transparent;
}

.mirror-conv-item:hover { background: hsl(113, 42%, 96%); }

.mirror-conv-item--active {
    background: hsl(113, 42%, 95%);
    border-left-color: hsl(var(--base));
}

.mirror-conv-item__title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.mirror-conv-item__meta {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Chat panel (right column) */
.mirror-chat-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.mirror-controls {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.mirror-controls__territory { flex: 1; min-width: 180px; }
.mirror-controls__mode { flex-shrink: 0; }

.mirror-mode-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--body-font);
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.mirror-mode-btn--active {
    background: hsl(var(--base)) !important;
    color: #fff !important;
    border-color: hsl(var(--base)) !important;
}

.mirror-mode-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Chat area */
.mirror-chat-area {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 500px;
    min-height: 300px;
}

.mirror-empty-state {
    text-align: center;
    color: #888;
    margin: auto;
    max-width: 400px;
    line-height: 1.6;
}

.mirror-empty-state p {
    font-family: var(--body-font);
    font-size: 15px;
    color: #999;
}

/* Messages */
.mirror-msg {
    max-width: 75%;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.6;
}

.mirror-msg p { margin-bottom: 8px; }
.mirror-msg p:last-child { margin-bottom: 0; }

.mirror-msg--user {
    align-self: flex-end;
    background: hsl(113, 42%, 95%);
    border-bottom-right-radius: 4px;
    color: #333;
}

.mirror-msg--assistant {
    align-self: flex-start;
    background: #f8f8f6;
    border: 1px solid #eee;
    border-bottom-left-radius: 4px;
}

.mirror-msg--assistant p:first-child {
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(113 100% 25%);
}

/* Reflecting dots */
.mirror-reflecting {
    align-self: flex-start;
    padding: 14px 20px;
    display: flex;
    gap: 6px;
}

.mirror-reflecting__dot {
    width: 8px;
    height: 8px;
    background: hsl(var(--base));
    border-radius: 50%;
    animation: mirrorPulse 1.4s ease-in-out infinite;
}

.mirror-reflecting__dot:nth-child(2) { animation-delay: 0.2s; }
.mirror-reflecting__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes mirrorPulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

/* Input area */
.mirror-input-wrapper {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.mirror-input-wrapper textarea {
    flex: 1;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 14px;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.4;
    max-height: 120px;
    overflow-y: auto;
}

.mirror-input-wrapper textarea:focus {
    outline: none;
    border-color: hsl(var(--base));
    box-shadow: 0 0 0 3px hsl(var(--base) / 0.15);
}

.mirror-send-btn {
    padding: 10px 16px;
    background: hsl(var(--base));
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.mirror-send-btn:hover { background: hsl(113 100% 25%); }
.mirror-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.mirror-token-indicator {
    font-size: 12px;
    color: #999;
    padding: 4px 20px 8px;
}

.mirror-limit-reached {
    padding: 24px;
    text-align: center;
    background: hsl(113, 42%, 95%);
    border-radius: 12px;
    margin: 16px 20px;
    font-family: var(--body-font);
    line-height: 1.6;
}

.mirror-limit-reached h3 {
    font-family: var(--heading-font);
    color: hsl(113 100% 25%);
    margin-bottom: 12px;
}

/* Mirror mobile */
@media (max-width: 991px) {
    .mirror-conversations-panel { position: static; }
    .mirror-msg { max-width: 90%; }
}

@media (max-width: 767px) {
    .mirror-chat-area { max-height: 400px; }
    .mirror-controls { gap: 12px; }
}

/* ============================================================
   STONE AGE TEST — Interactive (Phase 5)
   ============================================================ */

.stone-age-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.stone-age-screen {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: stoneAgeFadeIn 0.6s ease;
}

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

.stone-age-title {
    font-family: var(--heading-font);
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
}

.stone-age-scenario {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.stone-age-prompt {
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 30px;
    color: hsl(113 100% 40%);
}

.stone-age-textarea {
    width: 100%;
    min-height: 120px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
}

.stone-age-textarea:focus {
    outline: none;
    border-color: hsl(var(--base));
}

.stone-age-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

.stone-age-btn {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(var(--base));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.2s, opacity 0.2s;
}

.stone-age-btn:hover { background: hsl(113 100% 25%); }
.stone-age-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Loading animation */
.stone-age-loading { position: relative; width: 100px; height: 100px; margin: 40px auto; }
.stone-age-loading__circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid hsl(var(--base));
    border-radius: 50%;
    animation: stoneAgeExpand 2s ease-in-out infinite;
}
.stone-age-loading__circle:nth-child(2) { animation-delay: 0.4s; }
.stone-age-loading__circle:nth-child(3) { animation-delay: 0.8s; }

@keyframes stoneAgeExpand {
    0% { transform: scale(0.3); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Result */
.stone-age-result {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stone-age-territory-badge {
    display: inline-block;
    padding: 6px 16px;
    background: hsl(var(--base));
    color: #fff;
    border-radius: 20px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    margin: 4px;
}

.stone-age-territory-explanation {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 8px 0 16px;
    font-style: italic;
}

.stone-age-questions-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.stone-age-questions-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(113 100% 40%);
}

.stone-age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stone-age-btn--secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.stone-age-btn--secondary:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
    .stone-age-title { font-size: 28px; }
    .stone-age-prompt { font-size: 20px; }
    .stone-age-scenario { font-size: 16px; }
}

/* ============================================================
   PHASE 5 — Admin AI Pages & Dashboard Conversation Styles
   ============================================================ */

/* Admin AI Companion */
.ai-companion-chat {
    display: flex;
    flex-direction: column;
    height: 600px;
    border: 1px solid hsl(0 0% 90%);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.ai-companion-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-companion-sidebar {
    background: hsl(0 0% 97%);
    border-right: 1px solid hsl(0 0% 90%);
    border-radius: 10px 0 0 10px;
    padding: 20px 0;
    overflow-y: auto;
}

.ai-companion-sidebar__item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: hsl(0 0% 30%);
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

.ai-companion-sidebar__item:hover,
.ai-companion-sidebar__item--active {
    background: hsl(0 0% 93%);
    border-left-color: hsl(113 100% 33%);
    color: hsl(0 0% 13%);
}

.ai-companion-generate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 20px;
    background: hsl(0 0% 97%);
    border-top: 1px solid hsl(0 0% 90%);
}

.ai-companion-generate-buttons .btn {
    font-size: 13px;
    padding: 6px 14px;
}

/* Admin Prompt Management */
.ai-prompt-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-prompt-tree__item {
    border: 1px solid hsl(0 0% 90%);
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}

.ai-prompt-tree__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    background: hsl(0 0% 98%);
    border-bottom: 1px solid hsl(0 0% 93%);
}

.ai-prompt-tree__header:hover {
    background: hsl(0 0% 95%);
}

.ai-prompt-tree__name {
    font-weight: 600;
    font-size: 15px;
    color: hsl(0 0% 13%);
}

.ai-prompt-tree__meta {
    font-size: 12px;
    color: hsl(0 0% 51%);
}

.ai-prompt-tree__body {
    padding: 15px 18px;
    font-size: 14px;
    color: hsl(0 0% 30%);
    line-height: 1.6;
}

.ai-prompt-tree__versions {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    border-top: 1px solid hsl(0 0% 93%);
    padding-top: 10px;
}

.ai-prompt-tree__version {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: hsl(0 0% 40%);
    border-bottom: 1px solid hsl(0 0% 96%);
}

/* Admin AI Usage Analytics */
.ai-usage-card {
    background: #fff;
    border: 1px solid hsl(0 0% 90%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.ai-usage-card__title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: hsl(0 0% 51%);
    margin-bottom: 8px;
}

.ai-usage-card__value {
    font-size: 32px;
    font-weight: 700;
    color: hsl(113 100% 33%);
    line-height: 1;
    margin-bottom: 4px;
}

.ai-usage-card__sub {
    font-size: 13px;
    color: hsl(0 0% 60%);
}

.ai-usage-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: hsl(0 0% 51%);
    font-weight: 500;
    border-bottom: 2px solid hsl(0 0% 90%);
    padding: 10px 12px;
}

.ai-usage-table td {
    font-size: 14px;
    padding: 10px 12px;
    vertical-align: middle;
    border-bottom: 1px solid hsl(0 0% 96%);
}

/* Dashboard Conversation List */
.dashboard-conversation-item {
    background: #fff;
    border: 1px solid hsl(0 0% 90%);
    border-radius: 8px;
    padding: 15px 18px;
    margin-bottom: 10px;
    transition: box-shadow 0.15s ease;
}

.dashboard-conversation-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.dashboard-conversation-item__title {
    font-family: var(--heading-font);
    font-size: 16px;
    color: hsl(0 0% 13%);
    margin-bottom: 6px;
}

.dashboard-conversation-item__meta {
    font-size: 13px;
    color: hsl(0 0% 51%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Stone Age Result Cards in Dashboard */
.stone-result-card {
    background: #fff;
    border: 1px solid hsl(0 0% 90%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.stone-result-card__territory-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.stone-result-card__answers {
    background: hsl(0 0% 97%);
    border-left: 3px solid hsl(113 100% 33%);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.stone-result-card__questions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid hsl(0 0% 93%);
}

.stone-result-card__questions li {
    padding: 8px 0;
    border-bottom: 1px solid hsl(0 0% 95%);
    font-size: 15px;
    line-height: 1.6;
    color: hsl(0 0% 13%);
    list-style: none;
}

.stone-result-card__questions li:last-child {
    border-bottom: none;
}

/* ============================================================
   LEGAL PAGES (Terms & Privacy)
   ============================================================ */

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    color: hsl(0 0% 13%);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(113 100% 33% / 0.2);
}

.legal-content h3 {
    font-family: var(--body-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: hsl(0 0% 20%);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: hsl(0 0% 30%);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: hsl(0 0% 30%);
    line-height: 1.7;
}

.legal-content a {
    color: hsl(113 100% 33%);
    text-decoration: underline;
}

.legal-content a:hover {
    color: hsl(113 100% 25%);
}

.legal-updated {
    font-size: 0.9rem;
    color: hsl(0 0% 50%);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(0 0% 90%);
}

.footer-bottom__legal {
    display: inline;
    margin-left: 15px;
}

.footer-bottom__legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin: 0 8px;
    font-size: 12px;
}

.footer-bottom__legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============ Phase 7A Mobile Responsive ============ */
@media (max-width: 767px) {
    /* Inquiry tabs: horizontal scroll on small screens */
    .inquiry-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
    }
    .inquiry-tab {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Inquiry cards: single column */
    .inquiry-card {
        padding: 16px;
    }

    /* Question detail: reduce spacing */
    .question-detail-hero {
        padding: 30px 15px;
    }
    .question-detail-hero__text {
        font-size: 22px;
    }
    .question-detail-subs {
        padding: 15px;
    }

    /* Project detail: reduce hero padding, compact info card */
    .project-section {
        margin-bottom: 30px;
    }
    .project-info-card {
        margin-top: 20px;
    }
    .project-gallery {
        grid-template-columns: 1fr;
    }

    /* Admin dashboard panels: stack */
    .dashboard-panel-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stone Age CTA banner */
    .stone-age-cta-banner__heading {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    /* Even smaller: further compact */
    .inquiry-tab {
        padding: 6px 10px;
        font-size: 11px;
    }
    .inquiry-tab i {
        display: none;
    }
    .question-detail-hero__text {
        font-size: 18px;
    }
    .hero-graphic {
        width: 300px;
        height: 300px;
    }
}
