/* ==========================================================================
   LUXE LANDING — Julie Granger / The Studio Paris
   Extracted from booty-challenge.html. Reusable via base_luxe_landing.html.
   Fonts: Tenor Sans (headings) + Montserrat (body) loaded in template <head>.
   ========================================================================== */

:root {
    --gold: #C6AD80;
    --gold-light: #d4c4a0;
    --black: #000000;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --gray: #666666;
    --gray-light: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Tenor Sans', serif;
}

/* ==========================================================================
   LANGUAGE SELECTOR
   ========================================================================== */
.lang-selector {
    position: fixed;
    top: 104px;
    right: 16px;
    z-index: 200;
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gray-light);
    border-radius: 30px;
    padding: 6px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    background: var(--gray-light);
}

.lang-btn.active-lang {
    background: var(--black);
    color: var(--white);
}

/* ==========================================================================
   COUNTDOWN BAR (optional, sticky top)
   ========================================================================== */
.tsp-countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    background: var(--black);
    color: var(--white);
    font-family: 'Tenor Sans', serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tsp-countdown-bar strong {
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 2.5px;
}

.tsp-countdown-bar .tsp-countdown-sep {
    display: inline-block;
    margin: 0 14px;
    opacity: 0.35;
}

.tsp-countdown-bar .tsp-countdown-short {
    display: none;
}

