/* ==========================================================================
   DESIGN SYSTEM - BOGDAN TRAINER (WARM TERRACOTTA - DARK VARIANT)
   ========================================================================== */

:root {
    --bg-page: #1C1512;
    --bg-surface: #2C2119;
    --bg-elevated: #362920;
    --bg-ink: #120D0B;

    --primary: #D0704A;          /* Terracotta / rust, brightened for dark bg */
    --primary-dark: #C4633F;

    --secondary: #C99A5B;        /* Warm bronze / gold */
    --secondary-dark: #8a6a3f;

    --text-ink: #F0E6D8;         /* warm off-white / cream */
    --text-muted: #A89484;       /* warm taupe-gray */
    --text-faint: #7A6A5C;
    --text-on-accent: #1C1512;

    --border-color: rgba(240, 230, 216, 0.10);
    --border-glow: rgba(208, 112, 74, 0.35);

    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Flat, editorial surfaces — hairline borders instead of pill shapes and blurred glows */
    --radius-sm: 3px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --container-max-width: 1200px;
    --header-height: 88px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    background-color: var(--bg-page);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   UTILITY CLASSES & GRID SYSTEM
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.text-gradient {
    background: linear-gradient(135deg, var(--text-ink) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 11px 22px;
    font-size: 13px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-accent);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-primary::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--text-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.btn-primary:hover::after {
    transform: scaleX(1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-ink);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Repurposed from a blurred drop-shadow into a thin resting underline so CTAs read as
   understated hairline accents rather than a glowing SaaS button. */
.btn-glow {
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.btn-glow:hover {
    box-shadow: none;
}

.btn-whatsapp {
    background-color: #1f9d5c;
    color: #ffffff;
    gap: 10px;
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(31, 157, 92, 0.25);
}

.btn-whatsapp:hover {
    background-color: #1c8a52;
    box-shadow: 0 10px 30px rgba(31, 157, 92, 0.4);
    color: #ffffff;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Badge / Eyebrow — a small-caps label with a short rule, like a magazine kicker,
   instead of a filled pill chip */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.badge::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

.accent-line {
    position: relative;
    display: inline-block;
    font-style: italic;
    color: var(--primary);
}

.accent-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

/* Transparent over the hero, solid hairline bar once the page scrolls — the header
   only announces itself when it needs to separate from content behind it. */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: background var(--transition-normal), border-color var(--transition-normal), height var(--transition-normal);
}

.main-header.scrolled {
    height: 74px;
    background: rgba(28, 21, 18, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-color);
}

.header-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    column-gap: 36px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    color: var(--text-ink);
    letter-spacing: 0.2px;
    justify-self: center;
}

.logo span {
    color: var(--primary);
    font-style: italic;
}

.main-nav-left ul {
    justify-content: flex-end;
}

.main-nav-right ul {
    justify-content: flex-start;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-ink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 3px;
    transform: translateX(-50%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
}

/* Language switcher — plain tracked text divided by a slash, no pill background */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.lang-divider {
    color: var(--text-faint);
    font-size: 12px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-faint);
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.lang-btn:hover {
    color: var(--text-muted);
}

.lang-btn.active {
    color: var(--primary);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 1px;
    background-color: var(--text-ink);
    transition: var(--transition-fast);
}

.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer — a fullscreen editorial reveal (fade + settle) rather than a side
   panel that slides in, with links appearing in a short staggered sequence. */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 13, 11, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility 0s linear var(--transition-normal);
}

.mobile-drawer.open {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition-normal), visibility 0s;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-ink);
    display: block;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-drawer.open .drawer-link {
    opacity: 1;
    transform: translateY(0);
}

.drawer-link.btn {
    font-size: 15px;
    font-style: normal;
    margin-top: 12px;
}

.mobile-nav li:nth-child(1) .drawer-link { transition-delay: 0.05s; }
.mobile-nav li:nth-child(2) .drawer-link { transition-delay: 0.1s; }
.mobile-nav li:nth-child(3) .drawer-link { transition-delay: 0.15s; }
.mobile-nav li:nth-child(4) .drawer-link { transition-delay: 0.2s; }
.mobile-nav li:nth-child(5) .drawer-link { transition-delay: 0.25s; }
.mobile-nav li:nth-child(6) .drawer-link { transition-delay: 0.3s; }

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

.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 36px;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-page);
    margin-right: -12px;
}

.trust-text {
    font-size: 14px;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--text-ink);
}

/* Hero Image & Float Cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trainer-image-container {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-trainer-img {
    width: 100%;
    aspect-ratio: 736 / 854;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* A single offset hairline frame standing behind the portrait — a still, printed-card
   accent instead of an animated gradient glow ring. */
.hero-glow-ring {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary);
    opacity: 0.5;
    z-index: 1;
}

