/* =============================================
   INMOTION — Design System
   Natural · Minimal · Editorial
============================================= */

:root {
    --bg:         #F5F1EB;
    --bg-warm:    #EDE7DA;
    --bg-dark:    #1A1915;
    --text:       #1A1915;
    --text-mid:   #78716C;
    --text-muted: #A8A29E;
    --accent:     #556B2F;
    --accent-mid: #46592A;
    --accent-light: #C8D4A8;
    --border:     rgba(120,113,108,0.16);
    --border-dark: rgba(255,255,255,0.09);

    --font-display: 'Secular One', sans-serif;
    --font-body:    'Rubik', sans-serif;

    --pad: 6vw;
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-xl: 40px;
}

/* ---- Reset ---- */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Accessibility & Interaction ---- */
a, button, [role="button"],
.hover-trigger, .faq-question,
.hamburger-icon, .tslider-btn, .tslider-dot,
.element-card { cursor: pointer; }

a, button, .faq-question { touch-action: manipulation; }

a:focus-visible,
button:focus-visible,
.faq-question:focus-visible,
.tslider-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }


/* =============================================
   BREATH WIDGET
============================================= */
.breath-btn {
    position: fixed; bottom: 28px; left: 28px;
    width: 48px; height: 48px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer; z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s, background 0.25s, color 0.25s;
}
.breath-btn:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.breath-overlay {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}
.breath-overlay.active { opacity: 1; pointer-events: all; }

.breath-inner {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    color: #fff; user-select: none;
}
.breath-ring {
    width: 200px; height: 200px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 52px;
}
.breath-circle {
    width: 56px; height: 56px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px rgba(31,84,65,0.4);
}
.breath-phase {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400; letter-spacing: 0;
    color: #fff; margin-bottom: 10px;
    line-height: 1;
}
.breath-count {
    font-family: var(--font-display);
    font-size: 1.0625rem; font-weight: 400;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
    margin-bottom: 36px;
    min-height: 1.4em;
}
.breath-hint {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
    font-style: italic;
}
.close-breath {
    position: absolute; top: 24px; left: 24px;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s, border-color 0.2s;
}
.close-breath:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* =============================================
   NAV
============================================= */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px var(--pad);
    mix-blend-mode: difference; color: #fff;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    animation: navSlideIn 0.8s ease-out forwards;
}
@keyframes navSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
nav.scrolled {
    padding: 16px var(--pad);
    background: rgba(247,245,240,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    mix-blend-mode: normal;
    box-shadow: 0 1px 0 var(--border);
}
nav.scrolled .logo          { color: var(--text); }
nav.scrolled .nav-links a   { color: var(--text); opacity: 0.65; }
nav.scrolled .nav-links a:hover { opacity: 1; }

/* Nav links */
.nav-links {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: flex; align-items: center; gap: 28px;
}
.nav-links a {
    font-size: 0.9375rem; font-weight: 500;
    color: #fff; text-decoration: none;
    opacity: 0.75; letter-spacing: 0.01em;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }

.logo {
    font-family: var(--font-display); font-weight: 400; font-size: 1.6rem;
    text-decoration: none; color: #fff; letter-spacing: -0.02em;
    flex-shrink: 0;
}

/* =============================================
   HERO
============================================= */
.hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Video column — right side, portrait aspect ratio fills naturally */
.hero-bg {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: clamp(300px, 35vw, 480px);
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(13,13,11,0.15) 100%);
}

/* Mobile: full-bleed video behind text */
@media (max-width: 900px) {
    .hero-bg { left: 0; width: 100%; }
    .hero-bg-overlay { background: rgba(0,0,0,0.62); }
}

/* Content block — full width, content left-anchored */
.hero-center {
    position: absolute;
    left: 0; top: 0; bottom: 0; right: 0;
    z-index: 2;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 100px var(--pad) 80px;
    color: #fff;
    direction: ltr;
}

/* Green accent divider — anchors the block to the left */
.hero-divider {
    width: 40px; height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
    opacity: 0; transform: translateY(20px);
    animation: heroItemIn 0.6s ease-out 0.43s forwards;
}