@media (max-width: 640px) {
    .tsp-countdown-bar {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 8px 12px;
    }

    .tsp-countdown-bar .tsp-countdown-long {
        display: none;
    }

    .tsp-countdown-bar .tsp-countdown-short {
        display: inline;
    }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.tsp-header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.tsp-header.no-countdown {
    top: 0;
}

.tsp-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.tsp-header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tsp-logo {
    height: 45px;
}

@media (max-width: 640px) {
    .tsp-header {
        top: 32px;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-gold {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-gold-filled {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 16px 48px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-gold-filled:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-gold-background-black {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-gold-background-black:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ==========================================================================
   GOOGLE REVIEW BADGE
   ========================================================================== */
.tsp-google-review {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.tsp-google-logo {
    height: 28px;
    width: auto;
}

.tsp-google-text {
    font-size: 0.85rem;
    color: var(--gray);
}

.tsp-google-text strong {
    color: var(--black);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.tsp-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.tsp-hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.tsp-hero-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.tsp-hero-text .tsp-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}

.tsp-hero-text .tsp-subtitle strong {
    color: var(--black);
}

.ttc-hero-cta-sub {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

.tsp-hero-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.tsp-hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   TRUST CAROUSEL (infinite marquee)
   ========================================================================== */
.tsp-trust-carousel {
    padding: 32px 0;
    overflow: hidden;
    background: var(--white);
}

.tsp-trust-track {
    display: flex;
    animation: marquee 60s linear infinite;
    gap: 40px;
    width: max-content;
}

.tsp-trust-track img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    filter: saturate(0.88);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* ==========================================================================
   NARRATIVE (2-col story)
   ========================================================================== */
.tsp-story {
    padding: 140px 32px;
    background: var(--white);
}

.tsp-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tsp-story-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.tsp-story-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.tsp-story-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tsp-story h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    line-height: 1.35;
}

.tsp-story p {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 28px;
}

.tsp-story p strong {
    color: var(--black);
}

.tsp-story p em {
    color: var(--gray);
    font-style: italic;
}

.ttc-highlight {
    font-family: 'Tenor Sans', serif;
    font-size: 1.3rem;
    color: var(--black);
    text-align: center;
    padding: 32px 0;
    line-height: 1.5;
}

.ttc-highlight strong {
    color: var(--gold);
}

/* ==========================================================================
   PROGRAMME (dark section, 3-card grid)
   ========================================================================== */
.tsp-programme {
    padding: 140px 32px;
    background: var(--black);
    color: var(--white);
}

.tsp-programme-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ttc-challenge-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ttc-challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.ttc-challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.ttc-challenge-card:hover {
    background: rgba(198, 173, 128, 0.06);
    border-color: rgba(198, 173, 128, 0.5);
}

.ttc-challenge-card .ttc-card-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttc-challenge-card .ttc-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ttc-challenge-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.ttc-challenge-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIAL / COMMUNITY (WhatsApp mockup)
   ========================================================================== */
.tsp-testimonial {
    padding: 140px 32px;
    background: var(--off-white);
}

.tsp-testimonial-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tsp-testimonial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tsp-testimonial-text h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 24px;
    text-align: left;
}

.tsp-testimonial-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 28px;
    text-align: left;
}

.tsp-testimonial-text .ttc-tagline {
    font-family: 'Tenor Sans', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 12px;
    font-style: italic;
}

.ttc-wa-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    max-width: 380px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.ttc-wa-icon {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ttc-wa-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.ttc-wa-mockup h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ttc-wa-mockup p {
    font-size: 0.85rem;
    color: var(--gray);
}

.ttc-wa-bubbles {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ttc-wa-bubble {
    background: #DCF8C6;
    padding: 10px 16px;
    border-radius: 16px 16px 0 16px;
    font-size: 0.8rem;
    color: #333;
    align-self: flex-end;
    max-width: 80%;
    text-align: left;
}

.ttc-wa-bubble.received {
    background: #f0f0f0;
    border-radius: 16px 16px 16px 0;
    align-self: flex-start;
}

/* ==========================================================================
   MEET THE SQUAD (manual carousel)
   ========================================================================== */
.tsp-squad {
    padding: 140px 32px;
    background: var(--black);
    color: var(--white);
}

.tsp-squad h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 48px;
}

.tsp-squad-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.tsp-squad-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.tsp-squad-slide {
    min-width: calc(33.333% - 16px);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.tsp-squad-slide img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.tsp-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.tsp-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.tsp-carousel-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ==========================================================================
   RESULTS TESTIMONIALS (3 cards, round avatars)
   ========================================================================== */
.tsp-results {
    padding: 140px 32px;
    background: var(--off-white);
}

.tsp-results-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tsp-results-inner .ttc-challenge-label {
    color: var(--gold);
    margin-bottom: 20px;
}

.tsp-results-inner h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    margin-bottom: 72px;
    line-height: 1.35;
}

.tsp-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.tsp-result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.tsp-result-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 28px;
    background: var(--gray-light);
}

.tsp-result-card blockquote {
    font-family: 'Tenor Sans', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 24px;
    max-width: 320px;
}

.tsp-result-card cite {
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ==========================================================================
   STEPS (numbered list, used inside programme dark section)
   ========================================================================== */
.ttc-steps-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.ttc-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}

.ttc-step:last-child {
    border-bottom: none;
}

.ttc-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.ttc-step-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--white);
}

.ttc-step-content p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

.ttc-steps-date {
    margin-top: 48px;
    font-family: 'Tenor Sans', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-align: center;
}

/* ==========================================================================
   PRICING (2-col plan + quiz)
   ========================================================================== */
.tsp-pricing {
    padding: 140px 32px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://julie-granger.com/wp-content/uploads/2025/08/Untitled-design-16.jpg') center/cover no-repeat fixed;
    color: var(--white);
}

.tsp-pricing-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.tsp-pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.tsp-pricing-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tsp-pricing-header .tsp-pricing-sub {
    font-family: 'Tenor Sans', serif;
    font-size: 1.6rem;
    color: var(--gold);
}

.tsp-pricing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tsp-pricing-left {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid #eaeaea;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    color: var(--black);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.tsp-pricing-left .tsp-plan-label {
    font-family: 'Tenor Sans', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.tsp-plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tsp-plan-toggle span {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    color: #666;
}

.tsp-plan-toggle span.active {
    color: var(--gold);
}

.tsp-toggle-switch {
    width: 56px;
    height: 28px;
    background: #ccc;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.tsp-toggle-switch.annual {
    background: var(--gold);
}

.tsp-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tsp-toggle-switch.annual::after {
    transform: translateX(28px);
}

.tsp-plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--black);
}

.tsp-plan-per {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.tsp-plan-promo {
    display: inline-block;
    background: rgba(198, 173, 128, 0.15);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 12px 0;
}

.tsp-plan-billing {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.tsp-plan-trial {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 28px;
}

.tsp-plan-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    border-top: 1px solid #eaeaea;
    padding-top: 24px;
}

.tsp-plan-features li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.tsp-plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.btn-price {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    color: var(--black);
    background: var(--gold);
}

.btn-price:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* Quiz panel (discreet, secondary path) */
.tsp-pricing-right {
    background: rgba(255, 255, 255, 0.92);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    padding: 44px 36px;
    color: var(--black);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tsp-quiz-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray);
    margin-bottom: 10px;
}

.tsp-pricing-right .tsp-form-sub {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.tsp-form .tsp-progress-bar {
    height: 5px;
    background-color: #eaeaea;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 28px;
}

.tsp-form .tsp-progress-fill {
    height: 100%;
    background-color: var(--gold);
    width: 0%;
    transition: width 0.3s ease;
}

.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

.tsp-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: none;
}

.tsp-form fieldset.active {
    display: block;
    animation: tspFadeIn 0.3s ease;
}

@keyframes tspFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tsp-form fieldset h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.tsp-form label.tsp-radio-label {
    display: block;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    color: #333;
}

.tsp-form label.tsp-radio-label:hover {
    border-color: var(--gold);
    background: rgba(198, 173, 128, 0.05);
}

.tsp-form label.tsp-radio-label input[type="radio"] {
    accent-color: var(--gold);
    margin-right: 10px;
    transform: scale(1.15);
}

.tsp-form label.tsp-input-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 14px;
}

.tsp-form label.tsp-input-label span {
    display: block;
    margin-bottom: 5px;
}

.tsp-form input[type="text"],
.tsp-form input[type="email"],
.tsp-form input[type="tel"],
.tsp-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--black);
    transition: border-color 0.2s;
}

