:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --accent: #c8ff00;
    --accent-dim: #a5d600;
    --accent-glow: rgba(200, 255, 0, 0.15);
    --text-primary: #f0f0f5;
    --text-secondary: #9999ab;
    --text-muted: #666678;
    --border: #2a2a38;
    --border-light: #3a3a4a;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--bg-primary); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* LOADER */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-bar {
    width: 120px; height: 3px; background: var(--border);
    border-radius: 2px; overflow: hidden; position: relative;
}
.loader-bar::after {
    content: ''; position: absolute; inset: 0;
    background: var(--accent); animation: loaderSlide 1.2s ease infinite;
}
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.loader-text {
    font-family: var(--font-display); font-size: 14px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--text-muted);
}

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

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: var(--transition); backdrop-filter: blur(0px);
}
.nav.scrolled {
    padding: 12px 0; background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    font-family: var(--font-display); font-weight: 800;
    font-size: 22px; letter-spacing: -0.5px;
    display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition-fast); letter-spacing: 0.3px; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: var(--transition-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-family: var(--font-display); font-weight: 600;
    font-size: 14px; padding: 10px 24px; border-radius: 50px;
    background: var(--accent); color: var(--bg-primary);
    cursor: pointer; transition: var(--transition); letter-spacing: 0.3px;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px var(--accent-glow); }
.nav-menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
.nav-menu-btn span { width: 28px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 1px; }
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10, 10, 15, 0.97); backdrop-filter: blur(30px);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 32px;
    opacity: 0; visibility: hidden; pointer-events: none; transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav a {
    font-family: var(--font-display); font-size: 32px; font-weight: 700;
    color: var(--text-secondary); transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 140px 0 100px; overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(200,255,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,255,0,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 60%);
    border-radius: 50%; z-index: 0; animation: heroGlow 6s ease infinite alternate;
}
@keyframes heroGlow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-40px, 40px) scale(1.1); } }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 820px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 50px;
    background: var(--bg-card); border: 1px solid var(--border);
    font-size: 13px; color: var(--text-secondary); font-weight: 500;
    margin-bottom: 32px;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-badge .status {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease infinite;
}
.hero-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(42px, 6vw, 80px); line-height: 1.05;
    letter-spacing: -2px; margin-bottom: 28px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title .accent { color: var(--accent); }
.hero-title .outline { -webkit-text-stroke: 1.5px var(--text-primary); color: transparent; }
.hero-sub {
    font-size: 18px; color: var(--text-secondary); max-width: 560px;
    line-height: 1.7; margin-bottom: 48px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-form-wrapper {
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease 0.9s forwards;
}

/* HERO QUICK FORM */
.quick-form {
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.quick-form input[type="text"],
.quick-form input[type="email"],
.quick-form input[type="tel"] {
    flex: 1; min-width: 180px;
    padding: 16px 20px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); font-size: 15px; transition: var(--transition);
}
.quick-form input::placeholder { color: var(--text-muted); }
.quick-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.quick-form-contact-pref {
    display: flex; align-items: center; gap: 16px; flex-basis: 100%;
    padding: 14px 20px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border);
}
.pref-label { font-size: 14px; color: var(--text-muted); white-space: nowrap; margin-right: 4px; }
.pref-option {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: 14px; color: var(--text-secondary); transition: var(--transition-fast);
}
.pref-option:hover { color: var(--text-primary); }
.pref-option input { display: none; }
.pref-radio {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid var(--border); position: relative;
    transition: var(--transition-fast); flex-shrink: 0;
}
.pref-radio::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%;
    background: var(--accent); transform: scale(0); transition: var(--transition-fast);
}
.pref-option input:checked ~ .pref-radio { border-color: var(--accent); }
.pref-option input:checked ~ .pref-radio::after { transform: scale(1); }
.quick-form button {
    padding: 16px 36px; border-radius: var(--radius-sm);
    background: var(--accent); color: var(--bg-primary);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    cursor: pointer; transition: var(--transition); white-space: nowrap; letter-spacing: 0.3px;
}
.quick-form button:hover {
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,255,0,0.25);
}

