/*
Theme Name: Scrumiz AI
Theme URI: https://scrumizai.yoderwebsites.dev
Author: Yoder Websites
Author URI: https://yoderwebsites.com
Description: Custom dark theme for Scrumiz.ai — Agile consulting, coaching, and AI enablement.
Version: 1.0.0
Text Domain: scrumiz-ai
*/

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sz-indigo:       #6366f1;
    --sz-indigo-hover: #818cf8;
    --sz-indigo-dark:  #4f46e5;
    --sz-bg:           #0D0D0D;
    --sz-bg-card:      #0b0b0d;
    --sz-bg-card-alt:  #111114;
    --sz-bg-elevated:  #161619;
    --sz-text:         #F5F5F5;
    --sz-text-muted:   #A3A3A3;
    --sz-text-dim:     #737373;
    --sz-border:       #2A2A2A;
    --sz-border-hover: rgba(255,255,255,0.15);
    --sz-glow:         0 18px 70px rgba(99,102,241,0.22);
    --sz-glow-sm:      0 8px 30px rgba(99,102,241,0.15);
    --sz-radius:       12px;
    --sz-radius-sm:    8px;
    --sz-radius-lg:    20px;
    --sz-transition:   0.3s ease;
    --sz-max-width:    1140px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--sz-text-muted);
    background: var(--sz-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sz-text);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: 3.2rem; letter-spacing: -0.5px; }
h2 { font-size: 2.5625rem; letter-spacing: -0.3px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

a { color: var(--sz-indigo); text-decoration: none; transition: color var(--sz-transition); }
a:hover { color: var(--sz-indigo-hover); }

img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--sz-max-width); margin: 0 auto; padding: 0 2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--sz-radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--sz-transition);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-primary {
    background: var(--sz-indigo);
    color: #fff;
    box-shadow: var(--sz-glow-sm);
}
.btn-primary:hover {
    background: var(--sz-indigo-dark);
    color: #fff;
    box-shadow: var(--sz-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--sz-text);
    border: 1px solid var(--sz-border-hover);
}
.btn-outline:hover {
    border-color: var(--sz-indigo);
    color: var(--sz-indigo-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255,255,255,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--sz-max-width);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--sz-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.site-logo:hover { color: var(--sz-text); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
    color: #737373;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--sz-transition);
    position: relative;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--sz-text);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sz-indigo);
    border-radius: 1px;
}

.header-cta { margin-left: 1.5rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sz-text);
    transition: all 0.3s ease;
    border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--sz-text);
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}
.mobile-nav a:hover { color: var(--sz-indigo); }

/* ========== FOOTER ========== */
.site-footer {
    background: #1A1A1A;
    border-top: 1px solid var(--sz-border);
    padding: 5rem 0 0;
    margin-top: 0;
}

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

.footer-brand .site-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #737373;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    transition: color var(--sz-transition);
}
.footer-col a:hover { color: var(--sz-indigo); }

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--sz-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--sz-text-dim);
}

.footer-bottom a { color: var(--sz-text-dim); }
.footer-bottom a:hover { color: var(--sz-indigo); }

/* ========== SECTIONS ========== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--sz-bg-card);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--sz-text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sz-indigo);
    margin-bottom: 1rem;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: var(--sz-text-muted);
    font-size: 1.5625rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 20px 25px;
    border-radius: 10px;
}

.hero-buttons .btn-primary {
    background: #4F46E5;
}

.hero-buttons .btn-outline {
    border: 1px solid #6366F1;
}

.hero-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    height: 550px;
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
    filter: saturate(1.2);
}

.hero-float {
    position: absolute;
    border-radius: var(--sz-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.15);
    overflow: hidden;
}

.hero-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float:nth-child(1) {
    top: 0;
    left: 0;
    width: 340px;
    transform: rotate(-6deg);
}
.hero-float:nth-child(2) {
    top: 8%;
    right: 0;
    width: 340px;
    transform: rotate(4deg);
}
.hero-float:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 380px;
}

/* ========== PROBLEM SECTION ========== */
.problem-section { padding: 4rem 0 2rem; }

