/*
 * TempCover — GoShorty-Inspired Theme
 * Road journey vibe. Cinematic hero, horizontal steps, stacked features,
 * alternating chat testimonials, split CTA.
 * ──────────────────────────────────────────────────────────── */

/* ── Override variables ──────────────────────────── */
:root {
    --tc-primary: #C62828;
    --tc-primary-light: #E53935;
    --tc-primary-dark: #A11B1B;
    --tc-secondary: #2D2D2D;
    --tc-accent: #FFC107;
    --tc-accent-light: #FFD54F;

    --tc-dark: #1A1A1A;
    --tc-gray-900: #212121;
    --tc-gray-800: #333333;
    --tc-gray-700: #4A4A4A;
    --tc-gray-600: #666666;
    --tc-gray-500: #888888;
    --tc-gray-400: #AAAAAA;
    --tc-gray-300: #CCCCCC;
    --tc-gray-200: #E0E0E0;
    --tc-gray-100: #F0F0F0;
    --tc-gray-50: #F8F8F8;

    --tc-shadow-primary: 0 4px 14px rgba(198, 40, 40, 0.3);
    --tc-shadow-primary-lg: 0 8px 25px rgba(198, 40, 40, 0.4);

    --tc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Global overrides ────────────────────────────── */
body.theme-goshorty {
    background: var(--tc-gray-50);
    color: var(--tc-gray-900);
}

/* ── Header — dark charcoal ──────────────────────── */
body.theme-goshorty .tc-header {
    background: var(--tc-secondary);
    border-bottom: 1px solid rgba(198, 40, 40, 0.2);
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.4);
}

body.theme-goshorty .tc-header__brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}

body.theme-goshorty .tc-header__menu a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

body.theme-goshorty .tc-header__menu a:hover {
    color: #fff;
}

body.theme-goshorty .tc-header__cta {
    background: var(--tc-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 12px rgba(198, 40, 40, 0.4);
}

body.theme-goshorty .tc-header__cta:hover {
    background: var(--tc-primary-light) !important;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.5);
}

/* Mobile toggle */
body.theme-goshorty .tc-header__toggle span {
    background: rgba(255, 255, 255, 0.8);
}

/* ── Full-Dark Cinematic Hero ───────────────────────
   Dark bg, centered text, floating stat badges, road stripe bottom
   ─────────────────────────────────────────────────── */
.gs-hero {
    position: relative;
    background: var(--tc-dark);
    overflow: hidden;
    padding: 140px 24px 120px;
    text-align: center;
    color: #fff;
    min-height: 520px;
}

.gs-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 120%;
    background:
        radial-gradient(ellipse at 50% 70%, rgba(198, 40, 40, 0.25) 0%, rgba(198, 40, 40, 0.08) 35%, transparent 65%);
    pointer-events: none;
}

.gs-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.gs-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    color: #fff;
}

.gs-hero__title span {
    display: block;
    background: linear-gradient(135deg, var(--tc-primary-light), var(--tc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gs-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.gs-hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating stat badges — absolutely positioned */
.gs-hero__float {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
}

.gs-hero__float-value {
    font-size: 18px;
    font-weight: 900;
    color: var(--tc-accent);
    letter-spacing: -0.02em;
}

.gs-hero__float-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.gs-hero__float--tl { top: 22%; left: 6%; }
.gs-hero__float--tr { top: 18%; right: 6%; }
.gs-hero__float--bl { bottom: 25%; left: 8%; }
.gs-hero__float--br { bottom: 22%; right: 7%; }

/* Road stripe at hero bottom */
.gs-hero__road-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--tc-accent) 0px,
        var(--tc-accent) 40px,
        transparent 40px,
        transparent 80px
    );
    z-index: 3;
}

/* ── GoShorty Buttons ────────────────────────────── */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
}

.gs-btn--primary {
    background: var(--tc-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.4);
}

.gs-btn--primary:hover {
    background: var(--tc-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(198, 40, 40, 0.5);
    color: #fff;
}

.gs-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gs-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.gs-btn--yellow {
    background: var(--tc-accent);
    color: var(--tc-dark);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
    padding: 20px 48px;
    font-size: 18px;
}

.gs-btn--yellow:hover {
    background: var(--tc-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 193, 7, 0.4);
    color: var(--tc-dark);
}

/* ── Section helpers ─────────────────────────────── */
.gs-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tc-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.gs-section-label::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--tc-primary);
    border-radius: 2px;
}

.gs-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--tc-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 16px;
}

.gs-section-subtitle {
    font-size: 17px;
    color: var(--tc-gray-500);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.6;
    margin: 0 0 48px;
}