.hero-stats {
    display: flex; gap: 48px; margin-top: 64px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 36px; color: var(--accent); line-height: 1;
    min-width: 64px; min-height: 36px;
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; letter-spacing: 0.5px; }

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

/* ========================================
   PORTFOLIO CAROUSEL
   ======================================== */
.pf-carousel-wrapper { position: relative; margin-top: 48px; }
.pf-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid var(--border); background: rgba(15,15,23,0.85);
    backdrop-filter: blur(12px); color: var(--text-primary);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.pf-nav-btn:hover {
    background: var(--accent); border-color: var(--accent); color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow); transform: translateY(-50%) scale(1.1);
}
.pf-nav-btn svg { width: 20px; height: 20px; }
.pf-prev { left: 16px; }
.pf-next { right: 16px; }

.pf-track-container { overflow: hidden; padding: 16px 0 32px; cursor: grab; }
.pf-track-container:active { cursor: grabbing; }
.pf-track {
    display: flex; gap: 24px; padding: 0 60px;
    transition: transform 0.55s cubic-bezier(0.23,1,0.32,1); will-change: transform;
}

/* Card */
.pf-card {
    flex: 0 0 380px; min-width: 0; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden; transition: var(--transition); position: relative;
}
.pf-card:hover {
    border-color: rgba(200,255,0,0.25); background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 60px var(--accent-glow);
}

/* Card image */
.pf-card-img-wrap { position: relative; height: 280px; overflow: hidden; }
.pf-card-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 6s cubic-bezier(0.23,1,0.32,1);
    filter: brightness(0.88) saturate(1.05);
}
.pf-card:hover .pf-card-img {
    transform: translateY(calc(-100% + 280px));
    filter: brightness(1) saturate(1.1);
}
.pf-card-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px; background: linear-gradient(transparent, var(--bg-card));
    z-index: 1; pointer-events: none;
}