/* ========== RECOMMENDATION CARDS ========== */
.recommendations-section { padding-top: 2rem; }

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.recommendation-card {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2rem 2.5rem;
    transition: border-color var(--sz-transition), transform var(--sz-transition);
}
.recommendation-card:hover {
    border-color: var(--sz-border-hover);
    transform: translateY(-2px);
}

.rec-header {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sz-indigo);
    margin-bottom: 1rem;
}

.rec-quote {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.rec-attribution {
    margin-top: auto;
}

.rec-company {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--sz-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}

.rec-role {
    display: block;
    font-size: 0.75rem;
    color: var(--sz-text-dim);
    font-weight: 400;
}

/* ========== DASHBOARD SHOWCASE (linear-effect) ========== */
.linear-effect {
    position: relative;
    min-height: 700px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0D0D0D;
    overflow: hidden;
}

/* Multi-layer cyberpunk glow */
.linear-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 80% 50%, rgba(79, 70, 229, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 50% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Panels base */
.panel-left,
.panel-center,
.panel-right {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    transform: translate(-50%, -50%);
    transition: all 1.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.panel-left img,
.panel-center img,
.panel-right img {
    box-shadow: none;
    border: none;
    width: 100%;
    height: auto;
    display: block;
}

/* Initial state — below and invisible */
.linear-effect:not(.animated) .panel-left,
.linear-effect:not(.animated) .panel-center,
.linear-effect:not(.animated) .panel-right {
    opacity: 0;
    transform: translate(-50%, 50%) scale(0.95);
}

/* Panel 1 (left — furthest back) */
.linear-effect.animated .panel-left {
    opacity: 0.75;
    transform:
        translate(-50%, -50%)
        translateX(-320px)
        translateY(-40px)
        scale(0.92);
    transition-delay: 0s;
    z-index: 2;
    filter: brightness(0.85) blur(0.5px);
}

/* Panel 2 (center — middle) */
.linear-effect.animated .panel-center {
    opacity: 0.88;
    transform:
        translate(-50%, -50%)
        translateX(0)
        translateY(-20px)
        scale(0.96);
    transition-delay: 0.3s;
    z-index: 3;
    filter: brightness(0.92);
}

/* Panel 3 (right — front) */
.linear-effect.animated .panel-right {
    opacity: 1;
    transform:
        translate(-50%, -50%)
        translateX(320px)
        translateY(0)
        scale(1);
    transition-delay: 0.6s;
    z-index: 4;
    filter: brightness(1);
}

/* Hover — desktop only */
@media (hover: hover) and (pointer: fine) {
    .linear-effect.animated:hover .panel-left {
        transform:
            translate(-50%, -50%)
            translateX(-340px)
            translateY(-45px)
            scale(0.92);
        opacity: 0.85;
        filter: brightness(0.9) blur(0px);
    }

    .linear-effect.animated:hover .panel-center {
        transform:
            translate(-50%, -50%)
            translateX(0)
            translateY(-25px)
            scale(0.97);
        opacity: 0.95;
    }

    .linear-effect.animated:hover .panel-right {
        transform:
            translate(-50%, -50%)
            translateX(340px)
            translateY(0)
            scale(1.01);
    }
}

/* ========== LEVERAGE GRID ========== */
.leverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.leverage-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.leverage-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leverage-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--sz-indigo);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.leverage-icon img {
    width: 44px;
    height: 44px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(1600%) hue-rotate(224deg) brightness(100%) contrast(92%);
}

.leverage-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leverage-item p {
    font-size: 0.875rem;
    color: var(--sz-text-muted);
    line-height: 1.5;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2.5rem 2rem;
    transition: all var(--sz-transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--sz-glow-sm);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--sz-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Services grid with 4 cards (3+1 layout) */
.services-grid--4 {
    grid-template-columns: repeat(3, 1fr);
}
.services-grid--4 .service-card:nth-child(4) {
    grid-column: 1;
}

.service-card .card-link {
    margin-top: 1.5rem;
    color: var(--sz-indigo);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.service-card .card-link:hover { color: var(--sz-indigo-hover); }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ========== ENGAGEMENT STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--sz-indigo);
    color: var(--sz-indigo);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 4rem 0;
}

.trust-card {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trust-subtitle {
    color: var(--sz-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.trust-placeholder {
    background: var(--sz-bg-card-alt);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2.5rem 2rem;
}

.trust-placeholder p {
    color: var(--sz-text-dim);
    font-size: 0.95rem;
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 60px 0;
    overflow-x: hidden;
}

.testimonials-section .swiper {
    width: 100%;
    padding: 50px 10px !important;
    overflow: visible !important;
}

/* ---- Slides ---- */
.testimonials-section .swiper-slide {
    width: 85%;
    max-width: 380px;
    height: auto;
    touch-action: pan-y;
}
@media (min-width: 768px) {
    .testimonials-section .swiper-slide { width: 380px; }
}

.testimonial-card {
    position: relative;
    background: linear-gradient(180deg, var(--sz-bg-card), var(--sz-bg-card-alt));
    border: 1px solid var(--sz-border);
    border-radius: 24px;
    padding: 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transform: translate3d(0, 0, 0) scale(var(--s, .86));
    opacity: var(--o, .38);
    filter: blur(var(--b, 0px));
    box-shadow: var(--sh, 0 0 0 rgba(0, 0, 0, 0));
    will-change: transform, opacity, filter;
    transition: transform 600ms cubic-bezier(.2, .9, .2, 1),
                opacity 600ms ease,
                filter 600ms ease,
                border-color 400ms ease;
    overflow: hidden;
}

/* Gradient border on active */
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(24px + 1px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .95), rgba(34, 211, 238, .55), rgba(99, 102, 241, .95));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
}

/* Radial glow on active */
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, .22), transparent 55%);
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
}