/* Title — entrance */
.hero-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.5rem, 5.5vw, 7rem);
    color: #fff; text-transform: uppercase;
    letter-spacing: -0.02em; line-height: 0.9;
    margin: 0 0 28px;
    max-width: 62%;
    direction: ltr; unicode-bidi: embed;
    opacity: 0; transform: translateY(20px);
    animation: heroItemIn 0.6s ease-out 0.35s forwards;
}

/* Description — subtitle style, left-aligned */
.hero-desc {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6; max-width: 420px;
    margin-bottom: 36px;
    text-align: left; direction: ltr;
    opacity: 0; transform: translateY(20px);
    animation: heroItemIn 0.6s ease-out 0.50s forwards;
}

/* Location — SVG + text, left-aligned */
.hero-location {
    font-size: 0.8125rem; font-weight: 600;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 36px;
    display: flex; align-items: center; gap: 6px;
    text-align: left; direction: ltr;
    opacity: 0; transform: translateY(20px);
    animation: heroItemIn 0.6s ease-out 0.58s forwards;
}

/* CTA row */
.hero-actions {
    display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: heroItemIn 0.6s ease-out 0.65s forwards;
}

/* Primary button */
.hero-btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 28px; min-height: 48px;
    background: #fff; color: var(--text);
    font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
    border-radius: 8px; text-decoration: none; white-space: nowrap;
    transition: background 0.2s;
}
.hero-btn-primary:hover { background: rgba(255, 255, 255, 0.88); }

/* Secondary text link — not a button, clearly subordinate */
.hero-link-secondary {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9375rem; font-weight: 500;
    align-self: center;
    white-space: nowrap;
    transition: color 0.2s;
}
.hero-link-secondary:hover { color: rgba(255, 255, 255, 0.80); }

/* Glass button (from the component) */
.hero-btn-glass {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 28px; min-height: 48px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
    border-radius: 8px; text-decoration: none; white-space: nowrap;
    transition: background 0.2s;
}
.hero-btn-glass:hover { background: rgba(255, 255, 255, 0.20); }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: heroItemIn 0.6s ease-out 0.9s forwards;
}
.hero-scroll-arrow {
    display: block;
    color: rgba(255, 255, 255, 0.45); font-size: 1.4rem;
    animation: heroCueBounce 2s ease-in-out 1.5s infinite;
}

/* Keyframes */
@keyframes heroItemIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCueBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* =============================================
   ELEMENTS SECTION
============================================= */
.elements-section {
    padding: 100px var(--pad) 100px;
    background: var(--bg);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    position: relative;
    z-index: 1;
}
.elements-inner { max-width: 1200px; margin: 0 auto; }
.elements-header {
    max-width: 640px;
    margin-bottom: 72px;
}
.elements-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400; letter-spacing: -0.01em;
    color: var(--text); margin-bottom: 18px;
    line-height: 1;
}
.elements-sub {
    font-size: 1.0625rem; color: var(--text-mid);
    line-height: 1.72; max-width: 520px;
}
/* ── BENTO GRID ── */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.element-card {
    background: #fff;
    border: 1px solid rgba(17,17,16,0.07);
    border-radius: 20px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
                box-shadow 0.35s ease,
                background 0.25s ease;
    cursor: default;
}
.element-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.09);
    background: var(--bg-warm);
}
.element-card--wide { grid-column: span 2; }
.element-card--dark {
    background: var(--bg-dark);
    border-color: transparent;
}
.element-card--dark:hover {
    background: #161614;
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.element-card--dark .element-num  { color: rgba(255,255,255,0.22); }
.element-card--dark .element-name { color: #fff; }
.element-card--dark .element-desc { color: rgba(255,255,255,0.50); }
.element-card--dark .element-ghost-num { color: rgba(255,255,255,0.04); }
.element-card-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    flex: 1;
}
.element-ghost-num {
    position: absolute;
    bottom: -18px; left: -6px;
    font-family: var(--font-display);
    font-size: 9rem; font-weight: 400;
    color: rgba(31,84,65,0.055);
    line-height: 1; letter-spacing: -0.04em;
    pointer-events: none; user-select: none;
    transition: opacity 0.35s ease;
    z-index: 0;
}
.element-card:hover .element-ghost-num { opacity: 0; }
.element-num {
    font-family: var(--font-display);
    font-size: 0.68rem; color: var(--accent);
    font-weight: 400; letter-spacing: 0.12em;
    display: block; margin-bottom: 18px;
    text-transform: uppercase;
}
.element-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 400; letter-spacing: -0.01em;
    color: var(--text); margin-bottom: 16px;
    line-height: 1;
}
.element-desc {
    font-size: 1.0625rem; color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
}
.element-card--wide .element-desc { max-width: 480px; }