/* Hero vertical tag — a small dark plaque along the image edge, echoing the before/after chips */
.hero-tag {
    position: absolute;
    top: 28px;
    left: -18px;
    z-index: 3;
    background: var(--bg-ink);
    border: 1px solid rgba(240, 230, 216, 0.12);
    border-radius: 3px;
    padding: 10px 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero-tag span {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Flat editorial cards — a hairline border and a thin top rule instead of a floating
   glass panel, with the icon set inline rather than overlapping like a medallion */
.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 32px 36px;
    transition: border-color var(--transition-normal), transform var(--transition-normal);
    position: relative;
    overflow: visible;
}

.service-card.accent-gold {
    border-top: 2px solid var(--primary);
}

.service-card.accent-jade {
    border-top: 2px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

/* Numbered index — a plain serif italic numeral, no chip */
.service-index {
    position: absolute;
    top: 26px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--text-faint);
}

.service-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin-bottom: 24px;
}

.service-icon-bg.yellow-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-on-accent);
}

.service-icon-bg.orange-glow {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-on-accent);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 21px;
    margin: 0 0 16px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-bullets li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-ink);
}

.service-bullets li span {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   ABOUT SECTION (with embedded stat strip)
   ========================================================================== */

.about-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.about-img {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm) 0 0 0;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .exp-num,
.experience-badge .exp-txt {
    color: var(--text-on-accent);
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.exp-txt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-ink);
}

.about-lead {
    font-size: 21px;
    color: var(--text-ink);
    margin-bottom: 24px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.about-paragraph {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-muted);
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Inline stat strip inside About - presented as a glass panel of chips */
.about-stats {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

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

.stat-card {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.stat-card + .stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   MY TRANSFORMATION (JOURNEY) SECTION
   ========================================================================== */

.journey-section {
    padding: 100px 0;
}

.journey-lead {
    max-width: 700px;
    margin: 0 auto 56px auto;
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Storytelling slideshow */
.journey-story {
    outline: none;
}

.journey-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}

.journey-progress-seg {
    flex: 1 1 0;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: rgba(240, 230, 216, 0.14);
    cursor: pointer;
    overflow: hidden;
}

.journey-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 4px;
}

.journey-progress-seg.done .journey-progress-fill {
    transform: scaleX(1);
}

.journey-progress-seg.current .journey-progress-fill {
    animation: journeyProgressFill 6s linear forwards;
}

/* Autoplay interval is 6s in app.js — keep this duration in sync with it */
.journey-story.paused .journey-progress-seg.current .journey-progress-fill {
    animation-play-state: paused;
}

@keyframes journeyProgressFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.journey-stage {
    display: flex;
    align-items: center;
    gap: 20px;
}

.journey-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.journey-arrow:hover {
    background: var(--primary);
    color: var(--text-on-accent);
    border-color: var(--primary);
}

.journey-arrow svg {
    width: 20px;
    height: 20px;
}

.journey-slides {
    flex: 1;
    min-width: 0;
    display: grid;
}

.journey-slide {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
    pointer-events: none;
}

.journey-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: auto;
}

.journey-slide-frame {
    position: relative;
    flex: 0 0 auto;
    width: 220px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transform: rotate(-2deg);
    transition: transform var(--transition-normal);
}

.journey-slide.active .journey-slide-frame {
    transform: rotate(0deg);
}

.journey-slide-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-slide-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--text-on-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.journey-slide-copy {
    position: relative;
    flex: 1;
    min-width: 0;
}

.journey-slide-ghost {
    position: absolute;
    top: -40px;
    left: -6px;
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-ink);
    opacity: 0.05;
    z-index: 0;
    user-select: none;
}

.journey-slide-copy h4 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: var(--text-ink);
    margin-bottom: 12px;
}

.journey-slide-copy p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.journey-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    padding: 4px 4px 10px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.journey-thumbs::-webkit-scrollbar {
    height: 6px;
}

.journey-thumbs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.journey-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 48px;
    height: 60px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.journey-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-thumb span {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.journey-thumb:hover {
    opacity: 0.8;
}

.journey-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.journey-ba {
    margin-top: 56px;
    text-align: center;
}

.journey-ba-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-ink);
    margin-bottom: 24px;
}

.journey-ba-wrapper {
    display: flex;
    justify-content: center;
}

.journey-ba-frame {
    width: 100%;
    max-width: 420px;
}

.journey-cta {
    text-align: center;
    margin-top: 56px;
}

.journey-cta p {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-ink);
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 760px) {
    .journey-slide {
        gap: 24px;
    }

    .journey-slide-frame {
        width: 200px;
    }

    .journey-slide-ghost {
        font-size: 70px;
        top: -26px;
    }

    .journey-slide-copy h4 {
        font-size: 19px;
    }

    .journey-slide-copy p {
        font-size: 13.5px;
    }
}