.swiper-slide-active .testimonial-card {
    border-color: rgba(99, 102, 241, .55);
    z-index: 10;
}
.swiper-slide-active .testimonial-card::before { opacity: 1; }
.swiper-slide-active .testimonial-card::after  { opacity: 1; }

@media (hover: hover) {
    .testimonial-card:hover {
        transform: translate3d(0, -5px, 0) scale(var(--s, .86));
    }
}

/* Quote mark */
.quote-mark {
    font-size: 48px;
    line-height: 1;
    color: var(--sz-indigo);
    margin-bottom: 15px;
}

/* Quote text */
.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0 0 22px;
    flex-grow: 1;
    color: #f5f5f6;
    font-weight: 400;
    font-style: normal;
}

/* Meta (company + role) */
.testimonial-meta {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
}

.testimonial-company {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--sz-text);
}

.testimonial-role {
    display: block;
    font-size: 0.85rem;
    color: var(--sz-text-dim);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
}

/* Swiper pagination */
.testimonials-section .swiper-pagination { bottom: 0px !important; }
.testimonials-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: .35;
    background: rgba(255, 255, 255, .8) !important;
}
.testimonials-section .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.4);
    background: var(--sz-indigo) !important;
}

/* Swiper nav buttons — circular glass */
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(20, 20, 23, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    backdrop-filter: blur(10px) !important;
    color: #fff !important;
    transition: 0.2s !important;
}
.testimonials-section .swiper-button-prev::after,
.testimonials-section .swiper-button-next::after {
    font-size: 18px !important;
    font-weight: bold !important;
}
@media (max-width: 767px) {
    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next { display: none !important; }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-box {
    background: var(--sz-bg-card-alt);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--sz-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ========== PAGE HEADERS ========== */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--sz-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== SERVICES PAGE ========== */
.service-category {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-category-header .cat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,0.1);
    border-radius: var(--sz-radius-sm);
}

.service-category-header .cat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sz-indigo);
    fill: none;
    stroke-width: 2;
}