/* =============================================
   TESTIMONIALS SLIDER
============================================= */
.testimonials-section {
    padding: 110px var(--pad) 100px;
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}
.testimonials-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; letter-spacing: -0.01em;
    color: #fff; margin: 16px 0 8px;
}
.testimonials-header p { font-size: 1.0625rem; color: rgba(255,255,255,0.65); }

/* Slider wrapper */
.tslider { width: 100%; }

/* Card */
.tslider-card {
    display: flex; flex-direction: column; gap: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 48px;
    direction: rtl;
    transition: opacity 0.28s ease;
}
.tslider-blockquote {
    font-size: 1.0625rem; line-height: 1.88;
    color: rgba(255,255,255,0.82);
    font-style: normal; margin: 0;
}
.tslider-stars {
    color: #F0B429; font-size: 0.8125rem;
    letter-spacing: 3px;
}
.tslider-person-row {
    display: flex; flex-direction: column; gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
}
.tslider-person-row strong { color: #fff; font-size: 0.9375rem; font-weight: 700; }
.tslider-person-row span  { color: rgba(255,255,255,0.35); font-size: 0.8125rem; }

/* Video testimonial */
.video-testimonial {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
.vtest-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
}
.vtest-video-wrap { position: relative; cursor: pointer; }
.vtest-video {
    width: 100%;
    display: block;
    max-height: 540px;
    object-fit: cover;
}
.vtest-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.25s ease, background 0.25s ease;
}
.vtest-overlay.hidden-overlay { opacity: 0; pointer-events: none; }
.vtest-video-wrap:hover .vtest-overlay:not(.hidden-overlay) { background: rgba(0,0,0,0.12); }
.vtest-playbtn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: none; color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.vtest-playbtn:hover { background: rgba(0,0,0,0.5); transform: scale(1.08); }
.vtest-badge {
    position: absolute; bottom: 12px; left: 12px;
    font-size: 0.75rem; color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    padding: 4px 10px; border-radius: 100px;
    font-family: var(--font-body);
    pointer-events: none;
}
.vtest-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    direction: rtl;
}
.vtest-person strong { color: #fff; font-size: 0.9375rem; font-weight: 700; }
.vtest-person span   { color: rgba(255,255,255,0.35); font-size: 0.8125rem; }

/* Controls row */
.tslider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.tslider-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.tslider-arrow:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    transform: scale(1.08);
}
.tslider-dots {
    display: flex; align-items: center;
    gap: 8px; direction: ltr;
}
.tslider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.tslider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* =============================================
   STAT COUNTER (community badge)
============================================= */
.stat-counter {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px 28px;
    border-radius: 16px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 6px;
    width: fit-content; min-width: 150px;
    border: 1px solid rgba(255,255,255,0.6);
    transition: background 0.3s;
    margin-bottom: 24px;
}
.stat-counter:hover { background: #fff; }
.stat-counter__icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(26,25,21,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 6px;
    transition: background 0.3s;
}
.stat-counter:hover .stat-counter__icon { background: rgba(85,107,47,0.12); }
.stat-counter__number {
    font-family: var(--font-body);
    font-size: 2.6rem; font-weight: 300;
    color: var(--text); letter-spacing: -0.03em;
    line-height: 1;
    display: flex; align-items: baseline; gap: 2px;
    font-variant-numeric: tabular-nums;
}
.stat-counter__label {
    font-size: 0.8125rem; font-weight: 500;
    color: var(--text-muted); letter-spacing: 0.03em;
    margin-top: 2px;
}
.stat-counter__line {
    width: 36px; height: 2px;
    background: var(--accent);
    margin-top: 8px;
    transition: width 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-counter:hover .stat-counter__line { width: 60px; }

/* =============================================
   STICKY CTA
============================================= */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 10px var(--pad);
    color: #fff; text-decoration: none;
    font-weight: 600; font-size: 0.9375rem;
}
.sticky-cta-arrow {
    font-size: 0.9rem; opacity: 0.75;
}

/* Footer CTA button */
.footer-calendly-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 36px;
    min-height: 52px;
    background: var(--accent); color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    border-radius: var(--r-md); text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 24px rgba(31,84,65,0.35);
}
.footer-calendly-btn:hover { background: var(--accent-mid); transform: translateY(-2px); }
.footer-calendly-btn:active { transform: translateY(0); }

