:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --secondary: #FFBF00;
    --cta: #D4AF37;
    --cta-dark: #B8860B;
    --bg: #FFFFFF;
    --bg-soft: #F1F5F9;
    --surface: #F8FAFC;
    --text: #0F172A;
    --text-muted: #475569;
    --text-subtle: #64748B;
    --border: rgba(212, 175, 55, 0.15);
    --border-strong: rgba(212, 175, 55, 0.25);
    --glow-primary: rgba(214, 175, 55, 0.1);
    --glow-cta: rgba(255, 191, 0, 0.1);
    --grad: linear-gradient(135deg, #D4AF37, #FFD700, #FF8C00);
    --grad-gold: linear-gradient(135deg, #D4AF37, #FFD700, #FFBF00);
    --tr: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', 'DM Sans', sans-serif;
}

.dark-mode {
    --bg: #0B0B0F;
    --bg-soft: #111827;
    --surface: #0F172A;
    --text: #FFFFFF;
    --text-muted: #CBD5E1;
    --text-subtle: #94A3B8;
    --border: rgba(212, 175, 55, 0.08);
    --border-strong: rgba(212, 175, 55, 0.15);
    --glow-primary: rgba(214, 175, 55, 0.25);
    --glow-cta: rgba(255, 191, 0, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.025;
    pointer-events: none;
    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");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.dark-mode .noise-overlay {
    opacity: 0.04;
}

.gradient-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.25));
    display: inline-block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

/* .section-top.text-center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
} */

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 500px;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--text);
}

h2 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text);
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

p {
    color: var(--text-muted);
    line-height: 1.7;
}

section {
    padding: 140px 0;
}

nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 4rem);
    max-width: 1200px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.85);
    /* Default Light Luxury Nav */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 0.85rem 1.5rem;
    transition: var(--tr);
}

.dark-mode .nav-inner {
    background: rgba(11, 11, 15, 0.85);
    /* Dark Luxury Nav */
}

.dark-mode .nav-inner {
    background: rgba(11, 11, 15, 0.85);
    /* Dark Luxury Nav */
}



.nav-center {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: var(--text);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-strong);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#theme-toggle {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}

#theme-toggle:hover {
    color: var(--text);
    border-color: var(--primary);
}

#theme-toggle svg {
    width: 18px;
    height: 18px;
}

.sun {
    display: none;
}

.moon {
    display: block;
}

.dark-mode .moon {
    display: none;
}

.dark-mode .sun {
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 0.75rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border: none;
    margin-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    white-space: normal;
    text-align: center;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 1.05rem 2.5rem;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--grad-gold);
    color: #000;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px var(--glow-primary);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg);
}

.btn-primary:hover::after {
    left: 150%;
    transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-cta {
    background: var(--grad-gold);
    color: #000;
    font-weight: 800;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px var(--glow-cta);
    opacity: 0.9;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

#discord-btn svg {
    width: 24px;
    height: 24px;
    transition: var(--tr);
}

#discord-btn .d-circle {
    fill: var(--primary);
}

#discord-btn .d-path {
    fill: #000;
}

#discord-btn:hover {
    background: #FFFFFF;
}

#discord-btn:hover .d-circle {
    fill: #000;
}

#discord-btn:hover .d-path {
    fill: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.hero-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 40%, transparent 70%);
    pointer-events: none;
}

.hero-wrap {
    position: relative;
    z-index: 1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(214, 175, 55, 0.08);
    /* Gold hint */
    border: 1px solid rgba(214, 175, 55, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.pill-dot {
    width: 7px;
    height: 7px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

#hero h1 {
    max-width: 900px;
    margin: 0 auto 1.75rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 1.75rem 3rem;
}

.hero-stat {
    display: flex;
    align-items: center;
}

.hero-stat strong {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -1px;
}

.hero-stat strong+span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-left: 2px;
    margin-right: 0.75rem;
}

.hero-stat p {
    font-size: 0.82rem;
    color: var(--text-subtle);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: left;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-strong);
}

.marquee-track {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    background: var(--bg-soft);
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

#about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-left h2 {
    margin-bottom: 1.5rem;
}

.about-left p {
    margin-bottom: 1rem;
}

.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--tr);
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.bento-large {
    grid-column: 1 / 3;
}

