/* ============================================
   BASE RESET & DESIGN TOKENS
   ============================================ */
:root {
    /* Dark Warm Backgrounds */
    --bg-dark: #0c0a09;
    --bg-elevated: #120e0b;
    --bg-card: #181411;
    --bg-card-hover: #201a16;

    /* Copper / Gold Palette */
    --accent: #f1a73f;
    --accent-warm: #c16000;
    --accent-gold: #d5a43a;
    --accent-mid: #c87318;
    --accent-pale: #f3ceb3;

    --text-primary: #fdfaf6;
    /* soft cream instead of pure harsh white */
    --text-secondary: #9e9185;
    /* warm grey */
    --text-muted: #6b6056;
    /* deeper warm grey */

    --accent-glow: rgba(241, 167, 63, 0.28);
    --accent-glow-strong: rgba(241, 167, 63, 0.5);
    --border-gold: rgba(213, 164, 58, 0.4);
    --border-subtle: rgba(241, 167, 63, 0.08);
    /* slightly golden instead of pure white */

    --font-main: 'Inter', 'Outfit', sans-serif;
    --font-display: 'Inter', 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s ease;
    --radius-card: 24px;
    --radius-btn: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    display: block;
    letter-spacing: -0.5px;
}

.section-title span.title-accent {
    background: linear-gradient(90deg, var(--accent-warm), var(--accent), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated underline on section titles */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent));
    margin: 18px auto 0;
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 12px var(--accent-glow);
}

