/* ============================================
    FONT FACES
    ============================================ */
    @font-face {
    font-family: 'Wooow';
    src: url('/fonts/wooow/wooow.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wooow';
    src: url('/fonts/wooow/wooow-heavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wooow';
    src: url('/fonts/wooow/wooow-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ============================================
    CSS VARIABLES 
    ============================================ */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #161616;
    --color-bg-elevated: #1a1a1a;
    --color-accent: #e8ff00;
    --color-accent-hover: #d4eb00;
    --color-white: #ffffff;
    --color-text: #e0e0e0;
    --color-text-muted: #aaaaaa;
    --color-border: #222222;
    --color-border-light: #333333;
    --color-success: #00c853;
    --color-error: #ff1744;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Wooow', sans-serif;

    --container-max: 1200px;
    --container-pad: 24px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Visible focus indicator for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Visible focus indicator for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ============================================
    FONT UTILITIES
    ============================================ */
.font-display { font-family: var(--font-display); }
.font-display-light { font-family: var(--font-display); font-weight: 300; }
.font-display-normal { font-family: var(--font-display); font-weight: normal; }
.font-display-bold { font-family: var(--font-display); font-weight: bold; }

/* Skip-to-content link for screen reader and keyboard users */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 12px 20px;
    background: var(--color-bg);
    color: var(--color-accent);
    font-weight: 600;
    z-index: 10000;
    border-bottom: 2px solid var(--color-accent);
    outline: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* Skip-to-content link for screen reader and keyboard users */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 12px 20px;
    background: var(--color-bg);
    color: var(--color-accent);
    font-weight: 600;
    z-index: 10000;
    border-bottom: 2px solid var(--color-accent);
    outline: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* ============================================
    SCROLL ANIMATIONS
    ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

/* ============================================
    SECTION TITLES
    ============================================ */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
    NAVIGATION
    ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    padding: 14px 0;
    border-bottom-color: var(--color-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 26px;
    color: var(--color-white);
    z-index: 1001;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--color-accent);
    transition: transform 0.3s ease;
}

.nav-logo:hover svg {
    transform: rotate(-12deg);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: var(--color-accent);
    border: 2px solid var(--color-accent);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
    HERO SECTION
    ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-proof {
    margin-top: 10px;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute; 
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(232, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-grid-spotlight {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(232, 255, 0, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 255, 0, 0.22) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 1;
    --x1: 20%;
    --y1: 30%;
    --x2: 75%;
    --y2: 65%;
    --x3: 50%;
    --y3: 85%;
    -webkit-mask:
        radial-gradient(260px circle at var(--x1) var(--y1),
            rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 45%, transparent 75%),
        radial-gradient(220px circle at var(--x2) var(--y2),
            rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 45%, transparent 75%),
        radial-gradient(300px circle at var(--x3) var(--y3),
            rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 75%);
    -webkit-mask-composite: source-over;
    mask:
        radial-gradient(260px circle at var(--x1) var(--y1),
            rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 45%, transparent 75%),
        radial-gradient(220px circle at var(--x2) var(--y2),
            rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 45%, transparent 75%),
        radial-gradient(300px circle at var(--x3) var(--y3),
            rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 75%);
    mask-composite: add;
}

.hero-glow {
    position: absolute;
    top: -200px; 
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--color-accent); 
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--color-accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-title .accent {
    color: var(--color-accent);
}

.hero-desc {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ============================================
    TECHNOLOGY SLIDER
    ============================================ */
.tech-slider {
    padding: 48px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.tech-slider-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.slider-track-wrapper {
    mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: slideScroll 35s linear infinite;
    width: max-content;
}

.slider-item {
    flex-shrink: 0;
    width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slider-item img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slider-item img:hover {
    opacity: 1;
}

@keyframes slideScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 15)); }
}

/* ============================================
    SERVICES SECTION
    ============================================ */
.services {
    padding: 120px 0;
    background-color: var(--color-bg); 
}

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

.service-card {
    padding: 48px 36px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(232, 255, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 28px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--color-accent);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
    PORTFOLIO SECTION
    ============================================ */
.portfolio {
    padding: 120px 0;
    background-color: var(--color-bg-alt);
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.portfolio-card:nth-child(even) {
    direction: rtl;
}

.portfolio-card:nth-child(even) > * {
    direction: ltr;
}

.portfolio-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-phone-frame {
    width: 240px;
    height: 480px;
    background-color: var(--color-bg-elevated);
    border: 2px solid var(--color-border-light);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-phone-frame {
    border-color: var(--color-accent);
}

.portfolio-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}



.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 16px;
}

.portfolio-info p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.portfolio-tech {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--color-border-light);
    border-radius: 100px;
    color: var(--color-text);
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ============================================
    TRUST / STATS SECTION
    ============================================ */
.trust {
    padding: 100px 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.trust-content .section-title {
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background-color: var(--color-bg-card);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    WHAT WE DO SECTION
    ============================================ */
.what-we-do {
    padding: 120px 0;
    background-color: var(--color-bg);
}

.wwd-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wwd-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.wwd-item:hover {
    border-color: var(--color-border-light);
}

.wwd-item:nth-child(even) {
    direction: rtl;
}

.wwd-item:nth-child(even) > * {
    direction: ltr;
}

.wwd-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wwd-placeholder img {
    width: 75%;
    height: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.wwd-item:hover .wwd-placeholder img {
    opacity: 0.9;
    transform: scale(1.03);
}

.wwd-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: bold;
    color: #999999;
    line-height: 1;
    margin-bottom: 16px;
}

.wwd-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 20px;
}

.wwd-text p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.wwd-text .btn-primary {
    margin-top: 12px;
    font-size: 14px;
    padding: 12px 28px;
}

.wwd-tech {
    list-style: none;
    padding: 0;
    margin: 4px 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wwd-tech li {
    width: 72px;
    height: 72px;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center; 
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-bg-elevated);
    transition: var(--transition);
}

.wwd-tech li:hover {
    border-color: var(--color-accent);
}

.wwd-tech img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.wwd-tech li:hover img {
    opacity: 1;
}

/* ============================================
    CONTACT SECTION
    ============================================ */
.contact {
    padding: 120px 0;
    background-color: var(--color-bg-alt);
    position: relative;
}

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

.contact-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.contact-text > p {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-email {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: bold;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-border-light);
    padding-bottom: 4px;
    transition: var(--transition);
    display: inline-block;
}

.contact-email:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.contact-form-wrapper {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--color-bg);
    border: 1px solid #444444;
    border-radius: var(--radius);
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.form-message.error {
    background-color: rgba(255, 23, 68, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(255, 23, 68, 0.3);
}

/* Honeypot */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.decoy {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* ============================================
    FOOTER
    ============================================ */
.footer {
    padding: 40px 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    color: var(--color-white);
}

.footer-logo svg {
    width: 22px;
    height: 22px;
    fill: var(--color-accent);
}

.footer-copy {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
    RESPONSIVE: 1200px
    ============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 40px;
    }

    .wwd-item {
        padding: 48px;
        gap: 40px;
    }

    .portfolio-card {
        padding: 40px;
        gap: 36px;
    }

    .contact-email {
        font-size: 22px;
    }
}

/* ============================================
    RESPONSIVE: 968px
    ============================================ */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .nav-links a {
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-card:nth-child(even) {
        direction: ltr;
    }

    .portfolio-info {
        order: 2;
    }

    .portfolio-tags {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 32px;
        gap: 32px;
    }

    .wwd-item:nth-child(even) {
        direction: ltr;
    }

    .wwd-visual {
        order: -1;
    }

    .wwd-number {
        font-size: 56px;
    }

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

/* ============================================
    RESPONSIVE: 768px
    ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-scroll {
        display: none;
    }

    .section-title {
        font-size: 34px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .portfolio-phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 28px;
    }

    .portfolio-info h3 {
        font-size: 28px;
    }

    .contact-text h2 {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

/* ============================================
    RESPONSIVE: 576px
    ============================================ */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 36px 28px;
    }

    .portfolio-card {
        padding: 28px 20px;
    }

    .portfolio-phone-frame {
        width: 180px;
        height: 360px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .wwd-item {
        padding: 28px 20px;
    }

    .wwd-tech li {
        width: 52px;
        height: 52px;
        padding: 8px;
        border-radius: 10px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .slider-item {
        width: 130px;
    }

    @keyframes slideScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-130px * 15)); }
    }
}

/* ============================================
    REDUCED MOTION
    ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .slider-track {
        animation: none;
    }

    .hero-scroll {
        animation: none;
    }

    #heroCanvas {
        display: none;
    }

    .hero-grid-spotlight {
        display: none;
    }
}