/* =============================================
   SERVICES
============================================= */
.work-section {
    padding: 100px var(--pad) 120px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.section-title {
    margin-bottom: 80px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
    display: flex; align-items: baseline; gap: 20px;
}
.section-title h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400; letter-spacing: -0.01em;
}
.products-container { display: flex; flex-direction: column; gap: 100px; }

.product-row { display: flex; align-items: center; gap: 64px; }
.product-row.reverse { flex-direction: row-reverse; }

.product-visual {
    flex: 1.2;
    height: 480px;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-warm);
    transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.product-row:hover .product-visual { transform: scale(1.018); }
.product-visual video, .product-visual img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.product-info {
    flex: 0.8;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    gap: 0;
}
.product-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    line-height: 1.05; letter-spacing: -0.01em;
    margin-bottom: 16px; color: var(--text); font-weight: 400;
}
.product-desc {
    font-size: 1.0625rem; line-height: 1.72;
    color: var(--text-mid); margin-bottom: 26px; max-width: 400px;
}
.product-features {
    list-style: none; margin-bottom: 28px;
}
.product-features li {
    font-size: 1.0625rem; color: var(--text); font-weight: 500;
    padding: 6px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}
.product-features li:last-child { border-bottom: none; }

.product-meta {
    display: flex; flex-direction: column; gap: 12px;
    width: 100%; max-width: 280px;
}
.price-label {
    font-size: 0.8125rem; color: var(--text-muted);
    font-weight: 500; letter-spacing: 0.02em;
}
.product-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 24px;
    min-height: 44px;
    background: transparent;
    border: 1.5px solid var(--text);
    color: var(--text); text-decoration: none;
    font-weight: 600; font-size: 0.9375rem;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center; white-space: nowrap;
    outline-offset: 2px;
}
.product-btn:hover {
    background: var(--text); color: var(--bg);
}
.product-btn.fill {
    background: var(--text); color: var(--bg);
    border-color: var(--text);
}
.product-btn.fill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.product-btn.whatsapp {
    background: #22C55E; border-color: #22C55E; color: #fff;
}
.product-btn.whatsapp:hover { background: #16a34a; border-color: #16a34a; }


/* =============================================
   PARALLAX SERVICES
============================================= */
.ps-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.ps-header {
    padding: 80px var(--pad) 40px;
    border-bottom: 1px solid var(--border);
}
.ps-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ps-item { padding: 12px; }

.ps-sticky-wrap {
    position: relative;
    height: 150vh;
}

.ps-media {
    position: sticky;
    top: 12px;
    height: calc(100vh - 24px);
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform;
    background: var(--bg-dark);
}
.ps-media::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}
.ps-media video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.ps-media--contain video {
    object-fit: cover;
    object-position: center 75%;
}

.ps-dark-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: rgba(10,10,8,0.70);
    opacity: 0;
    pointer-events: none;
}

.ps-overlay-copy {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #fff; text-align: center;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 3;
    padding: 0 var(--pad);
    gap: 14px;
}
.ps-subheading {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: #fff;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-shadow: 0 1px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.6);
}
.ps-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 48px rgba(0,0,0,0.9), 0 1px 12px rgba(0,0,0,0.8);
}

.ps-content { background: var(--bg); }

.ps-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 96px var(--pad) 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ps-inner .stat-counter { margin-bottom: 32px; }

.ps-for {
    font-size: 0.9375rem;
    color: var(--text-mid);
    font-weight: 500;
    margin-bottom: 20px;
    text-align: right;
    width: 100%;
    max-width: 560px;
}

