/* ========================================
   MINTBURNER — Editorial Agency Theme
   Sharp edges, grid lines, quiet confidence
   ======================================== */

:root {
    --eggshell: #F9F7F2;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --charcoal-70: rgba(26,26,26,0.7);
    --charcoal-60: rgba(26,26,26,0.6);
    --charcoal-40: rgba(26,26,26,0.4);
    --charcoal-20: rgba(26,26,26,0.2);
    --charcoal-10: rgba(26,26,26,0.1);
    --charcoal-05: rgba(26,26,26,0.05);
    --cyan: #0891B2;
    --cyan-light: #22D3EE;
    --cyan-dark: #0E7490;
    --white-10: rgba(255,255,255,0.1);
    --white-20: rgba(255,255,255,0.2);
    --white-40: rgba(255,255,255,0.4);
    --white-60: rgba(255,255,255,0.6);
    --font: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--charcoal);
    background: var(--eggshell);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: #CFFAFE; color: #0E7490; }

/* ---- UTILITY ---- */
.text-accent {
    color: var(--cyan);
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--cyan);
    z-index: 101;
    width: 0%;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 1.5rem;
    left: 0; right: 0;
    z-index: 100;
    width: 98%;
    max-width: 1440px;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    border-radius: 999px;
    transition: all 3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    margin: 0 auto;
    height: 72px; /* Fixed height to prevent vertical scaling */
}

nav.scrolled {
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.nav-inner {
    width: 100%;
    height: 100%; /* Fill parent height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    transition: all 3s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled .nav-inner {
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    height: 30px;
    width: 180px;
}

.logo-full {
    height: 20px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-icon {
    height: 30px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled .logo-full { opacity: 0; transform: translateY(-50%) translateX(-20px); }
nav.scrolled .logo-icon { opacity: 1; transform: translateY(-50%) scale(1); }

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    border-radius: 999px; /* Match visual hierarchy */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
    background: var(--cyan);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ---- HERO ---- */
.hero {
    /* Removed border-bottom */
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    /* Removed borders */
    padding: 12rem 3rem 6rem;
}

.hero-content {
    max-width: 1000px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.hero-line {
    font-family: var(--font);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    color: var(--charcoal);
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(40px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.4s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }
.hero-line:nth-child(4) { animation-delay: 0.6s; }

.hero-line .text-accent {
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slowGradient 12s ease-in-out infinite; /* Even slower duration */
    display: inline-block;
}

@keyframes slowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

@media (min-width: 769px) {
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--charcoal-60);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

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

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 999px; /* Match visual hierarchy */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--cyan);
    transform: translateY(-3px) scale(1.02);
}

.btn-lg {
    padding: 1.5rem 3.5rem;
    font-size: 0.75rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--charcoal);
    cursor: pointer;
    text-decoration: none;
    border-radius: 999px; /* Match visual hierarchy */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}

/* ---- SCROLL REVEAL ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- SECTION SHARED ---- */
.section-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.03em;
}

/* ---- TRUSTED BY ---- */
.trusted-section {
    border-bottom: 1px solid var(--charcoal-10);
}

.trusted-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border-left: 1px solid var(--charcoal-10);
    border-right: 1px solid var(--charcoal-10);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trusted-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal-40);
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-logo {
    height: 24px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trusted-logo-placeholder {
    width: 80px;
    height: 24px;
    background: var(--charcoal-10);
    opacity: 0.5;
}

/* ---- VIDEO SHOWCASE ---- */
.showcase-section {
    padding: 0;
    border-bottom: 1px solid var(--charcoal-10);
}

.showcase-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
    /* Removed borders */
}

.showcase-header .section-title {
    margin-top: 0.5rem;
}

/* Showcase row — zigzag layout */
.showcase-row {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    /* Removed borders */
    margin-bottom: 4rem; /* Added gap between rows */
}

.showcase-row:last-child { margin-bottom: 0; }