/* ── Horizontal Scrolling Journey Steps ─────────────
   A single horizontal row representing a "road journey"
   with road markers between stops.
   ─────────────────────────────────────────────────── */
.gs-journey {
    padding: 80px 24px 60px;
    background: var(--tc-gray-50);
}

.gs-journey__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.gs-journey__track {
    max-width: 1120px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
}

.gs-journey__road {
    display: flex;
    align-items: flex-start;
    min-width: 900px;
    gap: 0;
}

.gs-journey__stop {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    min-width: 200px;
}

.gs-journey__marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tc-primary);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.3);
    position: relative;
    z-index: 1;
}

.gs-journey__marker--final {
    background: var(--tc-accent);
    color: var(--tc-dark);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.gs-journey__connector {
    flex-shrink: 0;
    width: 60px;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--tc-gray-300) 0px,
        var(--tc-gray-300) 10px,
        transparent 10px,
        transparent 20px
    );
    margin-top: 26px;
}

.gs-journey__stop h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--tc-dark);
    margin: 0 0 8px;
}

.gs-journey__stop p {
    font-size: 14px;
    color: var(--tc-gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ── Stacked Full-Width Feature Blocks ──────────────
   NOT cards in a grid. Each feature alternates light/dark.
   Icon left + text right.
   ─────────────────────────────────────────────────── */
.gs-features {
    /* No padding — blocks handle their own */
}

.gs-feature-block {
    padding: 56px 24px;
}

.gs-feature-block--light {
    background: #fff;
}

.gs-feature-block--dark {
    background: var(--tc-gray-900);
}

.gs-feature-block__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.gs-feature-block__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-feature-block--light .gs-feature-block__icon {
    background: var(--tc-primary);
    color: #fff;
}

.gs-feature-block--dark .gs-feature-block__icon {
    background: rgba(198, 40, 40, 0.2);
    color: var(--tc-primary-light);
}

.gs-feature-block__text h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.gs-feature-block--light .gs-feature-block__text h3 {
    color: var(--tc-dark);
}

.gs-feature-block--dark .gs-feature-block__text h3 {
    color: #fff;
}

.gs-feature-block__text p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.gs-feature-block--light .gs-feature-block__text p {
    color: var(--tc-gray-600);
}

.gs-feature-block--dark .gs-feature-block__text p {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Red-Tinted Counter Stats ───────────────────────
   Bright red background, large white numbers
   ─────────────────────────────────────────────────── */
.gs-stats {
    padding: 56px 24px;
    background: var(--tc-primary);
}

.gs-stats__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.gs-stats__number {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.gs-stats__label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Alternating Testimonials (chat conversation) ───
   Left-aligned and right-aligned, alternating.
   ─────────────────────────────────────────────────── */
.gs-testimonials {
    padding: 100px 24px;
    background: var(--tc-gray-50);
}

.gs-testimonials__inner {
    max-width: 720px;
    margin: 0 auto;
}

.gs-testimonials__chat {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gs-testimonial {
    max-width: 80%;
}

.gs-testimonial--left {
    align-self: flex-start;
}

.gs-testimonial--right {
    align-self: flex-end;
}

.gs-testimonial__bubble {
    padding: 24px;
    border-radius: 16px;
    position: relative;
}

.gs-testimonial--left .gs-testimonial__bubble {
    background: #fff;
    border: 1px solid var(--tc-gray-200);
    border-bottom-left-radius: 4px;
}

.gs-testimonial--right .gs-testimonial__bubble {
    background: var(--tc-secondary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.gs-testimonial__stars {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.gs-testimonial--left .gs-testimonial__stars {
    color: var(--tc-accent);
}

.gs-testimonial--right .gs-testimonial__stars {
    color: var(--tc-accent);
}

.gs-testimonial__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
}

.gs-testimonial--left .gs-testimonial__text {
    color: var(--tc-gray-700);
}

.gs-testimonial--right .gs-testimonial__text {
    color: rgba(255, 255, 255, 0.8);
}

.gs-testimonial__meta {
    margin-top: 10px;
    padding: 0 4px;
}

.gs-testimonial__author {
    font-size: 14px;
    font-weight: 700;
}

.gs-testimonial--left .gs-testimonial__author {
    color: var(--tc-dark);
}

.gs-testimonial--right .gs-testimonial__author {
    color: var(--tc-dark);
    text-align: right;
}

.gs-testimonial__role {
    font-size: 13px;
    margin-top: 2px;
}

.gs-testimonial--left .gs-testimonial__role {
    color: var(--tc-gray-500);
}

.gs-testimonial--right .gs-testimonial__role {
    color: var(--tc-gray-500);
    text-align: right;
}

/* ── FAQ — red markers ──────────────────────────── */
.gs-faq {
    padding: 100px 24px;
    background: #fff;
}

.gs-faq__inner {
    max-width: 720px;
    margin: 0 auto;
}

.gs-faq__item {
    border-bottom: 1px solid var(--tc-gray-200);
}

.gs-faq__item:first-child {
    border-top: 1px solid var(--tc-gray-200);
}

.gs-faq__question {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--tc-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gs-faq__question::-webkit-details-marker { display: none; }

.gs-faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 600;
    color: var(--tc-primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(198, 40, 40, 0.1);
    transition: all 0.2s;
}

.gs-faq__item[open] .gs-faq__question::after {
    content: '\2212';
    background: var(--tc-primary);
    color: #fff;
}

.gs-faq__answer {
    padding: 0 0 20px;
}

.gs-faq__answer p {
    font-size: 15px;
    color: var(--tc-gray-600);
    line-height: 1.65;
    margin: 0;
}

/* ── Split CTA — text left, button right ────────────
   2-column layout
   ─────────────────────────────────────────────────── */
.gs-cta {
    padding: 80px 24px;
    background: var(--tc-secondary);
    position: relative;
    overflow: hidden;
}

.gs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.015) 0px,
        rgba(255, 255, 255, 0.015) 2px,
        transparent 2px,
        transparent 60px
    );
    pointer-events: none;
}

.gs-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.gs-cta__text {
    flex: 1;
}

.gs-cta__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.gs-cta__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
    max-width: 480px;
}

.gs-cta__action {
    flex-shrink: 0;
}

/* ── Footer — GoShorty ───────────────────────────── */
body.theme-goshorty .tc-footer {
    background: var(--tc-dark);
    color: rgba(255, 255, 255, 0.5);
    border-top: 3px solid var(--tc-primary);
}

body.theme-goshorty .tc-footer__brand {
    color: #fff;
}

body.theme-goshorty .tc-footer__col h4 {
    color: rgba(255, 255, 255, 0.8);
}

body.theme-goshorty .tc-footer__col a {
    color: rgba(255, 255, 255, 0.45);
}

body.theme-goshorty .tc-footer__col a:hover {
    color: var(--tc-primary-light);
}

body.theme-goshorty .tc-footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

body.theme-goshorty .tc-footer__fca,
body.theme-goshorty .tc-footer__reg {
    color: rgba(255, 255, 255, 0.25);
}

/* ── Buttons — GoShorty override ─────────────────── */
body.theme-goshorty .tc-btn--primary {
    background: var(--tc-primary);
    box-shadow: var(--tc-shadow-primary);
    border-radius: 8px;
}

body.theme-goshorty .tc-btn--primary:hover {
    background: var(--tc-primary-light);
    box-shadow: var(--tc-shadow-primary-lg);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .gs-stats__inner { grid-template-columns: repeat(2, 1fr); }
    .gs-hero__float { display: none; }
    .gs-cta__inner { flex-direction: column; text-align: center; gap: 32px; }
    .gs-cta__subtitle { max-width: 100%; }
    .gs-feature-block__inner { gap: 24px; }
}

@media (max-width: 768px) {
    .gs-hero { padding: 100px 20px 90px; min-height: auto; }
    .gs-hero__title { font-size: clamp(2rem, 7vw, 3rem); }
    .gs-hero__subtitle { font-size: 16px; }

    .gs-journey { padding: 60px 20px 40px; }
    .gs-testimonials { padding: 80px 20px; }
    .gs-cta { padding: 60px 20px; }
    .gs-faq { padding: 80px 20px; }
    .gs-stats { padding: 40px 20px; }

    .gs-feature-block { padding: 40px 20px; }
    .gs-feature-block__text h3 { font-size: 18px; }
}

@media (max-width: 600px) {
    .gs-stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .gs-testimonial { max-width: 95%; }

    .gs-hero { padding: 80px 16px 70px; }
    .gs-hero__actions { flex-direction: column; align-items: center; }
    .gs-btn { width: 100%; max-width: 320px; }
    .gs-btn--yellow { width: 100%; max-width: 320px; }

    .gs-feature-block__inner { flex-direction: column; text-align: center; }
    .gs-feature-block__icon { margin: 0 auto; }

    .gs-journey__road { min-width: 800px; }
    .gs-journey__stop { min-width: 170px; padding: 0 12px; }

    .gs-section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
    .gs-stats__inner { gap: 16px; }
    .gs-stats__number { font-size: 24px; }
    .gs-journey__marker { width: 44px; height: 44px; font-size: 18px; }
    .gs-journey__connector { width: 40px; margin-top: 20px; }
    .gs-feature-block__icon { width: 52px; height: 52px; }
}