/* Badge */
.pf-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    padding: 4px 12px; border-radius: 50px;
    font-family: var(--font-display); font-size: 10px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; color: var(--bg-primary);
    backdrop-filter: blur(8px); opacity: 0; transform: translateY(-6px);
    transition: all 0.3s ease 0.05s;
}
.pf-card:hover .pf-badge { opacity: 1; transform: translateY(0); }
.pf-badge-wp { background: rgba(59,130,246,0.85); color: #fff; }
.pf-badge-custom { background: rgba(200,255,0,0.85); }
.pf-badge-landing { background: rgba(168,85,247,0.85); color: #fff; }
.pf-badge-ecom { background: rgba(6,182,212,0.85); color: #fff; }

/* Card body */
.pf-card-body { padding: 20px 22px 24px; position: relative; z-index: 2; }
.pf-card-cat {
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.pf-card-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    line-height: 1.3; margin-bottom: 8px; transition: color 0.3s; letter-spacing: -0.3px;
}
.pf-card:hover .pf-card-title { color: var(--accent); }
.pf-card-desc {
    font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pf-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.pf-tag {
    padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 500;
    background: rgba(200,255,0,0.1); color: var(--accent);
    border: 1px solid rgba(200,255,0,0.12);
}
.pf-card-foot {
    display: flex; align-items: center; justify-content: flex-end;
    padding-top: 12px; border-top: 1px solid var(--border);
}
.pf-year { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* Dots */
.pf-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.pf-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted);
    border: none; cursor: pointer; transition: all 0.4s ease; padding: 0;
}
.pf-dot.active {
    width: 32px; border-radius: 50px; background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* Lightbox */
.pf-lightbox {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.pf-lightbox.open { opacity: 1; pointer-events: all; }
.pf-lb-inner {
    max-width: 92vw; max-height: 92vh; border-radius: 14px;
    overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transform: scale(0.92) translateY(16px);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1); position: relative;
}
.pf-lightbox.open .pf-lb-inner { transform: scale(1) translateY(0); }
.pf-lb-img { display: block; max-width: 100%; max-height: 88vh; object-fit: contain; }
.pf-lb-close {
    position: absolute; top: 12px; right: 12px; width: 40px; height: 40px;
    border-radius: 50%; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 18px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
}
.pf-lb-close:hover { background: var(--accent); color: var(--bg-primary); transform: rotate(90deg); }

@media (max-width: 900px) {
    .pf-card { flex: 0 0 320px; }
    .pf-card-img-wrap { height: 240px; }
    .pf-card:hover .pf-card-img { transform: translateY(calc(-100% + 240px)); }
    .pf-nav-btn { width: 42px; height: 42px; }
    .pf-prev { left: 8px; }
    .pf-next { right: 8px; }
    .pf-track { padding: 0 40px; gap: 18px; }
}
@media (max-width: 560px) {
    .pf-card { flex: 0 0 280px; }
    .pf-card-img-wrap { height: 210px; }
    .pf-card:hover .pf-card-img { transform: translateY(calc(-100% + 210px)); }
    .pf-track { padding: 0 24px; gap: 14px; }
}

/* MARQUEE */
.marquee-section {
    padding: 40px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); overflow: hidden; position: relative;
}
.marquee-track { display: flex; gap: 60px; animation: marqueeScroll 30s linear infinite; width: max-content; }
.marquee-item {
    font-family: var(--font-display); font-size: 18px; font-weight: 600;
    white-space: nowrap; color: var(--text-muted);
    display: flex; align-items: center; gap: 16px;
}
.marquee-item .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.5; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICES */
.services-header { text-align: center; margin-bottom: 72px; }
.section-label {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(32px, 4vw, 52px); line-height: 1.15; letter-spacing: -1.5px;
}
.section-subtitle {
    font-size: 17px; color: var(--text-secondary); max-width: 640px;
    margin: 20px auto 0; line-height: 1.7;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 0;
    position: relative; overflow: hidden;
    transition: var(--transition); cursor: default;
    display: flex; flex-direction: column;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover {
    border-color: var(--border-light); background: var(--bg-card-hover);
    transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:nth-child(2) {
    border-color: var(--accent); box-shadow: 0 0 40px var(--accent-glow);
}
.service-card:nth-child(2) .service-popular { display: block; }
.service-popular {
    display: none; position: absolute; top: 20px; right: 20px;
    background: var(--accent); color: var(--bg-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 11px; padding: 5px 14px; border-radius: 50px;
    letter-spacing: 1px; text-transform: uppercase; z-index: 2;
}
.service-visual { padding: 36px 36px 0; position: relative; }
.service-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.service-icon-box {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(200,255,0,0.08); border: 1px solid rgba(200,255,0,0.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon-box svg { width: 24px; height: 24px; }
.service-number {
    font-family: var(--font-display); font-weight: 800;
    font-size: 14px; color: var(--text-muted); letter-spacing: 2px;
}
.service-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 26px; margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2;
}
.service-tagline {
    font-size: 14px; color: var(--accent); font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.service-tagline::before {
    content: ''; width: 20px; height: 2px; background: var(--accent); flex-shrink: 0;
}
.service-desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 0; line-height: 1.7; }
.service-body { padding: 24px 36px; flex: 1; display: flex; flex-direction: column; }
.service-price {
    font-family: var(--font-display); font-weight: 800;
    font-size: 32px; color: var(--accent); margin-bottom: 24px;
}
.service-price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.service-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.service-feature {
    display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-secondary);
}
.service-feature .check {
    width: 22px; height: 22px; border-radius: 6px;
    background: rgba(200,255,0,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.service-feature strong { color: var(--text-primary); font-weight: 600; }
.service-divider { height: 1px; background: var(--border); margin: 0 36px; }
.service-footer { padding: 24px 36px 36px; margin-top: auto; }
.service-btn {
    display: block; width: 100%; padding: 16px; text-align: center;
    border-radius: var(--radius-sm); font-family: var(--font-display);
    font-weight: 700; font-size: 15px;
    border: 1px solid var(--border); color: var(--text-primary);
    transition: var(--transition); cursor: pointer;
}
.service-btn:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.service-card:nth-child(2) .service-btn { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.service-card:nth-child(2) .service-btn:hover { background: var(--accent-dim); box-shadow: 0 8px 30px rgba(200,255,0,0.25); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.why-card {
    padding: 36px 28px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: var(--transition); position: relative; overflow: hidden;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(200,255,0,0.08); display: flex;
    align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px;
}
.why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 10px; letter-spacing: -0.3px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; }
.process-step { padding: 40px 32px; position: relative; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.process-step-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 64px; color: var(--accent); opacity: 0.15; line-height: 1; margin-bottom: 20px;
}
.process-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 12px; letter-spacing: -0.3px; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* PORTFOLIO — old marquee removed, using carousel now */

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; color: var(--bg-primary); font-size: 16px;
}
.testimonial-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq-grid { max-width: 780px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; cursor: pointer; gap: 16px; transition: var(--transition-fast);
}
.faq-question:hover { color: var(--accent); }
.faq-question h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.3px; }
.faq-toggle {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--border); display: flex;
    align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0; transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* CONTACT */
.contact-section { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(32px, 4vw, 48px); line-height: 1.1;
    letter-spacing: -1.5px; margin-bottom: 24px;
}
.contact-info h2 .accent { color: var(--accent); }
.contact-info p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(200,255,0,0.08); display: flex;
    align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-detail-text { font-size: 15px; }
.contact-detail-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }

.contact-form-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 44px;
}
.contact-form-box h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-form-box .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-xs);
    background: var(--bg-secondary); border: 1px solid var(--border);
    color: var(--text-primary); font-size: 15px; transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239999ab' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact form radio group */
.form-radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.form-radio-option {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: 14px; color: var(--text-secondary); transition: var(--transition-fast);
    padding: 10px 18px; border-radius: var(--radius-xs);
    border: 1px solid var(--border); background: var(--bg-secondary);
}
.form-radio-option:hover { border-color: var(--border-light); color: var(--text-primary); }
.form-radio-option input { display: none; }
.form-radio-dot {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid var(--border); position: relative;
    transition: var(--transition-fast); flex-shrink: 0;
}
.form-radio-dot::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%;
    background: var(--accent); transform: scale(0); transition: var(--transition-fast);
}
.form-radio-option input:checked ~ .form-radio-dot { border-color: var(--accent); }
.form-radio-option input:checked ~ .form-radio-dot::after { transform: scale(1); }
.form-radio-option:has(input:checked) { border-color: var(--accent); background: rgba(200,255,0,0.05); color: var(--text-primary); }

.form-submit {
    width: 100%; padding: 16px; border-radius: var(--radius-sm);
    background: var(--accent); color: var(--bg-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 16px; cursor: pointer; transition: var(--transition);
    margin-top: 8px; letter-spacing: 0.3px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,255,0,0.25); }

/* FOOTER */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.footer-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent); }

/* ========================================
   PORTFOLIO CAROUSEL
   ======================================== */
.pf-carousel-wrapper {
    position: relative;
    padding: 0;
}
.pf-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(22, 22, 31, 0.9);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.pf-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-50%) scale(1.1);
}
.pf-nav-btn svg { width: 20px; height: 20px; }
.pf-prev { left: 16px; }
.pf-next { right: 16px; }