/* Flipped row: text left, video right */
.showcase-row--flip {
    grid-template-columns: 1fr auto;
}

/* Player container */
.showcase-player {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    cursor: pointer;
    border-radius: 4px; /* Slight rounding for a cleaner look */
}

.showcase-player--reel {
    width: 280px;
    aspect-ratio: 9/16;
    max-height: 500px;
}

.showcase-player--video {
    width: clamp(480px, 50vw, 720px);
}

/* Video inside player */
.showcase-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease; /* Faster transition to avoid glitch */
}

.showcase-player video.fade-out {
    opacity: 0;
}

/* Hover overlay */
.showcase-player .sp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.5) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.showcase-player:hover .sp-overlay {
    opacity: 1;
}

/* Play button */
.showcase-player .sp-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 52px;
    height: 52px;
    background: var(--charcoal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 3;
    padding-left: 2px;
    border-radius: 50%; /* Circle play button */
}

.showcase-player:hover .sp-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.showcase-player .sp-play:hover {
    background: var(--cyan-dark);
}

/* Label on player */
.showcase-player .sp-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-60);
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-player:hover .sp-label {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar at bottom */
.showcase-player .sp-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cyan);
    z-index: 4;
}

.showcase-player .sp-progress.running {
    animation: spProgress 5s linear forwards;
}

@keyframes spProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Text panel beside the player */
.showcase-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    /* Removed borders */
}

.showcase-row--flip .showcase-text {
    /* Removed borders */
}

.showcase-num {
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--charcoal-40);
    font-variant-numeric: tabular-nums;
    margin-bottom: 1rem;
}

.showcase-row-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.showcase-row-desc {
    font-size: 0.95rem;
    color: var(--charcoal-60);
    line-height: 1.7;
    font-weight: 300;
    max-width: 360px;
}

/* Dots navigation */
.showcase-dots {
    display: flex;
    gap: 12px; /* Increased gap */
    margin-top: 1.5rem;
}

.showcase-dots button {
    width: 12px; /* Changed from line to circle */
    height: 12px;
    background: var(--charcoal-20);
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.showcase-dots button:hover {
    background: var(--charcoal-40);
}

.showcase-dots button.active {
    background: var(--cyan);
    transform: scale(1.3);
}

/* ---- SERVICES ---- */
.services-section {
    padding: 8rem 0; /* Added more gap to the section */
    /* Removed border-bottom */
}

.services-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 0;
}

.services-heading {
    padding: 0 3rem;
    position: sticky;
    top: 100px;
    align-self: start;
}

.services-list {
    display: flex;
    flex-direction: column;
    /* Removed border-left */
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    padding: 3rem 2.5rem;
    border-bottom: 1px solid var(--charcoal-05); /* Lighter divider */
}

.service-row:last-child {
    border-bottom: none;
}

.service-num {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--charcoal-20);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    padding-top: 0.15rem;
}

.service-body {
    max-width: 380px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--charcoal-60);
    line-height: 1.7;
    font-weight: 300;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-self: center;
    max-width: 280px;
}

.service-tags span {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan-dark);
    padding: 0.35rem 0.75rem;
    background: rgba(8, 145, 178, 0.06);
    border-radius: 2px;
}

/* ---- ABOUT ---- */
.about-section {
    padding: 10rem 0; /* Increased gap */
    background: #FEFBF4; /* Warm cream/ivory background */
    /* Removed border-bottom */
}

.about-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Removed borders */
}

.about-left {
    padding: 0 3rem;
    /* Removed borders */
}

.about-left .section-title {
    margin-top: 0.5rem;
}

.about-right {
    padding: 0 3rem;
}

.founder-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.founder-avatar {
    width: 56px;
    height: 56px;
    background: var(--charcoal-10);
    flex-shrink: 0;
    object-fit: cover;
}

.founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.founder-insta {
    display: block;
    font-size: 0.7rem;
    color: var(--charcoal-40);
    text-decoration: none;
    transition: color 0.3s;
}