.ps-desc {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 48px;
    max-width: 560px;
    text-align: right;
}
.ps-features {
    list-style: none;
    margin-bottom: 48px;
    width: 100%;
    max-width: 560px;
    border-top: 1px solid var(--border);
}
.ps-features li {
    font-size: 1.0625rem;
    color: var(--text);
    font-weight: 500;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    text-align: right;
}
.ps-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: right;
    max-width: 560px;
}

.ps-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 24px; min-height: 44px;
    background: transparent;
    border: 1.5px solid var(--text);
    color: var(--text); text-decoration: none;
    font-weight: 600; font-size: 0.9375rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.ps-btn:hover { background: var(--text); color: var(--bg); }
.ps-btn--fill {
    background: var(--text); color: var(--bg); border-color: var(--text);
}
.ps-btn--fill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.ps-btn--whatsapp {
    background: #22C55E; border-color: #22C55E; color: #fff;
}
.ps-btn--whatsapp:hover { background: #16a34a; border-color: #16a34a; }

@media (max-width: 900px) {
    .ps-item { padding: 6px; }
    .ps-media { border-radius: 16px; }
    .ps-heading { font-size: clamp(2rem, 9vw, 3.5rem); }
    .ps-inner { padding: 56px var(--pad) 72px; }
    .ps-header { padding: 60px var(--pad) 32px; }
}

@media (max-width: 680px) {
    .ps-sticky-wrap { height: 100vh; }
    .ps-media { height: calc(100vh - 12px); border-radius: 12px; }
    /* On mobile disable JS parallax text drift — keep overlay always visible */
    .ps-overlay-copy {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    .ps-inner { padding: 48px var(--pad) 64px; }
    .ps-desc { font-size: 1.05rem; }
    .ps-features li { padding: 14px 0; }
    /* PS CTA buttons — full width on mobile */
    .ps-btn { width: 100%; justify-content: center; }
    .ps-inner .stat-counter { min-width: 0; width: auto; }

    /* ── Testimonials card: fix broken grid ── */
    .tslider-card { padding: 28px 24px; gap: 14px; }
    .tslider-blockquote { font-size: 1rem; line-height: 1.72; }
    .tslider-controls { margin-top: 20px; }

    /* Nav — mobile wrap */
    nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px var(--pad) 10px;
    }
    nav.scrolled { padding: 10px var(--pad) 8px; }
    .nav-links {
        position: static; transform: none;
        width: 100%;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { font-size: 0.8125rem; }
}

/* =============================================
   ABOUT
============================================= */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; padding: 120px var(--pad);
    align-items: start; background: var(--bg);
}
.about-text-sticky { position: sticky; top: 110px; }
.about-text-sticky h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.92; letter-spacing: -0.01em;
    margin-bottom: 36px; font-weight: 400;
}
.about-text-sticky p {
    font-size: 1.0625rem; line-height: 1.82;
    color: var(--text-mid); max-width: 440px;
    margin-bottom: 20px;
}
.about-text-sticky p:last-child { margin-bottom: 0; }

.about-video-scroll {
    height: 72vh; border-radius: var(--r-xl);
    overflow: hidden; margin-top: 80px;
    background: var(--bg-warm);
}
.about-video-scroll video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Principles */
.principles-timeline {
    margin-top: 44px; padding-right: 16px;
    border-right: 1.5px solid rgba(31,84,65,0.2);
    display: flex; flex-direction: column; gap: 16px;
}
.p-item { display: flex; align-items: center; position: relative; cursor: default; }
.p-dot {
    width: 10px; height: 10px; background: var(--accent);
    border-radius: 50%; position: absolute; right: -21px;
    border: 2px solid var(--bg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.p-item:hover .p-dot { transform: scale(1.6); background: transparent; border-color: var(--accent); }
.p-text {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
    color: var(--text); padding-right: 12px; opacity: 0.7;
    transition: opacity 0.25s, color 0.25s;
}
.p-item:hover .p-text { opacity: 1; color: var(--accent); }

/* =============================================
   CREDENTIALS
============================================= */
.credentials-section {
    padding: 120px var(--pad);
    background: var(--bg-dark); color: #fff;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.credentials-inner { max-width: 1180px; margin: 0 auto; }
.credentials-header { margin-bottom: 72px; }
.credentials-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 400; letter-spacing: -0.01em;
    color: #fff; margin-bottom: 16px;
}
.credentials-header p {
    font-size: 1.0625rem; color: rgba(255,255,255,0.7);
    max-width: 480px; line-height: 1.65;
}

/* Disciplines — card grid */
.disc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-dark);
    margin-bottom: 90px;
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    overflow: hidden;
}
.disc-card {
    background: var(--bg-dark);
    padding: 26px 22px 22px;
    position: relative;
    min-height: 130px;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
}
.disc-card:hover { background: rgba(255,255,255,0.03); }