.tsp-form input:focus,
.tsp-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.tsp-form .tsp-phone-row {
    display: flex;
    gap: 10px;
}

.tsp-form .tsp-phone-row select {
    width: 35%;
}

.tsp-form .tsp-phone-row input {
    width: 65%;
}

.tsp-form-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tsp-form-actions button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tsp-form-actions button:hover {
    background: var(--gold);
    color: var(--black);
}

.tsp-form-actions button.tsp-btn-back {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.tsp-form-actions button.tsp-btn-back:hover {
    border-color: var(--gold);
    color: var(--black);
    background: transparent;
}

.tsp-result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
}

.tsp-result-container img {
    max-width: 360px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tsp-result-container p {
    font-size: 1.05rem;
    color: #333;
}

.tsp-result-container h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
}

.tsp-result-container .tsp-btn-result {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tsp-result-container .tsp-btn-result:hover {
    background: var(--black);
    color: var(--white);
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.ttc-faq {
    padding: 140px 32px;
    background: var(--white);
}

.ttc-faq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ttc-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.ttc-faq h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 48px;
}

.ttc-faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.ttc-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s ease;
}

.ttc-faq-question:hover {
    color: var(--gold);
}

.ttc-faq-question .ttc-faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ttc-faq-question.active .ttc-faq-icon {
    transform: rotate(45deg);
}

.ttc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ttc-faq-answer.open {
    max-height: 500px;
    padding-bottom: 20px;
}

.ttc-faq-answer p,
.ttc-faq-answer li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.ttc-faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.ttc-faq-answer ul li {
    padding-left: 8px;
}

.ttc-faq-answer ul li::before {
    content: "\2022 ";
    color: var(--gold);
    font-weight: 700;
}

/* ==========================================================================
   PRESS (full-width band)
   ========================================================================== */
.ttc-press {
    padding: 140px 32px;
    background: var(--off-white);
}

.ttc-press-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ttc-press-inner .ttc-challenge-label {
    color: var(--gold);
    margin-bottom: 20px;
}

.ttc-press-inner h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    letter-spacing: 0.5px;
    margin-bottom: 56px;
}

.ttc-press-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: var(--gray-light);
}

.ttc-press-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.ttc-press-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.ttc-press-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ttc-press-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.ttc-press-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ttc-press-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tsp-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 24px;
}

.tsp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tsp-footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.tsp-footer-links {
    display: flex;
    gap: 24px;
}

.tsp-footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.tsp-footer-copy {
    color: #666;
    font-size: 0.8rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .tsp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tsp-hero-text .tsp-subtitle {
        margin: 0 auto 24px;
    }

    .tsp-google-review {
        justify-content: center;
    }

    .tsp-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tsp-story-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .tsp-testimonial-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .ttc-challenge-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 48px auto;
    }
}

@media (max-width: 900px) {
    .tsp-results-grid {
        grid-template-columns: 1fr;
        gap: 72px;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tsp-story,
    .tsp-programme,
    .tsp-testimonial,
    .tsp-squad,
    .tsp-results,
    .tsp-pricing,
    .ttc-faq,
    .ttc-press {
        padding: 88px 20px;
    }

    .tsp-hero-inner {
        gap: 48px;
        padding: 32px 20px;
    }

    .tsp-hero-text h1 {
        font-size: 2rem;
    }

    .tsp-squad-slide {
        min-width: 100%;
        height: 700px;
    }

    .tsp-footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .tsp-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tsp-trust-track img {
        height: 36px;
    }

    .tsp-trust-track {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .tsp-header-inner {
        padding: 10px 16px;
    }

    .tsp-logo {
        height: 30px;
    }

    .tsp-header .btn-gold {
        padding: 8px 14px;
        font-size: 0.70rem;
        letter-spacing: 0px;
    }

    .tsp-hero-text h1 {
        font-size: 1.6rem;
    }

    .tsp-pricing-header h2 {
        font-size: 1.8rem;
    }

    .tsp-pricing-left {
        padding: 32px 24px;
    }

    .tsp-pricing-right {
        padding: 32px 20px;
    }

    .tsp-squad-slide {
        min-width: 100%;
        height: 550px;
    }

    .tsp-trust-track img {
        height: 30px;
    }
}