.founder-insta:hover {
    color: var(--cyan);
}

.founder-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 0.15rem;
}

.about-body {
    font-size: 1.05rem;
    color: var(--charcoal-60);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
}

.founder-stat {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--charcoal-10);
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
}

.founder-stat span:first-child {
    color: var(--cyan);
    font-weight: 800;
}

/* ---- PROCESS ---- */
.process-section {
    background: var(--charcoal);
    color: var(--white);
    border-bottom: 1px solid var(--charcoal-10);
}

.process-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 8rem 3rem 0;
    /* Removed borders */
}

.process-header .section-tag {
    color: var(--cyan-light);
}

.process-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.process-rows {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 3rem 12rem;
}

.process-row {
    border-top: 1px solid var(--white-10);
    padding-top: 2.5rem;
    transition: all 0.4s ease;
}

.process-row:hover {
    background: transparent;
    transform: translateY(-5px);
}

.process-row-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
}

.process-num span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white-20);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.process-body h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.process-body p {
    font-size: 1rem;
    color: var(--white-60);
    line-height: 1.7;
    font-weight: 300;
    max-width: 100%;
}

.mint-engine {
    font-weight: 700;
    color: var(--cyan-light);
    border-bottom: 1px dashed var(--cyan-light);
    transition: border-color 0.2s ease;
}

.mint-engine:hover {
    border-bottom-style: solid;
}

/* ---- MINT ENGINE MODAL ---- */
.me-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.me-overlay.active { display: flex; }

.me-modal {
    background: var(--charcoal);
    border: 1px solid var(--white-10);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.me-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white-40);
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.me-close:hover { color: var(--white); }

.me-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cyan-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.me-subtitle {
    font-size: 1rem;
    color: var(--white-60);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.me-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.me-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.me-step-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--cyan-light);
    font-weight: 700;
}

.me-step-text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}

.me-step-text p {
    font-size: 0.85rem;
    color: var(--white-40);
    line-height: 1.6;
    font-weight: 300;
}

.me-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--white-10);
    font-size: 0.8rem;
    color: var(--white-40);
    font-weight: 300;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    padding: 0;
    border-bottom: 1px solid var(--charcoal-10);
}

.testimonials-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 8rem 3rem 0;
    /* Removed borders */
}

.testimonials-header .section-title {
    margin-top: 0.5rem;
}

/* Video testimonials */
.testimonial-videos {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem; /* Added gap */
    padding: 4rem 3rem;
    /* Removed borders */
}

.tv-card {
    position: relative;
    width: 260px;
    aspect-ratio: 9/16;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid var(--charcoal-05);
    border-radius: 8px; /* Added rounding */
}

.tv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.tv-card:hover .tv-video {
    filter: grayscale(0);
}

.tv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    pointer-events: none;
}

.tv-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.tv-role {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--white-60);
    margin-top: 0.15rem;
    letter-spacing: 0.05em;
}

.tv-play {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--charcoal);
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s;
}

.tv-play:hover {
    background: var(--cyan-dark);
}

/* Text testimonials */
.testimonial-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.testimonial-scroll {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 3rem 6rem; /* Added gap at bottom */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Removed borders */
}

.testimonial-scroll::-webkit-scrollbar { display: none; }

.testimonial-track {
    display: flex;
    gap: 1.5rem; /* Added gap between cards */
    min-width: max-content;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem; /* Increased padding */
    border: 1px solid var(--charcoal-05); /* Lighter border */
    width: 400px; /* Wider cards */
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: center;
    border-radius: 8px; /* Added rounding */
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: -3rem;
    padding-bottom: 6rem;
}

.ts-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--charcoal-10);
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.ts-nav-btn:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    transform: scale(1.1);
}

.ts-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-card:first-child {
    margin-left: 0;
}

.testimonial-card:hover {
    background: var(--charcoal);
    color: var(--white);
}