/* National achievement cards */
.disc-card--national {
    border-top: 2px solid var(--accent);
}
.disc-card--national .disc-stat { opacity: 0.35; }
.disc-card--national .disc-card-sub { color: var(--accent); opacity: 0.8; }

/* Bridge sentence after cards */
.disc-bridge {
    margin-top: 32px; margin-bottom: 0;
    font-size: 1.15rem; line-height: 1.75;
    color: rgba(255,255,255,0.75);
    text-align: center;
    font-style: italic;
    padding: 0 10%;
}

/* Animated underline (AnimatedText pattern) */
.animated-text-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}
.animated-underline {
    position: absolute;
    bottom: -2px; right: 0; left: 0;
    height: 20px;
    color: var(--accent-light);
    overflow: visible;
}
.underline-path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1.5s ease-in-out;
}
.animated-text-wrap.is-visible .underline-path {
    stroke-dashoffset: 0;
}
.disc-stat {
    position: absolute; top: 14px; right: 16px;
    font-family: var(--font-display);
    font-size: 3.2rem; font-weight: 400;
    color: var(--accent); opacity: 0.22;
    line-height: 1; letter-spacing: -0.04em;
    user-select: none;
}
.disc-card-sub {
    font-size: 0.65rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 5px; display: block;
}
.disc-card-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400; color: #fff;
    letter-spacing: -0.01em;
    position: relative; z-index: 1;
    line-height: 1.25;
}

.certs-area h3 {
    font-family: var(--font-display); font-size: 1.7rem;
    color: #fff; margin-bottom: 34px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-dark);
    letter-spacing: -0.01em;
}
.certs-row { display: flex; gap: 24px; flex-wrap: wrap; }
.cert-card {
    flex: 1; min-width: 260px; max-width: 480px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md); overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.cert-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.cert-embed-wrap { width: 100%; height: 300px; overflow: hidden; }
.cert-embed { width: 100%; height: 100%; border: none; display: block; }
.cert-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.25);
}
.cert-placeholder span { font-size: 2.5rem; }
.cert-placeholder p   { font-size: 0.9rem; font-family: var(--font-display); letter-spacing: 0.04em; }
.cert-meta { padding: 18px 22px; display: flex; flex-direction: column; gap: 5px; }
.cert-meta strong { font-family: var(--font-display); font-size: 0.95rem; color: #fff; font-weight: 400; }
.cert-meta span   { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* =============================================
   PHILOSOPHY
============================================= */
.philosophy-section {
    padding: 140px var(--pad);
    background: var(--bg);
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400; letter-spacing: -0.01em;
    margin-bottom: 80px; color: var(--text);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
}
.philosophy-item {
    padding: 36px 28px 36px 0;
    border-left: 1px solid var(--border);
    padding-left: 28px;
    transition: background 0.25s;
}
.philosophy-item:hover { background: var(--bg-warm); }
.philosophy-item:nth-child(even) { margin-top: 60px; }
.p-num {
    font-family: var(--font-display); font-size: 1rem;
    color: var(--accent); margin-bottom: 14px;
    display: block; letter-spacing: 0.04em;
    font-weight: 400;
}
.philosophy-item h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 700; }
.philosophy-item p  { color: var(--text-mid); font-size: 1.0625rem; line-height: 1.65; }

/* =============================================
   FAQ
============================================= */
.faq-section {
    padding: 100px var(--pad) 120px;
    background: var(--bg);
}
.faq-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.faq-left {
    position: sticky;
    top: 110px;
}
.faq-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400; letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 20px;
}
.faq-left-desc {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.72;
    max-width: 360px;
    margin-bottom: 32px;
}
.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    min-height: 44px;
    border: 1.5px solid var(--text);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, color 0.2s;
}
.faq-contact-btn:hover {
    background: var(--text);
    color: var(--bg);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    font-size: 1.0625rem; font-weight: 700;
    cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    padding: 22px 0; gap: 16px;
    transition: color 0.2s;
    user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question span {
    font-family: var(--font-display); font-size: 1.4rem;
    font-weight: 400; color: var(--text-muted);
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
}
.faq-item.active .faq-question span { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-mid);
}
.faq-answer p { font-size: 1.0625rem; line-height: 1.75; padding-bottom: 20px; }
.faq-item.active .faq-answer { max-height: 500px; }