.bento-wide {
    grid-column: 1 / 3;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bento-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.bento-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bento-card p {
    font-size: 0.9rem;
}

.bento-number {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-card>p {
    font-size: 0.8rem;
    color: var(--text-subtle);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

#works {
    background: var(--bg-soft);
}

.works-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.work-card {
    align-self: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--tr);
    cursor: pointer;
}

.work-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.work-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.work-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.local-v-thumb {
    background: #000;
}

.local-v-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card:hover .work-thumb {
    transform: scale(1.06);
}

.work-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.work-play svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.work-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.work-card:hover .work-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-info {
    padding: 1.25rem;
}

.work-info p {
    display: none;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-info h3 {
    margin-bottom: 0.5rem;
}

.work-info p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.work-stats-row {
    display: flex;
    gap: 1.5rem;
}

.work-stat-item {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

#services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.svc-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.svc-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

.svc-tall {
    grid-row: span 2;
}

.svc-wide {
    grid-column: span 2;
}

.svc-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
}

.svc-icon-sm {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.svc-icon-sm svg {
    width: 20px;
    height: 20px;
}

.svc-card h3 {
    margin-bottom: 0.75rem;
}

.svc-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.svc-tag {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.35rem 0.85rem;
    background: var(--primary);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#reviews {
    background: var(--bg-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.25rem;
    transition: var(--tr);
}

.review-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-4px);
}

.stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.review-card>p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

#pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: var(--tr);
    transform-style: preserve-3d;
}

.pricing-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--surface) 100%);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3), 0 30px 60px -15px rgba(99, 102, 241, 0.15);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 2rem;
}

.tier-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-header>p {
    font-size: 0.9rem;
    color: var(--text-subtle);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

#faq {
    background: var(--bg-soft);
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.faq-left h2 {
    margin-bottom: 1.25rem;
}

.faq-left p {
    font-size: 1rem;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.75;
}

#contact {
    background: var(--bg);
}

.contact-cta {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 5rem;
    overflow: hidden;
    text-align: center;
}

.contact-cta-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.contact-cta-inner {
    position: relative;
    z-index: 1;
}

.contact-cta-inner .section-label {
    margin-bottom: 1.25rem;
}

.contact-cta-inner h2 {
    margin-bottom: 1.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-inner>p {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-form-inline {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form-inline input,
.contact-form-inline textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    color: var(--text);
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    margin-bottom: 1rem;
    display: block;
}

.contact-form-inline input:focus,
.contact-form-inline textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form-inline input::placeholder,
.contact-form-inline textarea::placeholder {
    color: var(--text-subtle);
}

footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}

.footer-body {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 38px;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand>p {
    font-size: 0.9rem;
    color: var(--text-subtle);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--tr);
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--text-subtle);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 450px;
}

.modal-close {
    position: absolute;
    top: -56px;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

#video-frame-container iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    border: none;
    box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.9);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.legal-page {
    padding-top: 200px;
}

.legal-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.legal-header h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.legal-header p {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.legal-content {
    padding-bottom: 120px;
}

.legal-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    border-radius: 40px;
    padding: 5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--grad-gold);
}

.policy-body h3 {
    margin: 3.5rem 0 1.25rem;
    font-size: 1.75rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.policy-body h3::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: var(--grad-gold);
    border-radius: 4px;
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--glow-primary);
}

.policy-body p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.policy-body ul {
    list-style: none;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.policy-body li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .legal-card {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 140px;
    }
    
    .legal-header h1 {
        font-size: 3.5rem;
    }
    
    .legal-card {
        padding: 3rem 1.5rem;
        border-radius: 32px;
    }
    
    .policy-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 3.25rem;
    }

    .hero-stat strong {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-stats {
        gap: 2rem;
        padding: 1.5rem 2rem;
    }

    .footer-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    h2 {
        font-size: 2.75rem;
        letter-spacing: -1px;
    }

    .nav-center {
        display: none;
    }

    .nav-brand {
        font-size: 1.15rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-around;
        padding: 1.5rem;
        gap: 1rem;
    }

    .hero-stat strong {
        font-size: 1.75rem;
    }

    .hero-stat p {
        font-size: 0.75rem;
    }

    .reviews-grid,
    .pricing-grid,
    .services-grid,
    .about-bento {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .svc-tall,
    .svc-wide,
    .bento-large,
    .bento-wide {
        grid-row: auto !important;
        grid-column: auto !important;
    }

    .bento-card,
    .svc-card,
    .review-card,
    .pricing-card {
        padding: 2rem 1.5rem !important;
    }

    .work-thumb {
        aspect-ratio: 9 / 16;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    nav {
        width: calc(100% - 2rem);
        top: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .bento-card,
    .svc-card,
    .review-card,
    .pricing-card {
        padding: 1.5rem 1.25rem !important;
    }

    .svc-icon {
        margin-bottom: 1rem;
    }

    .svc-card h3 {
        margin-bottom: 0.5rem;
    }

    .work-thumb {
        aspect-ratio: 9 / 16;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .nav-inner {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .nav-logo {
        gap: 0.4rem;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }

    .nav-brand {
        display: none;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    #theme-toggle {
        width: 32px;
        height: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}