.testimonial-card:hover blockquote {
    color: var(--white);
}

.testimonial-card:hover .author-info h5 {
    color: var(--white);
}

.testimonial-card:hover .author-info span {
    color: var(--white-60);
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px; height: 36px;
    background: var(--charcoal-10);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.author-info span {
    font-size: 0.65rem;
    color: var(--charcoal-40);
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

/* ---- FAQ ---- */
/* ---- FAQ ---- */
.faq-section {
    padding: 0;
    background: var(--charcoal);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.section-tag--light {
    color: var(--white-40);
}

.faq-heading {
    margin-bottom: 3.5rem;
}

.faq-heading h2 {
    font-family: var(--font);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 0.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--white-10);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--white-10);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--cyan-light);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white-40);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--cyan-light);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--white-60);
    line-height: 1.8;
    padding: 0 0 1.5rem;
    font-weight: 300;
    max-width: 600px;
}

/* ---- CTA ---- */
.cta-section {
    padding: 0;
    background: var(--charcoal);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--white-60);
    line-height: 1.7;
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-actions .btn-primary {
    background: var(--cyan);
}

.cta-actions .btn-primary:hover {
    background: var(--cyan-light);
    color: var(--charcoal);
}

.cta-email {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-60);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-email:hover {
    color: var(--cyan-light);
}

/* ---- FOOTER ---- */
footer {
    padding: 0;
    background: var(--eggshell);
    /* Removed border-top */
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6rem 3rem; /* Increased padding */
    /* Removed borders */
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to bottom */
}

.footer-brand-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px; /* Scaled up */
    width: auto;
    filter: grayscale(1);
    opacity: 1;
}

.footer-copyright {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-40);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-60);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.5s ease;
}

.modal-overlay.active { display: flex; }