@media (max-width: 600px) {
    .journey-stage {
        gap: 10px;
    }

    .journey-slide {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .journey-slide-frame {
        width: min(65vw, 260px);
        align-self: flex-start;
    }

    .journey-arrow {
        width: 36px;
        height: 36px;
    }

    .journey-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   BEFORE/AFTER SLIDER SECTION
   ========================================================================== */

.results-section {
    padding: 100px 0;
}

.tab-bar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

/* Underlined tab group — plain labels sharing a hairline rule, the active one marked
   by a solid underline rather than a filled segmented-control pill */
.transformation-tabs-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 2px;
}

.transformation-tabs-container .tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 2px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: color var(--transition-fast);
    letter-spacing: 0.3px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    position: relative;
}

.transformation-tabs-container .tab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.transformation-tabs-container .tab-btn:hover {
    color: var(--text-ink);
}

.transformation-tabs-container .tab-btn.active {
    color: var(--primary);
}

.transformation-tabs-container .tab-btn.active::after {
    transform: scaleX(1);
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto 60px auto;
    max-width: 720px;
    width: 100%;
}

.before-after-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.image-after, .image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-after img, .image-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-before {
    width: 50%;
    overflow: hidden;
    z-index: 10;
    border-right: 1px solid rgba(244, 241, 232, 0.2);
}

.image-before img {
    /* Adjusted dynamically by JS to prevent distortion at smaller screens */
    width: 720px;
    max-width: none;
}

.image-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(240, 230, 216, 0.14);
    color: var(--text-on-accent);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    z-index: 20;
}

.label-before {
    left: 20px;
    border-left: 2px solid var(--secondary);
}

.label-after {
    right: 20px;
    border-right: 2px solid var(--primary);
}

/* Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: var(--primary);
    z-index: 30;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: rgba(244, 241, 232, 0.2);
}

.handle-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-accent);
    cursor: ew-resize;
    transition: transform var(--transition-fast);
}

.slider-handle:hover .handle-button {
    transform: scale(1.1);
}

.handle-arrow {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   TESTIMONIALS SECTION (asymmetric quote style — left jade rule, no full box)
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-slider-container {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-normal);
}

.testimonial-card {
    min-width: 100%;
    background: transparent;
    border: none;
    border-left: 3px solid var(--secondary);
    border-radius: 0;
    padding: 20px 0 20px 44px;
    text-align: left;
    position: relative;
    opacity: 0.3;
    transform: translateX(-8px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 90px;
    font-family: var(--font-heading);
    color: var(--primary);
    opacity: 0.25;
    position: absolute;
    top: -20px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 23px;
    line-height: 1.55;
    color: var(--text-ink);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.client-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-name {
    font-size: 17px;
    color: var(--text-ink);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.client-goal {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
}

/* Slider Nav Controls */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-nav-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-ink);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--text-on-accent);
    border-color: var(--primary);
}

.slider-nav-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(240, 230, 216, 0.18);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 10px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION — jade accent, distinct from gold service accents)
   ========================================================================== */

.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-ink);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    gap: 20px;
}

/* Toggle "+" as a small circular chip, matching the site's other round chips */
.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-page);
    color: var(--primary);
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active {
    border-color: var(--border-glow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--text-on-accent);
    border-color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

/* Split layout: CTA copy on one side, a plain divided list on the other — no boxed cards */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    text-align: left;
}

.contact-lead {
    font-size: 18px;
    max-width: 440px;
}

.contact-list {
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.contact-list > :first-child {
    border-top: 1px solid var(--border-color);
}

.contact-row:hover {
    padding-left: 12px;
}

.method-icon {
    font-size: 26px;
    background: var(--bg-elevated);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-copy h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-ink);
}

.contact-row-copy p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-row-arrow {
    margin-left: auto;
    color: var(--primary);
    font-family: var(--font-heading);
    opacity: 0;
    transition: var(--transition-fast);
}

.contact-row:hover .contact-row-arrow {
    opacity: 1;
}

.contact-row.green-hover:hover .contact-row-arrow {
    color: #1f9d5c;
}

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

/* Dark charcoal band — a deliberate contrast to the cream page, echoing the image-overlay chips */
.main-footer {
    --text-ink: #F0E6D8;
    --text-muted: #A89484;
    --text-faint: #7A6A5C;
    --border-color: rgba(240, 230, 216, 0.14);
    background: var(--bg-ink);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(240, 230, 216, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-ink);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--text-on-accent);
    border-color: var(--primary);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.main-footer h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.main-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-legal a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-faint);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .main-nav, .header-actions .btn-sm {
        display: none;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
    }

    .logo {
        justify-self: auto;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions, .hero-trust {
        justify-content: center;
    }

    .hero-tag {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        max-width: 500px;
        text-align: left;
    }

    .testimonial-card {
        text-align: center;
        padding-left: 30px;
    }

    .client-meta {
        align-items: center;
    }

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

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

    .stat-card + .stat-card::before {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-lead {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .logo {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .transformation-tabs-container .tab-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 14px;
    }
    .exp-num {
        font-size: 26px;
    }
    .exp-txt {
        font-size: 9px;
    }
}