.service-category-header h3 {
    font-size: 1.4rem;
}

.service-category > .cat-description {
    color: var(--sz-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.service-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-sub-card {
    background: var(--sz-bg-card-alt);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 1.5rem;
}

.service-sub-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sz-indigo);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-sub-card p,
.service-sub-card li {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-sub-card ul {
    list-style: none;
    padding: 0;
}

.service-sub-card li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.service-sub-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sz-indigo);
}

.service-category .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--sz-indigo);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}
.service-category .card-link:hover { color: var(--sz-indigo-hover); }

/* SAFe Certifications */
.certs-section {
    padding: 6rem 0;
    text-align: center;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.cert-card {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2rem;
}

.cert-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== BOOTCAMP PAGE ========== */
.bootcamp-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.bootcamp-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bootcamp-hero .hero-subtitle {
    max-width: 700px;
}

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid var(--sz-border);
    border-bottom: 1px solid var(--sz-border);
    margin-bottom: 0;
}

.trust-strip-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sz-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-strip-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--sz-indigo);
    fill: none;
    stroke-width: 2;
}

/* Curriculum */
.curriculum-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.curriculum-day {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.day-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sz-indigo);
    padding-top: 0.2rem;
    white-space: nowrap;
}

.day-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.day-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.day-content li {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.day-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sz-indigo);
}

/* What You Get */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--sz-indigo);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    color: var(--sz-text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
    background: var(--sz-bg-card);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: var(--sz-radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem auto 0;
    box-shadow: var(--sz-glow-sm);
}

.pricing-amount {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--sz-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-label {
    color: var(--sz-text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: var(--sz-text-muted);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--sz-border);
}

.pricing-features li:last-child { border-bottom: none; }

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

/* ========== ABOUT PAGE ========== */
.philosophy-list {
    max-width: 750px;
    margin: 3rem auto 0;
}

.philosophy-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--sz-border);
}

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

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.philosophy-item p {
    color: var(--sz-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== INSIGHTS PAGE ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--sz-bg-card);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    overflow: hidden;
    transition: all var(--sz-transition);
}
.video-card:hover {
    border-color: var(--sz-border-hover);
    transform: translateY(-3px);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--sz-bg-card-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(99,102,241,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--sz-transition);
}

.video-card:hover .play-btn {
    background: var(--sz-indigo);
    transform: scale(1.1);
}

.play-btn svg { width: 24px; height: 24px; fill: #fff; }

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.875rem;
    color: var(--sz-text-muted);
    line-height: 1.5;
}

/* ========== CONTACT PAGE ========== */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

/* WPForms dark styling */
.wpforms-container {
    background: var(--sz-bg-card) !important;
    border: 1px solid var(--sz-border) !important;
    border-radius: var(--sz-radius-lg) !important;
    padding: 2.5rem !important;
}