.section-title:hover::after {
    width: 120px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-mid));
    color: #0a0a0a;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--accent-glow-strong);
    background: linear-gradient(135deg, #f5b84a, var(--accent));
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-gold);
    color: var(--accent) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(241, 167, 63, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 167, 63, 0.1), rgba(193, 96, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(213, 164, 58, 0.4), 0 0 60px rgba(193, 96, 0, 0.2);
    color: var(--accent-pale) !important;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(8, 8, 8, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: logoSplash 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.logo .dot {
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    animation: dotSplash 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes logoSplash {
    0% {
        opacity: 0;
        letter-spacing: 12px;
        transform: translateY(10px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        letter-spacing: 3px;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes dotSplash {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
        color: var(--accent);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Staggered entry animation */
.nav-links li {
    opacity: 0;
    animation: navItemFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.25s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.35s;
}

.nav-links li:nth-child(5) {
    animation-delay: 0.45s;
}

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-cta-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 6px var(--accent-glow);
}

.nav-links a:not(.btn-cta-nav):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn-cta-nav):hover::after {
    width: 100%;
}

/* CTA Nav Button */
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent) !important;
    border: 1.5px solid var(--accent-gold);
    padding: 10px 24px 12px 24px;
    border-radius: var(--radius-btn);
    background: rgba(241, 167, 63, 0.06);
    box-shadow: 0 0 12px rgba(241, 167, 63, 0.1);
    transition: var(--transition);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.btn-cta-nav:hover {
    background: rgba(241, 167, 63, 0.12);
    box-shadow: 0 0 22px rgba(241, 167, 63, 0.35), 0 0 40px rgba(193, 96, 0, 0.15);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    border-color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: left center;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    background: var(--accent);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    background: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Ambient background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(193, 96, 0, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: ambientPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(213, 164, 58, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: ambientPulse 10s ease-in-out infinite reverse;
}

@keyframes ambientPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Availability badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(241, 167, 63, 0.1);
    border: 1px solid rgba(241, 167, 63, 0.3);
    color: var(--accent-pale);
    padding: 10px 22px;
    border-radius: var(--radius-btn);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    animation: badgeFadeIn 0.8s ease forwards;
}

.availability-badge .badge-dot {
    width: 9px;
    height: 9px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 14px rgba(74, 222, 128, 0.9);
        transform: scale(1.2);
    }
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.subtitle {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
    padding-left: 18px;
    border-left: 3px solid var(--accent);
    animation: subtitleFade 0.9s 0.2s ease both;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: -1px;
    animation: heroH1In 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes heroH1In {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 300;
    line-height: 1.7;
    animation: heroParaIn 1s 0.5s ease both;
}

@keyframes heroParaIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    animation: heroBtnsIn 1s 0.7s ease both;
}

@keyframes heroBtnsIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.hero-background {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 0;
    filter: blur(80px);
    transform: translateY(-50%);
    pointer-events: none;
}

/* ============================================
   WAVE SVG SEPARATOR
   ============================================ */
.wave-separator {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   KEYWORD MARQUEE — CROSSING BANDS ZONE
   ============================================ */

/* Container — height gives room for both bands to show while crossing */
.keywords-zone {
    position: relative;
    height: 200px;
    overflow: hidden;
    /* Soft vertical fade so bands blend into surrounding page */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
}

/* Shared band base: 200vw wide, centered with left 50% + translateX(-50%)
   so rotation never exposes an edge regardless of angle */
.keywords-band {
    position: absolute;
    left: 50%;
    width: 200vw;
    overflow: hidden;
    transform-origin: center center;
}

/* Band 1 (grey) — tilted at exactly +15° */
.keywords-band--1 {
    top: 38%;
    transform: translate(-50%, -50%) rotate(-1deg);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1;
}

/* Band 2 (golden) — 10° less than grey = +5°, always reaches page edges, passes OVER band 1 */
.keywords-band--2 {
    top: 62%;
    transform: translate(-50%, -50%) rotate(3deg);
    background: rgba(16, 10, 2, 0.94);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    z-index: 3;
}

/* Forward scroll */
.keywords-track {
    display: flex;
    width: max-content;
    animation: scrollKeywords 32s linear infinite;
    padding: 18px 0;
    gap: 0;
}

/* Reverse scroll for band 2 */
.keywords-track--reverse {
    animation: scrollKeywordsReverse 26s linear infinite;
}

.keywords-track:hover,
.keywords-track--reverse:hover {
    animation-play-state: paused;
}

@keyframes scrollKeywords {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollKeywordsReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.keyword-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    white-space: nowrap;
    flex-shrink: 0;
}

.keyword-item span {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.keyword-item:hover span {
    color: var(--accent);
}

.keyword-separator {
    width: 5px;
    height: 5px;
    background: var(--accent-warm);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ============================================
   STRATEGIC EDITING SECTION
   ============================================ */
.strategic-section {
    background: var(--bg-dark);
    padding-top: clamp(80px, 10vw, 140px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

.strategic-hook {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

/* Philosophy floating card */
.philosophy-card {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 52px 56px;
    background: linear-gradient(135deg, rgba(20, 14, 4, 0.95) 0%, rgba(12, 10, 6, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 28px;
    box-shadow:
        0 0 0 1px rgba(241, 167, 63, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(193, 96, 0, 0.08);
    animation: philosophyFloat 8s ease-in-out infinite;
    backdrop-filter: blur(12px);
    text-align: center;
}

@keyframes philosophyFloat {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(193, 96, 0, 0.08);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 100px rgba(193, 96, 0, 0.12);
    }
}

.philosophy-icon {
    display: block;
    font-size: 1.4rem;
    color: var(--accent-warm);
    margin-bottom: 24px;
    opacity: 0.7;
    letter-spacing: 4px;
}

.philosophy-card p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 250, 246, 0.82);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.1px;
}

.philosophy-card p strong {
    color: var(--accent);
    font-weight: 600;
}

.strategic-hook h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.35;
    font-weight: 700;
}

.strategic-hook p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dropdown */
.strategic-dropdown {
    margin-bottom: 80px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.strategic-dropdown-header {
    background: var(--bg-elevated);
    padding: 28px 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: 20px;
}

.strategic-dropdown-header:hover,
.strategic-dropdown-header.active {
    background: rgba(241, 167, 63, 0.04);
    border-color: var(--border-gold);
}

.strategic-dropdown-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.dropdown-icon {
    color: var(--accent);
    font-size: 1rem;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.dropdown-icon.rotate {
    transform: rotate(180deg);
}

.strategic-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 32px;
    border-left: 2px solid var(--border-subtle);
    margin-left: 32px;
}

.strategic-dropdown-content.open {
    margin-top: 20px;
}

.pillars-list {
    padding: 0;
    list-style: none;
}

.pillars-list li {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    padding-left: 20px;
    position: relative;
}

.pillars-list li::before {
    content: '▸';
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
}

.pillars-list li strong {
    color: var(--text-primary);
    display: inline;
}

.pillars-list li em {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: rgba(253, 250, 246, 0.5);
    border-left: 2px solid rgba(253, 250, 246, 0.08);
    padding-left: 14px;
    font-size: 0.95rem;
}

/* Relief block */
.strategic-relief {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
    padding: 50px 48px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(241, 167, 63, 0.04), rgba(193, 96, 0, 0.02));
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(193, 96, 0, 0.06), 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.strategic-relief::before {
    content: '✦';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-warm);
    font-size: 1rem;
    opacity: 0.4;
}

.strategic-relief h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

/* Process Section */
.strategic-process {
    margin-bottom: 80px;
}

.process-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.process-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Step Cards — redesigned with large number in background */
.step-card {
    background: var(--bg-elevated);
    padding: 36px 32px 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 167, 63, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(193, 96, 0, 0.06);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(241, 167, 63, 0.06);
    position: absolute;
    top: -10px;
    right: 16px;
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
    font-family: var(--font-display);
    transition: color 0.35s ease;
}

.step-card:hover .step-number {
    color: rgba(241, 167, 63, 0.1);
}

.step-card h4 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 700;
}

.tag-indispensable {
    font-size: 0.68rem;
    background: rgba(241, 167, 63, 0.1);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(241, 167, 63, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Strategic CTA */
.strategic-cta {
    text-align: center;
    background: var(--bg-elevated);
    padding: 60px 48px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    max-width: 860px;
    margin: 0 auto;
}

.strategic-cta p {
    font-size: 1.15rem;
    color: #ddd;
    margin-bottom: 32px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   SECTION: ALTERNATING BACKGROUND
   ============================================ */
.section-alt {
    background: var(--bg-elevated);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
    background: var(--bg-elevated);
    padding-top: clamp(80px, 10vw, 140px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

/* Gold Frame */
.gold-frame {
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: 60px 0;
    background: rgba(253, 250, 246, 0.01);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(193, 96, 0, 0.04);
    overflow: hidden;
}

/* Testimonial carousel */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-carousel-container {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: testimonialScroll 80s linear infinite;
    padding: 16px 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px 36px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    width: 380px;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 40px rgba(193, 96, 0, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 5rem;
    color: rgba(241, 167, 63, 0.06);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.stars {
    margin-bottom: 18px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    line-height: 1.65;
}

.testimonial-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-card .role {
    font-size: 0.78rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    background: var(--bg-dark);
    padding-top: clamp(80px, 10vw, 140px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    gap: 48px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: 64px 56px;
    background: rgba(253, 250, 246, 0.01);
    box-shadow: 0 0 40px rgba(193, 96, 0, 0.04), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.contact-form-container {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.contact-intro-text {
    margin-bottom: 36px;
    text-align: center;
}

.contact-intro-text p {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    background: rgba(253, 250, 246, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 18px 22px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.98rem;
    transition: var(--transition);
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: var(--text-muted);
}

.contact-form textarea:focus,
.contact-form input:focus {
    outline: none;
    border-color: rgba(241, 167, 63, 0.4);
    background: rgba(241, 167, 63, 0.03);
    box-shadow: 0 0 0 3px rgba(241, 167, 63, 0.08);
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
}

/* Contact Divider — horizontal */
.contact-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.social-links a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(253, 250, 246, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Form status */
.form-status {
    margin-top: 20px;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    border: 1px solid transparent;
}

.form-status.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #4ade80;
    border-color: rgba(40, 167, 69, 0.2);
    animation: fadeIn 0.5s ease;
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #f87171;
    border-color: rgba(220, 53, 69, 0.2);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */
.portfolio-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(241, 167, 63, 0.3);
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease-out;
}

.carousel-track.centered {
    justify-content: center;
}

.carousel-slide {
    min-width: calc((100% - 56px) / 3);
    box-sizing: border-box;
}

.nav-btn {
    background: rgba(253, 250, 246, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--accent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn.prev {
    left: -60px;
}

.nav-btn.next {
    right: -60px;
}

.nav-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 18px var(--accent-glow);
}

@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc((100% - 28px) / 2);
    }
}

/* Project Cards */
.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.video-card .card-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    background: #000;
    overflow: hidden;
}

.video-card .card-image img,
.video-card .card-image iframe,
.placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholders */
.tiktok-placeholder {
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.adobe-placeholder {
    background: linear-gradient(135deg, #1a0b00, #3d1e05);
}

.website-placeholder {
    background: linear-gradient(135deg, #050505, #151515);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(253, 250, 246, 0.8);
    gap: 12px;
    z-index: 1;
}

.placeholder-content i {
    font-size: 2.8rem;
    color: var(--accent);
}

.placeholder-content span {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 20px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-primary);
    font-size: 2.8rem;
    opacity: 0.8;
    transition: 0.3s;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card-image:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: var(--accent);
    opacity: 1;
}

.card-image:hover .placeholder-content {
    opacity: 0.5;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--accent);
}

.card-content h3 a:hover {
    color: var(--accent-pale);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 300;
}

.year {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   INFINITE VIDEO CAROUSEL
   ============================================ */
.infinite-video-carousel {
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    overflow: hidden;
    padding: 20px 0;
}

.infinite-video-carousel .carousel-track {
    width: max-content;
    display: flex;
    gap: 28px;
    padding-right: 28px;
    will-change: transform;
}

.infinite-video-carousel .carousel-slide {
    width: 260px;
    min-width: unset;
    flex-shrink: 0;
}

.infinite-video-carousel .project-card {
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    transform-origin: center center;
}

.infinite-video-carousel .project-card.expanded {
    transform: scale(1.12);
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.infinite-video-carousel.video-active .project-card:not(.expanded) {
    opacity: 0.5;
    filter: blur(2px);
    transition: all 0.5s ease;
}

/* ============================================
   TOOLS MARQUEE (About page)
   ============================================ */
.tools-section {
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.tools-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 1180px;
    background: rgba(253, 250, 246, 0.02);
    border-radius: 50px;
    padding: 20px 0;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: source-in;
    border: 1px solid var(--border-subtle);
}

.tools-track {
    display: flex;
    gap: 120px;
    width: max-content;
    animation: scrollRightToLeft 35s linear infinite;
    padding: 10px 0;
    padding-right: 120px;
    align-items: center;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333333%);
    }
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
}

.tool-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.adobe-logo {
    width: 85px;
    height: 85px;
    filter: drop-shadow(0 0 10px rgba(193, 96, 0, 0.3));
    transition: var(--transition);
}

.tool-item:hover .adobe-logo {
    filter: drop-shadow(0 0 22px rgba(241, 167, 63, 0.4));
    transform: scale(1.04);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro .lead {
    margin: 0 auto;
    text-align: left;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

/* Two-column: text | photo */
.about-split-content {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

/* Left text column — golden card */
.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: linear-gradient(160deg, #171208 0%, #111111 100%);
    border: 1px solid var(--border-gold);
    border-top: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 44px 48px;
    box-shadow:
        0 0 0 1px rgba(241, 167, 63, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(193, 96, 0, 0.06);
    position: relative;
}

.about-subtitle {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 6px;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent));
    border-radius: 2px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(253, 250, 246, 0.78);
    margin: 0;
}

/* White bold — important concepts */
.about-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Copper/gold bold — key personal highlights */
.about-text .accent-highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Objective box — stronger copper accent */
.about-objective-box {
    margin-top: 8px;
    background: linear-gradient(135deg, rgba(193, 96, 0, 0.12), rgba(241, 167, 63, 0.06));
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    padding: 18px 24px;
    box-shadow: 0 0 30px rgba(193, 96, 0, 0.08);
}

.about-objective-box p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--accent-pale);
    font-weight: 500;
}

.about-objective-box strong {
    color: var(--accent);
    font-weight: 700;
}

/* Right photo column — centered face-to-face with text */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 100%;
    max-width: 360px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--border-gold);
    border: none;
    transition: var(--transition);
    display: block;
}

.about-visual:hover .profile-photo {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(241, 167, 63, 0.2);
    transform: translateY(-4px);
}

/* Stats */
.about-stats-container {
    display: flex;
    justify-content: center;
}

.about-stats-container .stats {
    margin-top: 0;
    gap: 100px;
}

.stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stats .number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    animation: float 4s ease-in-out infinite;
}

.stats li:nth-child(2) .number {
    animation-delay: 2s;
}

.stats .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* About text */
.about-text .lead {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 400;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================
   PACKS PAGE
   ============================================ */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pack-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 32px;
}

.pack-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.pack-card h3 {
    font-size: 1.7rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.pack-subtitle {
    display: block;
    color: var(--text-secondary);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.pack-description {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 28px;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pack-features li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pack-features li::before {
    content: "▸";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

.pack-features strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 3px;
}

/* ============================================
   GLOBAL HARMONY OVERRIDES
   ============================================ */
.project-card,
.contact-form textarea,
.contact-form input {
    border-color: var(--border-gold);
}

/* ============================================
   ANIMATIONS — SHARED
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc((100% - 28px) / 2);
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .hero {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .hero-content {
        max-width: 100%;
    }

    .availability-badge {
        justify-content: center;
    }

    .subtitle {
        text-align: left;
        display: inline-block;
    }

    .hero-btns,
    .form-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .btn-secondary {
        margin-left: 0 !important;
    }

    .btn,
    .booking-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1050;
        border-left: 1px solid var(--border-gold);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--text-secondary);
    }

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

    .btn-cta-nav {
        margin-top: 8px;
        padding: 14px 36px !important;
        font-size: 1rem !important;
    }

    body.no-scroll {
        overflow: hidden;
    }

    /* Sections */
    .process-grid {
        grid-template-columns: 1fr;
    }

    .strategic-hook h3 {
        font-size: 1.4rem;
    }

    .strategic-relief {
        padding: 32px 24px;
    }

    .strategic-cta {
        padding: 40px 24px;
    }

    /* Testimonials */
    .testimonial-card {
        width: 300px;
        padding: 28px 24px;
    }

    .gold-frame {
        padding: 40px 0;
    }

    /* Contact */
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 28px;
    }

    .contact-divider {
        width: 100%;
        min-height: 1px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--border-gold), transparent);
    }

    .contact-direct {
        align-items: center;
        text-align: center;
    }

    .contact-intro-text p {
        font-size: 1.3rem;
    }

    /* Infinite carousel */
    .infinite-video-carousel {
        mask-image: none;
        -webkit-mask-image: none;
        padding: 0 40px;
        position: relative;
    }

    .infinite-video-carousel .carousel-track {
        width: 100%;
        gap: 28px;
        padding-right: 0;
        will-change: auto;
        transition: transform 0.5s ease-out;
    }

    .infinite-video-carousel .carousel-slide {
        min-width: 100%;
        width: 100%;
    }

    .infinite-video-carousel .nav-btn {
        display: flex;
    }

    .infinite-video-carousel .nav-btn.prev {
        left: 0;
    }

    .infinite-video-carousel .nav-btn.next {
        right: 0;
    }

    .infinite-video-carousel .project-card {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Carousel buttons */
    .carousel-slide {
        min-width: 100%;
    }

    .carousel-container {
        padding: 0 48px;
    }

    .nav-btn.prev {
        left: 0;
    }

    .nav-btn.next {
        right: 0;
    }

    .project-card {
        max-width: 320px;
        margin: 0 auto;
    }

    /* About */
    .about-split-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-text-col {
        order: 2;
    }

    .about-visual {
        order: 1;
        position: static;
        justify-content: center;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0;
    }

    .about-list {
        margin-top: 20px;
        text-align: left;
    }

    .about-stats-container .stats {
        gap: 40px;
        flex-direction: row;
    }

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

    /* Packs */
    .packs-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .infinite-video-carousel .nav-btn {
        display: none;
    }
}