/* ========================================
   FlickNine — Premium Video Editing Agency
   Black & Yellow | Apple-style Animations
   ======================================== */

:root {
    --gold: #FFD60A;
    --gold-dark: #B89A00;
    --gold-light: #FFE566;
    --black: #000000;
    --dark-1: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --gray-1: #333333;
    --gray-2: #666666;
    --gray-3: #999999;
    --gray-4: #CCCCCC;
    --white: #F5F5F7;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.text-gold {
    color: var(--gold);
}

/* ========================================
   Cursor Glow
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.preloader-flick {
    color: var(--white);
}

.preloader-nine {
    color: var(--gold);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 214, 10, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo, .footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-flick { color: var(--white); }
.logo-nine { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-3);
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    transition: all 0.3s var(--ease-out-expo);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-3);
    transition: color 0.3s;
}

.mobile-link:hover, .mobile-link.cta {
    color: var(--gold);
}

/* ========================================
   Hero — CSS Entrance Animations
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 214, 10, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 214, 10, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255, 214, 10, 0.03) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 214, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 214, 10, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* Hero elements: hidden by default, animated when .animate class is added */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 214, 10, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

.hero.animate .hero-badge {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.1s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
}

.title-word {
    display: inline-block;
    transform: translateY(105%);
    transition: none;
}

.hero.animate .title-line:nth-child(1) .title-word {
    animation: titleReveal 1s var(--ease-out-expo) 0.3s forwards;
}
.hero.animate .title-line:nth-child(2) .title-word {
    animation: titleReveal 1s var(--ease-out-expo) 0.45s forwards;
}
.hero.animate .title-line:nth-child(3) .title-word {
    animation: titleReveal 1s var(--ease-out-expo) 0.6s forwards;
}

@keyframes titleReveal {
    to {
        transform: translateY(0);
    }
}

.title-highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--gray-3);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
}

.hero.animate .hero-sub {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
}

.hero.animate .hero-actions {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.85s forwards;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 214, 10, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-1);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 6vw, 80px);
    opacity: 0;
    transform: translateY(30px);
}

.hero.animate .hero-stats {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 1s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-2);
    margin-top: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero.animate .hero-scroll {
    animation: fadeIn 0.8s var(--ease-out-expo) 1.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 0.6; }
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-2);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Marquee
   ======================================== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 214, 10, 0.08);
    border-bottom: 1px solid rgba(255, 214, 10, 0.08);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    background: var(--gold) !important;
    border-radius: 50%;
    display: inline-block;
}

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

/* ========================================
   Reel Section
   ======================================== */
.reel {
    padding: 160px 0;
}

.reel-content {
    text-align: center;
    margin-bottom: 60px;
}

.reel-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.reel-player {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.reel-screen {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-2);
    border: 1px solid rgba(255, 214, 10, 0.1);
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
}

.reel-screen:hover {
    border-color: rgba(255, 214, 10, 0.3);
    box-shadow: 0 0 80px rgba(255, 214, 10, 0.08);
    transform: scale(1.01);
}

.reel-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 50%, #1a1700 100%);
}

.reel-placeholder svg {
    transition: transform 0.5s var(--ease-out-expo);
}

.reel-screen:hover .reel-placeholder svg {
    transform: scale(1.1);
}

.reel-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.reel-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========================================
   Section Shared Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 214, 10, 0.2);
    border-radius: 100px;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-3);
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ========================================
   Work Grid
   ======================================== */
.work {
    padding: 160px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.work-item-large {
    grid-column: span 2;
}

.work-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.work-item:not(.work-item-large):not(.work-item-vertical) .work-thumb {
    aspect-ratio: 4 / 3;
}

.work-item-vertical .work-thumb {
    aspect-ratio: 9 / 16;
}

.work-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.work-placeholder span {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 214, 10, 0.06);
}

.work-thumb:hover .work-placeholder {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.work-thumb:hover .work-overlay {
    opacity: 1;
}

.work-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.work-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.work-desc {
    font-size: 0.875rem;
    color: var(--gray-3);
}

.work-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s var(--ease-out-expo);
}

.work-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

/* ========================================
   Services
   ======================================== */
.services {
    padding: 160px 0;
    background: var(--dark-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 48px 36px;
    border-radius: 16px;
    border: 1px solid var(--dark-3);
    background: var(--dark-2);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 214, 10, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    border-color: rgba(255, 214, 10, 0.2);
    transform: translateY(-4px);
}

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

.service-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-2);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    position: relative;
}

.service-icon {
    margin-bottom: 24px;
    position: relative;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-2);
    line-height: 1.7;
    position: relative;
}

/* ========================================
   Big Text Parallax
   ======================================== */
.big-text-section {
    padding: 120px 0;
    overflow: hidden;
}

.big-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.big-text-line {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

.big-text-line span {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gold);
    flex-shrink: 0;
}

.big-text-outline {
    color: transparent !important;
    -webkit-text-stroke: 2px var(--gold);
}

/* ========================================
   Process
   ======================================== */
.process {
    padding: 160px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-3);
}

.process-line-fill {
    width: 100%;
    height: 0%;
    background: var(--gold);
    transition: height 0.1s linear;
}

.process-step {
    position: relative;
    padding-left: 60px;
    padding-bottom: 60px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-dot {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--dark-3);
    background: var(--black);
    transition: all 0.5s var(--ease-out-expo);
    z-index: 1;
}

.process-step.active .process-dot {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.process-card {
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--dark-3);
    background: var(--dark-2);
    transition: all 0.5s var(--ease-out-expo);
}

.process-step.active .process-card {
    border-color: rgba(255, 214, 10, 0.2);
}

.process-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--gray-2);
    line-height: 1.7;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 160px 0;
    background: var(--dark-1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--dark-3);
    background: var(--dark-2);
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: rgba(255, 214, 10, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-4);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-2);
}

/* ========================================
   About
   ======================================== */
.about {
    padding: 160px 0;
}

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

.about-left .section-label {
    display: inline-block;
}

.about-left .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-3);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-awards {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--dark-3);
}

.award-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.award-label {
    font-size: 0.8rem;
    color: var(--gray-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 214, 10, 0.06) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--gray-3);
    margin-bottom: 48px;
}

.cta-actions {
    margin-bottom: 48px;
}

.cta-links {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.cta-links a {
    font-size: 0.875rem;
    color: var(--gray-2);
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

.cta-links a:hover {
    color: var(--gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--dark-3);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray-2);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-2);
    transition: color 0.3s;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

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

    .work-item-large {
        grid-column: span 1;
    }

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

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

    .about-left .section-title {
        text-align: left;
    }

    .about-awards {
        gap: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-awards {
        flex-direction: column;
        gap: 20px;
    }
}