.wpforms-field-label {
    color: var(--sz-text) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.wpforms-field-sublabel { color: var(--sz-text-muted) !important; }

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea,
.wpforms-field select {
    background: var(--sz-bg-card-alt) !important;
    border: 1px solid var(--sz-border) !important;
    color: var(--sz-text) !important;
    border-radius: var(--sz-radius-sm) !important;
    padding: 0.8rem 1rem !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.95rem !important;
    transition: border-color var(--sz-transition) !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
    border-color: var(--sz-indigo) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(99,102,241,0.2) !important;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: var(--sz-text-dim) !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"],
div.wpforms-container-full .wpforms-form .wpforms-submit {
    background: var(--sz-indigo) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--sz-radius-sm) !important;
    padding: 0.9rem 2rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all var(--sz-transition) !important;
    box-shadow: var(--sz-glow-sm) !important;
    width: 100% !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
    background: var(--sz-indigo-hover) !important;
    box-shadow: var(--sz-glow) !important;
}

/* WPForms radio (popup) */
.wpforms-field-radio ul { list-style: none !important; padding: 0 !important; }
.wpforms-field-radio li { margin-bottom: 0.5rem !important; }
.wpforms-field-radio label {
    color: var(--sz-text-muted) !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
}

/* ========== POPUP MODAL ========== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.popup-overlay.open { display: flex; }

.popup-modal {
    background: #262626;
    border: 1px solid var(--sz-border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 9999;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--sz-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color var(--sz-transition);
}
.popup-close:hover { color: var(--sz-text); }

.popup-modal h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.popup-modal .popup-subtitle {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ========== 404 PAGE ========== */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-404 h1 {
    font-size: 8rem;
    font-weight: 800;
    color: var(--sz-indigo);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--sz-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== AI SERVICES SECTION ========== */
.ai-services {
    padding: 3rem;
}

.ai-services .ai-intro {
    color: var(--sz-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.ai-sub-section {
    margin-bottom: 2.5rem;
}

.ai-sub-section h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.ai-sub-section .ai-tagline {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.ai-sub-section h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sz-indigo);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.ai-bullet-list {
    list-style: none;
    padding: 0;
}

.ai-bullet-list li {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
}

.ai-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sz-indigo);
}

.ai-bullet-list li strong {
    color: var(--sz-text);
    font-weight: 600;
}

.who-for-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.who-for-list li {
    color: var(--sz-text-muted);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.who-for-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--sz-indigo);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-step {
    background: var(--sz-bg-card-alt);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 1.5rem;
    text-align: center;
}

.process-step h5 {
    text-align: center;
}

.process-step p {
    color: var(--sz-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.ai-closing {
    background: var(--sz-bg-card-alt);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 2rem;
    margin-top: 2rem;
}

.ai-closing h4 {
    margin-bottom: 0.75rem;
}

.ai-closing p {
    color: var(--sz-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== GENERIC PAGE ========== */
.page-content {
    padding: 2rem 0 6rem;
}

.page-content .entry-content {
    max-width: 750px;
    margin: 0 auto;
    color: var(--sz-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content .entry-content h2 { margin: 2rem 0 1rem; }
.page-content .entry-content h3 { margin: 1.5rem 0 0.75rem; }
.page-content .entry-content p { margin-bottom: 1rem; }
.page-content .entry-content ul,
.page-content .entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .leverage-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .service-sub-grid { grid-template-columns: 1fr; }
    .day-content ul { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .recommendation-grid { grid-template-columns: repeat(2, 1fr); }

    /* Dashboard showcase — tablet */
    .linear-effect {
        min-height: 600px;
        max-width: 1200px;
    }
    .linear-effect::before {
        background:
            radial-gradient(ellipse 600px 500px at 20% 50%, rgba(79, 70, 229, 0.10) 0%, transparent 50%),
            radial-gradient(ellipse 500px 400px at 80% 50%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
    }
    .panel-left,
    .panel-center,
    .panel-right {
        width: 80%;
        max-width: 750px;
    }
    .linear-effect.animated .panel-left {
        transform: translate(-50%, -50%) translateX(-220px) translateY(-30px) scale(0.93);
    }
    .linear-effect.animated .panel-center {
        transform: translate(-50%, -50%) translateX(0) translateY(-15px) scale(0.96);
    }
    .linear-effect.animated .panel-right {
        transform: translate(-50%, -50%) translateX(220px) translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .container { padding: 0 1.25rem; }
    .section { padding: 4rem 0; }

    /* Header */
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-images { display: none; }

    /* Dashboard showcase — mobile (stacked vertically) */
    .linear-effect {
        min-height: 650px;
        flex-direction: column;
    }
    .linear-effect::before {
        background:
            radial-gradient(ellipse 400px 600px at 50% 30%, rgba(79, 70, 229, 0.10) 0%, transparent 60%),
            radial-gradient(ellipse 350px 500px at 50% 70%, rgba(79, 70, 229, 0.08) 0%, transparent 60%);
    }
    .panel-left,
    .panel-center,
    .panel-right {
        width: 90%;
        max-width: 500px;
        position: relative;
        top: auto;
        left: auto;
    }
    .linear-effect:not(.animated) .panel-left,
    .linear-effect:not(.animated) .panel-center,
    .linear-effect:not(.animated) .panel-right {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    .linear-effect.animated .panel-left {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
        margin-bottom: -180px;
        transition-delay: 0s;
        z-index: 2;
        filter: brightness(1) blur(0);
    }
    .linear-effect.animated .panel-center {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
        margin-bottom: -180px;
        transition-delay: 0.3s;
        z-index: 3;
        filter: brightness(1);
    }
    .linear-effect.animated .panel-right {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
        transition-delay: 0.6s;
        z-index: 4;
        filter: brightness(1);
    }

    /* Grids */
    .recommendation-grid { grid-template-columns: 1fr; }
    .leverage-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid--4 { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .video-grid { grid-template-columns: 1fr; }
    .who-for-list { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }

    /* Trust section */
    .trust-card { padding: 2.5rem 1.5rem; }

    /* Bootcamp */
    .bootcamp-hero h1 { font-size: 2rem; }
    .trust-strip { gap: 1rem; }
    .trust-strip-item { font-size: 0.75rem; }
    .curriculum-day { grid-template-columns: 1fr; gap: 0.75rem; }
    .pricing-amount { font-size: 2.5rem; }

    /* Service category */
    .service-category { padding: 2rem 1.5rem; }

    /* Footer */
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    /* CTA */
    .cta-box { padding: 3rem 1.5rem; }

    /* Page hero */
    .page-hero { padding: 8rem 0 3rem; }
    .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    /* Dashboard showcase — small mobile */
    .linear-effect { min-height: 600px; }
    .panel-left,
    .panel-center,
    .panel-right {
        width: 95%;
        max-width: 400px;
    }
    .linear-effect.animated .panel-left,
    .linear-effect.animated .panel-center {
        margin-bottom: -200px;
    }
}

/* WPForms clipping fixes (QA 2026-08-03): our padding overrides collide with
   WPForms' fixed field/button heights — let them grow instead of clipping. */
.wpforms-field select {
    height: auto !important;
    min-height: 2.9rem !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"],
div.wpforms-container-full .wpforms-form .wpforms-submit {
    height: auto !important;
    min-height: 2.7rem !important;
    white-space: normal !important;
    line-height: 1.35 !important;
}

/* Content-length hardening: editable copy can be any length, the layout may
   not break. Carousel tiles clamp visually; unbroken strings always wrap. */
.testimonial-quote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.testimonial-quote,
.testimonial-name,
.testimonial-meta,
.rec-quote,
.rec-header,
.rec-attribution,
.section-title,
.section-subtitle,
.popup-pill-label,
.popup-pill-sub,
.service-card h3,
.service-card p,
.step h3,
.step p,
.leverage-item h4,
.leverage-item p {
    overflow-wrap: anywhere;
}

/* Continuous review conveyor (2026-08-03): constant linear motion, uniform
   cards, controls hidden — the belt itself is the interaction. */
.testimonials-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.testimonials-marquee .swiper-slide .testimonial-card {
    --s: 1;
    --o: 1;
    --b: 0px;
    transform: none;
}

.testimonials-marquee .swiper-button-prev,
.testimonials-marquee .swiper-button-next,
.testimonials-marquee .swiper-pagination {
    display: none;
}