.pf-track-container {
    overflow: hidden;
    padding: 20px 0 40px;
    cursor: grab;
}
.pf-track-container:active { cursor: grabbing; }

.pf-track {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    transition: transform .55s cubic-bezier(.23,1,.32,1);
    will-change: transform;
}

/* Card */
.pf-card {
    flex: 0 0 380px;
    min-width: 0;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.pf-card:hover {
    border-color: rgba(200, 255, 0, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 60px var(--accent-glow);
}

/* Card image */
.pf-card-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.pf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 7s cubic-bezier(.23,1,.32,1);
    filter: brightness(.88) saturate(1.05);
}
.pf-card:hover .pf-card-img {
    transform: translateY(calc(-100% + 280px));
    filter: brightness(1) saturate(1.1);
}
.pf-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-card));
    z-index: 1;
    pointer-events: none;
}

/* Badge */
.pf-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(-8px);
    transition: all .35s ease .08s;
}
.pf-card:hover .pf-badge {
    opacity: 1;
    transform: translateY(0);
}
.pf-badge-wp { background: rgba(200, 255, 0, 0.65); color: var(--bg-primary); }
.pf-badge-custom { background: rgba(200, 255, 0, 0.8); color: var(--bg-primary); }
.pf-badge-landing { background: rgba(200, 255, 0, 0.55); color: var(--bg-primary); }
.pf-badge-ecom { background: rgba(200, 255, 0, 0.7); color: var(--bg-primary); }