/* =============================================
   FOOTER
============================================= */
/* =============================================
   FOOTER
============================================= */
footer {
    background: var(--bg-dark); color: #fff;
    padding: 90px var(--pad) 40px;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

/* ── Hook ── */
.footer-hook { text-align: center; padding-bottom: 72px; }
.footer-hook-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -0.01em; margin-bottom: 16px;
    color: #fff;
}
.footer-hook-sub {
    color: rgba(255,255,255,0.45);
    font-size: 1.0625rem; margin-bottom: 40px;
    line-height: 1.6;
}
.footer-social-btns {
    display: flex; justify-content: center;
    gap: 12px; flex-wrap: wrap;
}
.footer-social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.footer-social-btn:hover {
    transform: scale(1.2);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

/* ── Rule ── */
.footer-rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 72px;
}

/* ── Main footer grid ── */
.footer-main {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 60px;
}
.footer-brand {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-logo-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
}
.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}
.footer-sections-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-section a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section a:hover { color: #fff; }

@media (max-width: 900px) {
    .footer-main { flex-direction: column; gap: 40px; }
    .footer-brand { flex: none; }
    .footer-sections-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
    .footer-sections-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Contact form ── */
.footer-contact { max-width: 520px; margin: 0 auto; text-align: center; }
.footer-contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400; letter-spacing: -0.01em;
    margin-bottom: 8px; color: #fff;
}
.footer-contact-sub {
    color: rgba(255,255,255,0.4);
    font-size: 0.9375rem; margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form input,
.contact-form textarea {
    font-family: var(--font-body); font-size: 0.9rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 8px; padding: 13px 15px;
    color: #fff; outline: none; direction: rtl;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.09);
}
.contact-form textarea { resize: none; min-height: 88px; line-height: 1.6; }
.contact-submit {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    background: var(--accent); color: #fff; border: none;
    border-radius: 8px; padding: 13px 28px;
    cursor: pointer; transition: background 0.15s;
    align-self: flex-start;
}
.contact-submit:hover:not(:disabled) { background: var(--accent-mid); }
.contact-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.contact-success {
    display: none; color: #4ade80;
    font-size: 0.95rem; margin-top: 16px;
}

/* ── Bottom bar ── */
.footer-bar {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    margin-top: 72px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-calendly {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.8125rem; font-weight: 500;
    transition: color 0.2s;
}
.footer-calendly:hover { color: #fff; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; }
.footer-legal-links {
    list-style: none;
    display: flex; gap: 10px; flex-wrap: wrap;
}
.footer-legal-links a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.8rem; font-weight: 400;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-legal-links a:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

@media (max-width: 480px) {
    .contact-form-row { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =============================================
   CLIENTS STRIP
============================================= */
.clients-strip {
    overflow: hidden;
    padding: 28px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: clientsScroll 22s linear infinite;
    direction: ltr;
}
.clients-strip:hover .clients-track { animation-play-state: paused; }

@keyframes clientsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Text-based logos (replace with <img> when ready) */
.client-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.22;
    white-space: nowrap;
    transition: opacity 0.2s;
    user-select: none;
}
.clients-strip:hover .client-logo { opacity: 0.38; }

/* When using real logo images instead of text */
.client-logo img {
    height: 28px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.28;
    transition: opacity 0.2s;
}
.clients-strip:hover .client-logo img { opacity: 0.5; }

/* =============================================
   NOISE TEXTURE — סקשנים כהים
============================================= */
.testimonials-section,
.credentials-section,
footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.testimonials-section::before,
.credentials-section::before,
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/></filter><rect width='250' height='250' filter='url(%23n)'/></svg>");
    background-size: 250px 250px;
    opacity: 0.042;
    pointer-events: none;
    z-index: -1;
}

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal-up {
    opacity: 0; transform: translateY(48px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* =============================================
   MOBILE
============================================= */
@media (max-width: 900px) {
    :root { --pad: 5.5vw; }

    /* Elements */
    .elements-section { border-radius: var(--r-lg) var(--r-lg) 0 0; }
    .elements-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .element-card--wide { grid-column: span 2; }
    .element-card { min-height: 220px; padding: 28px 22px; }
    .element-ghost-num { font-size: 6rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials-section { padding: 72px var(--pad) 60px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
    .credentials-section { border-radius: var(--r-lg) var(--r-lg) 0 0; }

    /* Sticky CTA */
    .sticky-cta { padding: 12px var(--pad); }
    .sticky-cta-inner { font-size: 0.9rem; }

    /* Nav */
    .logo { font-size: 1.3rem; }
    nav { padding: 20px var(--pad); }
    nav.scrolled { padding: 14px var(--pad); }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 0.875rem; }

    /* Hero */
    .hero-title { max-width: 100%; font-size: clamp(2.2rem, 9vw, 4rem); margin-bottom: 20px; }
    .hero-desc  { font-size: 1rem; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-btn-primary { text-align: center; }
    .hero-link-secondary { text-align: center; align-self: center; }

    /* Services */
    .work-section { padding: 64px var(--pad) 90px; }
    .section-title { margin-bottom: 44px; }
    .products-container { gap: 60px; }
    .product-row,
    .product-row.reverse { flex-direction: column; gap: 22px; }
    .product-visual { width: 100%; height: 260px; }
    .product-title { font-size: 1.7rem; }

    /* Testimonial Slider */
    .tslider-section { padding: 72px var(--pad) 60px; }
    .tslider-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .tslider-card { flex: 0 0 calc((100% - 20px) / 2); }

    /* About */
    .about-grid { grid-template-columns: 1fr; padding: 80px var(--pad); gap: 36px; }
    .about-text-sticky { position: relative; top: 0; }
    .about-video-scroll { height: 380px; margin-top: 0; }
    .principles-timeline {
        border-right: none; border-top: 1.5px solid rgba(31,84,65,0.2);
        flex-direction: row; flex-wrap: wrap; gap: 12px;
        padding-right: 0; padding-top: 20px;
    }
    .p-dot { display: none; }
    .p-text { font-size: 1.1rem; padding-right: 0; }

    /* Credentials */
    .credentials-section { padding: 72px var(--pad); }
    .credentials-header h2 { font-size: 2.4rem; }
    .disc-cards { grid-template-columns: repeat(2, 1fr); }
    .disc-card { min-height: 110px; padding: 20px 16px 18px; }
    .disc-stat { font-size: 2.6rem; top: 12px; right: 14px; }
    .disc-card-name { font-size: 0.9rem; }
    .disc-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .certs-row { flex-direction: column; }
    .cert-card { max-width: 100%; }

    /* Philosophy */
    .philosophy-section { padding: 72px var(--pad); }
    .philosophy-item:nth-child(even) { margin-top: 0; }
    .philosophy-grid { grid-template-columns: 1fr 1fr; }
    .philosophy-item { padding: 24px 18px; }

    /* FAQ */
    .faq-section { padding: 64px var(--pad) 80px; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: relative; top: 0; }

    /* Footer */
    footer { border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 64px var(--pad) 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    /* Preloader */
    .word { font-size: 3rem; }
    .final-reveal { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .elements-grid { grid-template-columns: 1fr; gap: 10px; }
    .element-card--wide { grid-column: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .disc-cards { grid-template-columns: repeat(2, 1fr); }
    .disc-card { min-height: 110px; padding: 20px 16px 18px; }
    .disc-stat { font-size: 2.6rem; top: 12px; right: 14px; }
    .disc-card-name { font-size: 0.9rem; }
    .disc-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

    /* Testimonial Slider — single card */
    .tslider-card { flex: 0 0 100%; }
    .tslider-section { padding: 60px var(--pad) 50px; }
}

/* =============================================
   REDUCED MOTION
============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-up { opacity: 1; transform: none; }
}
