/* ================================================================
   MURO AI AUTOMATIONS — styles.css
   Theme: Black background, white oversized Bebas Neue typography,
          orange accent (#FF4500 → tweak freely).
   Spline containers are pre-wired and ready to accept embeds.
================================================================ */

/* ── Reset & Base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #000000;
    --bg-2: #0a0a0a;
    --bg-card: #111111;
    --accent: #FF4500;
    --accent-2: #FF6A00;
    --white: #FFFFFF;
    --grey: #888888;
    --grey-lite: #cccccc;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Spline Container (shared) ─────────────────────────────────── */
/*
  These containers are positioned so Spline scenes sit visually
  behind the text content. They are pointer-events: none by default
  so they don't block clicks — remove that rule if you need
  Spline interactivity.
*/
.spline-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    /* ← set to "auto" for interactive Spline scenes */
    z-index: 0;
}

.spline-container spline-viewer,
.spline-container iframe,
.spline-container canvas {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Hero Spline container is interactive — allow clicks to reach the scene.
   Text elements (z-index: 2) still intercept their own clicks.
   The gradient overlay (z-index: 1, pointer-events: none) passes clicks
   through to the Spline scene (z-index: 0) in non-text areas. */
#spline-container {
    pointer-events: auto;
}

/* ── Spline loading overlay ─────────────────────────────────────── */
.spline-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    z-index: 10;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.spline-loader.hidden {
    opacity: 0;
}

.spline-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-logo-symbol {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--grey-lite);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.cta-arrow {
    font-size: 1rem;
}

/* ── HERO SECTION ───────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 3rem 3rem;
    overflow: hidden;
    background: var(--bg);
}

/* Gradient vignette so text is legible over any Spline scene */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Giant background word ── */
.hero-bg-word {
    position: absolute;
    bottom: -0.15em;
    left: -0.04em;
    font-family: var(--font-display);
    font-size: clamp(10rem, 22vw, 22rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    text-stroke: 1px rgba(255, 255, 255, 0.06);
    user-select: none;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

/* ── Hero headline ── */
.hero-headline {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 12rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.hero-headline .line {
    display: block;
}

.hero-headline .line-3 {
    color: var(--accent);
}

/* ── Hero tagline (top-right corner) ── */
.hero-tagline {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--grey-lite);
    text-align: right;
    line-height: 1.7;
}

/* ── Hero description (bottom-left) ── */
.hero-description {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-lite);
    line-height: 1.8;
    max-width: 360px;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* Both buttons - primary style */
.hero-cta,
.hero-cta-secondary {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    align-self: flex-start;
}

/* Primary button - orange background */
.hero-cta {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}

.hero-cta:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: var(--white);
}

/* Secondary button - transparent with border */
.hero-cta-secondary {
    color: var(--grey-lite);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.hero-cta-secondary:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ── TRUSTED BY SECTION ─────────────────────────────────────────── */
.trusted-section {
    background: var(--bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 3rem;
}

.trusted-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--grey);
    text-transform: uppercase;
}

/* ── SERVICES SECTION ───────────────────────────────────────────── */
.services-section {
    padding: 8rem 3rem;
    background: var(--bg);
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: #161616;
}

.service-card:hover::before {
    opacity: 0.06;
}

.service-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.service-desc {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.7;
    max-width: 300px;
    margin-top: auto;
}

.service-result {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* ── PROCESS SECTION ──────────────────────────────────────────────── */
.process-section {
    padding: 8rem 3rem;
    background: var(--bg-2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.process-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.process-card:hover {
    background: #161616;
}

.process-card:hover::before {
    opacity: 0.06;
}

.process-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.process-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
}

.process-desc {
    font-size: 0.88rem;
    color: var(--grey-lite);
    line-height: 1.7;
    max-width: 280px;
}

/* ── ABOUT SECTION ──────────────────────────────────────────────── */
.about-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem;
    background: var(--bg-2);
    overflow: hidden;
}

/* The about Spline container fills the right half */
.spline-container--about {
    left: 50%;
    width: 50%;
    height: 100%;
    opacity: 0.7;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.92;
}

.about-text {
    font-size: 0.9rem;
    color: var(--grey-lite);
    line-height: 1.8;
    max-width: 440px;
}

.about-work {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem;
    margin-top: 1rem;
}

.about-work-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-work-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-work-list li {
    font-size: 0.85rem;
    color: var(--grey-lite);
    padding-left: 1.25rem;
    position: relative;
}

.about-work-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.about-work-note {
    font-size: 0.8rem;
    color: var(--grey);
    margin-top: 1rem;
    font-style: italic;
}

.btn-outline {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ── CONTACT SECTION ────────────────────────────────────────────── */
.contact-section {
    padding: 8rem 3rem;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-intro {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.contact-intro p {
    font-size: 1rem;
    color: var(--grey-lite);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

/* ── Contact Card ── */
.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-card {
        grid-template-columns: 2fr 1fr;
    }
}

/* Corner plus markers */
.cc-corner {
    position: absolute;
    color: var(--accent);
    line-height: 0;
}

.cc-corner--tl {
    top: -12px;
    left: -12px;
}

.cc-corner--tr {
    top: -12px;
    right: -12px;
}

.cc-corner--bl {
    bottom: -12px;
    left: -12px;
}

.cc-corner--br {
    bottom: -12px;
    right: -12px;
}

/* Left info panel */
.cc-left {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 768px) {
    .cc-left {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }
}

.cc-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.cc-desc {
    font-size: 0.88rem;
    color: var(--grey-lite);
    line-height: 1.8;
    max-width: 480px;
}

/* Contact info grid */
.cc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cc-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.cc-info-item--wide {
    grid-column: 1 / -1;
}

.cc-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--accent);
}

.cc-info-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.cc-info-value {
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 0.1rem;
    letter-spacing: 0.04em;
}

/* Right form panel */
.cc-right {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: flex-start;
}

.cc-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cc-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-lite);
}

.cc-input,
.cc-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--white);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.cc-input::placeholder,
.cc-textarea::placeholder {
    color: var(--grey);
}