/* Card body */
.pf-card-body {
    padding: 20px 24px 24px;
    position: relative;
    z-index: 2;
}
.pf-card-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.pf-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color .3s;
    letter-spacing: -0.3px;
}
.pf-card:hover .pf-card-title { color: var(--accent); }
.pf-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.pf-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.pf-tag {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
    background: rgba(200, 255, 0, 0.08);
    color: var(--accent);
    border: 1px solid rgba(200, 255, 0, 0.12);
}

/* Card footer */
.pf-card-foot {
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pf-year {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Dots */
.pf-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.pf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all .4s ease;
    padding: 0;
}
.pf-dot.active {
    width: 32px;
    border-radius: 50px;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* Lightbox */
.pf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}
.pf-lightbox.open { opacity: 1; pointer-events: all; }
.pf-lb-inner {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    transform: scale(.92) translateY(16px);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
    position: relative;
}
.pf-lightbox.open .pf-lb-inner { transform: scale(1) translateY(0); }
.pf-lb-img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
}
.pf-lb-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}
.pf-lb-close:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

/* Portfolio responsive */
@media (max-width: 1024px) {
    .pf-card { flex: 0 0 340px; }
    .pf-card-img-wrap { height: 250px; }
    .pf-card:hover .pf-card-img { transform: translateY(calc(-100% + 250px)); }
    .pf-track { padding: 0 40px; }
}
@media (max-width: 768px) {
    .pf-card { flex: 0 0 300px; }
    .pf-card-img-wrap { height: 220px; }
    .pf-card:hover .pf-card-img { transform: translateY(calc(-100% + 220px)); }
    .pf-track { padding: 0 24px; gap: 16px; }
    .pf-nav-btn { width: 42px; height: 42px; }
    .pf-prev { left: 8px; }
    .pf-next { right: 8px; }
}
@media (max-width: 480px) {
    .pf-card { flex: 0 0 270px; }
    .pf-card-img-wrap { height: 200px; }
    .pf-card:hover .pf-card-img { transform: translateY(calc(-100% + 200px)); }
    .pf-track { padding: 0 16px; gap: 12px; }
}

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* FORM SUCCESS TOAST */
.toast {
    position: fixed; bottom: 32px; right: 32px; z-index: 10000;
    padding: 18px 28px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--accent);
    color: var(--text-primary); font-size: 15px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    transform: translateY(120%); opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { color: var(--accent); margin-right: 10px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { border-right: none; border-bottom: 1px solid var(--border); }
    .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
    .process-step:nth-last-child(-n+2) { border-bottom: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 64px auto 0; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { gap: 32px; }

}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .nav-cta { display: none; }
    .hero { padding: 120px 0 80px; }
    .hero-title { letter-spacing: -1px; }
    .quick-form { flex-direction: column; }
    .quick-form input[type="text"], .quick-form input[type="email"], .quick-form input[type="tel"] { min-width: unset; width: 100%; }
    .quick-form-contact-pref { flex-wrap: wrap; width: 100%; }
    .quick-form button { width: 100%; }
    .hero-stats { flex-direction: row; gap: 24px; justify-content: space-between; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { border-right: none !important; border-bottom: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 28px; }
    .footer .container { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .cursor-glow { display: none; }

    .service-visual { padding: 28px 24px 0; }
    .service-body { padding: 20px 24px; }
    .service-divider { margin: 0 24px; }
    .service-footer { padding: 20px 24px 28px; }
    .form-radio-group { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .service-price { font-size: 28px; }
    .section-title { font-size: 28px; }
    .director-card { flex-direction: column; text-align: center; }
    .director-photo { width: 120px; height: 120px; }
    .director-stats { justify-content: center; }
    .brief-cta { flex-direction: column; text-align: center; }
    .brief-cta-btn { align-self: center; }
}

/* ========================================
   HONEYPOT — invisible to humans
   ======================================== */
.hp-field {
    position: absolute !important; left: -9999px !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important; pointer-events: none;
    tab-index: -1;
}

/* ========================================
   FIELD VALIDATION ERRORS
   ======================================== */
.field-error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15) !important;
}
.field-error-msg {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 6px;
    animation: fieldErrorIn 0.3s ease;
}
@keyframes fieldErrorIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast error variant */
.toast-error { border-color: #ff4444; }
.toast-error .toast-icon { color: #ff4444; }

/* Button disabled state */
button:disabled {
    opacity: 0.6; cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   DIRECTOR CARD
   ======================================== */
.director-card {
    display: flex; align-items: center; gap: 48px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    margin: 64px auto; max-width: 800px;
    position: relative; overflow: hidden;
}
.director-card::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.director-photo {
    width: 160px; height: 160px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0; position: relative;
}
.director-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.director-glow {
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--accent), transparent, var(--accent));
    opacity: 0.3; z-index: -1;
    animation: directorGlow 4s linear infinite;
}
@keyframes directorGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.director-info { flex: 1; }
.director-label {
    font-size: 12px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); font-family: var(--font-display);
    font-weight: 600; margin-bottom: 8px;
}
.director-name {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 800; margin-bottom: 12px;
}
.director-bio {
    color: var(--text-secondary); font-size: 15px;
    line-height: 1.7; margin-bottom: 20px;
}
.director-stats {
    display: flex; gap: 24px;
}
.director-stat {
    font-size: 13px; color: var(--text-muted);
}
.director-stat span {
    display: block; font-family: var(--font-display);
    font-weight: 800; font-size: 22px;
    color: var(--accent); margin-bottom: 2px;
}

/* ========================================
   BRIEF CTA SECTION
   ======================================== */
.brief-cta-section {
    padding: 0 0 40px;
    background: var(--bg-primary);
}
.brief-cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; padding: 40px 48px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200,255,0,0.03) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative; overflow: hidden;
}
.brief-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(200,255,0,0.04) 100%);
    pointer-events: none;
}
.brief-cta-content {
    display: flex; align-items: center; gap: 24px;
    position: relative; z-index: 1;
}
.brief-cta-icon {
    font-size: 40px; flex-shrink: 0;
}
.brief-cta-text h3 {
    font-family: var(--font-display); font-size: 20px;
    font-weight: 700; margin-bottom: 6px;
}
.brief-cta-text p {
    color: var(--text-secondary); font-size: 14px;
    line-height: 1.5;
}
.brief-cta-btn {
    flex-shrink: 0; position: relative; z-index: 1;
    display: inline-flex; align-items: center;
    padding: 16px 36px;
    background: var(--accent); color: var(--bg-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 15px; border-radius: var(--radius-sm);
    transition: var(--transition); white-space: nowrap;
    letter-spacing: 0.3px;
}
.brief-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,255,0,0.25);
}