.talk-modal {
    background: var(--white); /* White background */
    border: 1px solid var(--charcoal-10);
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    animation: modalIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: var(--charcoal-05);
    border: none;
    cursor: pointer;
    color: var(--charcoal-40);
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover { 
    background: var(--charcoal-10);
    color: var(--charcoal);
    transform: rotate(90deg);
}

.talk-header {
    margin-bottom: 2.5rem;
}

.talk-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.talk-accent {
    font-family: var(--font); /* Primary site font */
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.talk-header p {
    font-size: 0.95rem;
    color: var(--charcoal-40);
    font-weight: 300;
}

.talk-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.talk-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--eggshell);
    border: 1px solid var(--charcoal-05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
}

.talk-card:hover {
    background: var(--white);
    border-color: var(--cyan-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transform: translateX(4px);
}

.talk-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.icon-call { color: #0891B2; background: rgba(8, 145, 178, 0.08); }
.icon-insta { color: #DB2777; background: rgba(219, 39, 119, 0.08); }
.icon-email { color: #EA580C; background: rgba(234, 88, 12, 0.08); }
.icon-linkedin { color: #2563EB; background: rgba(37, 99, 235, 0.08); }

.talk-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.talk-content p {
    font-size: 0.85rem;
    color: var(--charcoal-60);
    font-weight: 300;
}

.talk-arrow {
    margin-left: auto;
    color: var(--charcoal-20);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.talk-card:hover .talk-arrow {
    color: var(--cyan);
    transform: translateX(4px);
}

/* ---- CINEMATIC PLAYER ---- */
.cinema-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cinema-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cinema-backdrop {
    position: absolute;
    inset: -40px;
    background: #000;
    filter: blur(60px);
    opacity: 0.96;
    z-index: 0;
    transition: opacity 0.6s ease;
}

.cinema-close {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.cinema-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.cinema-stage {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 960px;
    opacity: 0;
    transform: scale(0.95) translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.cinema-overlay.active .cinema-stage {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.cinema-frame {
    position: relative;
    background: #000;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.cinema-frame video {
    width: 100%;
    max-height: 78vh;
    display: block;
    background: #000;
}

.cinema-glow {
    position: absolute;
    inset: -1px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    box-shadow: 0 0 80px 8px rgba(8, 145, 178, 0.15),
                0 0 160px 24px rgba(8, 145, 178, 0.06);
}

.cinema-overlay.active .cinema-glow {
    opacity: 1;
}

.cinema-credits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0.25rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.cinema-overlay.active .cinema-credits {
    opacity: 1;
    transform: translateY(0);
}

.cinema-credits-label {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
}

.cinema-credits-tag {
    font-family: var(--font);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.2);
    padding: 0.25rem 0.75rem;
}

/* Reel (9:16) uses portrait layout */
.cinema-stage.cinema--portrait {
    max-width: 400px;
}

.cinema--portrait .cinema-frame video {
    max-height: 82vh;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .nav-inner { padding: 0 1.5rem; height: 72px; }
    
    nav.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    
    nav.scrolled .nav-inner { height: 64px; padding: 0 1.5rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(249,247,242,0.98); /* Glass effect for mobile menu */
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 99;
    }

    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .hamburger { display: flex; z-index: 101; }
    .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); }

    .hero-inner { padding: 10rem 1.5rem 6rem; }

    .showcase-header { padding: 0 1.5rem 3rem; }

    /* Stack rows vertically on mobile */
    .showcase-row,
    .showcase-row--flip {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    /* On flipped row, reorder so video comes first visually */
    .showcase-row--flip .showcase-player {
        order: -1;
    }

    .showcase-player--reel {
        width: 100%;
        max-height: 60vh;
    }

    .showcase-player--video {
        width: 100%;
    }

    .showcase-text {
        padding: 2rem 1.5rem;
        /* Removed borders */
    }

    .showcase-row--flip .showcase-text {
        /* Removed borders */
    }

    .showcase-row-title { font-size: 1.4rem; }
    .showcase-row-desc { font-size: 0.85rem; }

    .showcase-player .sp-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .showcase-player .sp-overlay { opacity: 1; }
    .showcase-player .sp-label { opacity: 1; transform: translateY(0); }

    .cinema-stage { width: 95%; }
    .cinema-stage.cinema--portrait { max-width: 85vw; }
    .cinema-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
    .cinema-credits-label { font-size: 0.65rem; }
    .cinema-credits-tag { font-size: 0.55rem; padding: 0.2rem 0.5rem; }

    .services-inner {
        grid-template-columns: 1fr;
    }

    .services-heading {
        position: static;
        padding: 0 1.5rem 3rem;
    }

    .services-list {
        /* Removed borders */
    }

    .service-row {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 3rem 1.5rem;
    }

    .service-tags {
        grid-column: 1 / -1;
        max-width: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-left {
        padding: 0 1.5rem 3rem;
        /* Removed borders */
    }

    .about-right { padding: 0 1.5rem 6rem; }

    .process-header { padding: 6rem 1.5rem 0; }
    .process-rows { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        padding: 3rem 1.5rem 6rem; 
    }
    .process-row { padding-top: 2rem; }
    .process-row-inner { gap: 1rem; }
    .process-body h4 { font-size: 1.35rem; }

    .testimonials-header { padding: 4rem 1.5rem 0; }
    .testimonial-videos { padding: 3rem 1.5rem; flex-direction: column; align-items: center; gap: 2rem; }
    .tv-card { width: 100%; max-width: 320px; }
    .testimonial-scroll { padding: 0 1.5rem 4rem; }
    .testimonial-card { width: 300px; padding: 2rem; }

    .faq-inner {
        padding: 6rem 1.5rem;
    }

    .faq-heading {
        margin-bottom: 3rem;
    }

    .cta-inner {
        padding: 6rem 1.5rem;
    }

    .footer-inner {
        padding: 6rem 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand-container {
        flex-direction: column;
        gap: 1rem;
    }
}