.cc-input:focus,
.cc-textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 69, 0, 0.04);
}

.cc-textarea {
    resize: vertical;
    min-height: 90px;
}

.cc-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
}

.cc-submit:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
}

.cc-submit:active {
    transform: translateY(0);
}

/* Confirmation message */
.cc-confirm {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: #4ade80;
    text-align: center;
    min-height: 1.2em;
}

/* ── LOGO STRIP (trusted-by section) ───────────────────────────── */
.logo-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-placeholder {
    width: 120px;
    height: 36px;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.logo-placeholder:hover {
    opacity: 1;
}

.logo-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ── TESTIMONIALS — Stagger Carousel ───────────────────────────── */
.testimonials-section {
    padding: 8rem 3rem 4rem;
    background: var(--bg-2);
}

.stagger-carousel {
    position: relative;
    width: 100%;
}

.stagger-viewport {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

/* Individual stagger card — positioned & transformed by JS */
.stagger-card {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 2rem;
    border: 2px solid;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease,
        background 0.5s ease, border-color 0.5s ease, opacity 0.5s ease;
    /* Clipped top-right corner (matches original component) */
    clip-path: polygon(40px 0%, calc(100% - 40px) 0%, 100% 40px,
            100% 100%, calc(100% - 40px) 100%, 40px 100%,
            0 100%, 0 0);
}

/* Decorative diagonal line for the clipped corner */
.stagger-card::after {
    content: '';
    position: absolute;
    top: 54px;
    right: -2px;
    width: 71px;
    /* ≈ sqrt(5000) */
    height: 2px;
    background: currentColor;
    opacity: 0.25;
    transform-origin: right center;
    transform: rotate(45deg);
    pointer-events: none;
}

.stagger-card--center {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 0 4px rgba(255, 255, 255, 0.12);
    z-index: 10;
}

.stagger-card--center::after {
    opacity: 0.3;
}

.stagger-card--side {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--grey-lite);
    z-index: 5;
}

.stagger-card--side:hover {
    border-color: rgba(255, 69, 0, 0.4);
}

/* Avatar image */
.stagger-avatar {
    width: 48px;
    height: 56px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 1rem;
    flex-shrink: 0;
    box-shadow: 3px 3px 0 var(--bg-2);
}

/* Quote text */
.stagger-quote {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    font-style: normal;
    flex: 1;
}

.stagger-card--center .stagger-quote {
    color: var(--white);
}

.stagger-card--side .stagger-quote {
    color: var(--grey-lite);
}

/* Attribution */
.stagger-by {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    font-size: 0.75rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

.stagger-card--center .stagger-by {
    color: rgba(255, 255, 255, 0.75);
}

.stagger-card--side .stagger-by {
    color: var(--grey);
}

/* Prev / Next controls */
.stagger-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.stagger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.stagger-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.stagger-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3rem;
    background: var(--bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo-item {
    width: 100px;
    height: 28px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.footer-logo-item:hover {
    opacity: 0.8;
}

.footer-logo-item svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--grey);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ── SCROLL REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        /* add a hamburger menu via JS if needed */
    }

    .hero {
        padding: 6rem 1.5rem 2.5rem;
    }

    .hero-tagline {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        text-align: left;
        margin-top: 1.5rem;
    }

    .hero-bg-word {
        font-size: 40vw;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .process-section,
    .services-section,
    .about-section,
    .contact-section,
    .testimonials-section {
        padding: 5rem 1.5rem;
    }

    .process-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .spline-container--about {
        left: 0;
        width: 100%;
        opacity: 0.15;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-strip {
        gap: 1rem;
    }

    .logo-placeholder {
        width: 90px;
        height: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