/* ========================================
   FOOTER SOCIALS
   ======================================== */
.footer-socials {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin: 20px 0 8px;
}
.footer-social-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(200,255,0,0.06); border: 1px solid var(--border);
    color: var(--text-secondary); transition: var(--transition);
}
.footer-social-link:hover {
    background: var(--accent); color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200,255,0,0.25);
}
.footer-social-link svg {
    width: 18px; height: 18px;
}

/* ========================================
   THANK YOU MODAL
   ======================================== */
.ty-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .35s ease;
}
.ty-overlay.open { opacity: 1; visibility: visible; }
.ty-modal {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 48px 40px; max-width: 440px; width: 90%;
    text-align: center; position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.ty-overlay.open .ty-modal { transform: translateY(0) scale(1); }
.ty-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: var(--text-secondary);
    font-size: 28px; cursor: pointer; transition: color .2s;
    line-height: 1;
}
.ty-close:hover { color: var(--accent); }
.ty-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(200,255,0,0.1); border: 2px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--accent); font-weight: 700;
}
.ty-title {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 700; margin-bottom: 12px; color: var(--text-primary);
}
.ty-text {
    color: var(--text-secondary); font-size: 15px;
    line-height: 1.6; margin-bottom: 8px;
}
.ty-sub {
    color: #555; font-size: 13px; margin-bottom: 24px;
}
.ty-btn {
    display: inline-block; padding: 14px 32px;
    background: var(--accent); color: var(--bg-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 14px; border-radius: var(--radius-sm);
    transition: var(--transition); letter-spacing: 0.3px;
}
.ty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,255,0,0.25);
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 18px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; backdrop-filter: blur(12px);
    transform: translateY(100%); transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar.hide { transform: translateY(100%); }
.cookie-text {
    color: var(--text-secondary); font-size: 14px; line-height: 1.5;
    display: flex; align-items: center; gap: 10px;
}
.cookie-icon { font-size: 22px; flex-shrink: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-family: var(--font-display); font-weight: 600;
    font-size: 13px; cursor: pointer; transition: var(--transition);
    border: none;
}
.cookie-btn-accept {
    background: var(--accent); color: var(--bg-primary);
}
.cookie-btn-accept:hover {
    box-shadow: 0 4px 15px rgba(200,255,0,0.3);
    transform: translateY(-1px);
}
.cookie-btn-decline {
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn-decline:hover {
    border-color: var(--text-secondary); color: var(--text-primary);
}

@media (max-width: 768px) {
    .director-card { flex-direction: column; text-align: center; padding: 28px; gap: 24px; }
    .director-photo { width: 120px; height: 120px; }
    .director-stats { justify-content: center; flex-wrap: wrap; }
    .brief-cta { flex-direction: column; text-align: center; padding: 28px; }
    .brief-cta-content { flex-direction: column; }
    .brief-cta-btn { align-self: center; }
    .cookie-bar { flex-direction: column; text-align: center; padding: 16px 20px; gap: 14px; }
    .cookie-actions { justify-content: center; }
    .ty-modal { padding: 36px 24px; }
}

/* ===== CONSENT CHECKBOX ===== */
.consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin: 16px 0 4px; position: relative; }
.consent-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box { flex-shrink: 0; width: 20px; height: 20px; border: 2px solid rgba(200,255,0,.3); border-radius: 4px; background: rgba(200,255,0,.05); transition: all .2s; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.consent-box::after { content: ''; display: block; width: 6px; height: 10px; border: solid #c8ff00; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform .15s ease; }
.consent-check input:checked + .consent-box { border-color: #c8ff00; background: rgba(200,255,0,.12); }
.consent-check input:checked + .consent-box::after { transform: rotate(45deg) scale(1); }
.consent-check input:focus-visible + .consent-box { box-shadow: 0 0 0 2px rgba(200,255,0,.4); }
.consent-text { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.55); }
.consent-text a { color: #c8ff00; text-decoration: underline; text-underline-offset: 2px; }
.consent-text a:hover { color: #fff; }

/* ===== LEGAL PAGES ===== */
.legal-section { padding: 140px 0 80px; min-height: 100vh; }
.legal-header { margin-bottom: 48px; }
.legal-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.legal-updated { font-size: 14px; color: rgba(255,255,255,.4); }
.legal-content { max-width: 800px; }
.legal-block { margin-bottom: 40px; }
.legal-block h2 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.legal-block h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.85); margin: 20px 0 10px; }
.legal-block p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.legal-block ul { padding-left: 20px; margin-bottom: 14px; }
.legal-block li { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 6px; list-style: disc; }
.legal-block li strong { color: rgba(255,255,255,.85); }
.legal-block a { color: #c8ff00; text-decoration: underline; text-underline-offset: 2px; }
.legal-block a:hover { color: #fff; }
.legal-back { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.legal-back-btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 28px; border: 1px solid rgba(200,255,0,.3); border-radius: 8px; color: #c8ff00; font-size: 15px; font-weight: 500; transition: all .25s; }
.legal-back-btn:hover { background: rgba(200,255,0,.08); border-color: #c8ff00; transform: translateY(-1px); }

/* Cookie Table */
.cookie-table-wrap { overflow-x: auto; margin: 14px 0 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,.08); }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cookie-table th { text-align: left; padding: 12px 16px; background: rgba(200,255,0,.06); color: rgba(255,255,255,.75); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); white-space: nowrap; }
.cookie-table td { padding: 10px 16px; color: rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.04); }
.cookie-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
    .legal-section { padding: 120px 0 60px; }
    .legal-block h2 { font-size: 1.2rem; }
    .consent-text { font-size: 12px; }
}
