/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
    --bg: #0A0A0F;
    --bg-surface: #12121A;
    --bg-surface-hover: #1A1A2E;
    --accent: #2D6BFF;
    --accent-hover: #4080FF;
    --accent-glow: rgba(45, 107, 255, 0.3);
    --accent-subtle: rgba(45, 107, 255, 0.08);
    --gold: #C9A84C;
    --text: #FFFFFF;
    --text-secondary: #8A8A9A;
    --text-muted: #555566;
    --border: #1A1A2E;
    --error: #FF3B3B;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --header-h: 72px;
    --container: 1200px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* =============================================
   Utilities
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section__subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
}

/* =============================================
   Button
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

.btn--primary {
    background: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* =============================================
   Custom Cursor
   ============================================= */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(45, 107, 255, 0.5);
    border-radius: 50%;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
    }

    body {
        cursor: none;
    }

    a, button, input, textarea, [role="button"] {
        cursor: none;
    }

    select {
        cursor: pointer;
    }
}

/* =============================================
   Mobile Menu Overlay
   ============================================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay--active {
    opacity: 1;
    pointer-events: auto;
}

/* =============================================
   Header
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.header--scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.header__link:hover,
.header__link--active {
    color: var(--text);
}

.header__link:hover::after,
.header__link--active::after {
    width: 100%;
}

.header__link--cta {
    background: var(--accent);
    color: var(--text);
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 0.15em;
    transition: background 0.3s, box-shadow 0.3s;
}

.header__link--cta::after {
    display: none;
}

.header__link--cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px var(--accent-glow);
    color: var(--text);
}

/* Hamburger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.header__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.header__burger--active span:nth-child(2) {
    opacity: 0;
}

.header__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile menu */
@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-surface);
        padding: 40px;
        gap: 24px;
        transition: right 0.4s var(--ease);
        z-index: 999;
        border-left: 1px solid var(--border);
    }

    .header__menu--open {
        right: 0;
    }

    .header__link {
        font-size: 16px;
    }

    .header__link--cta {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--header-h) 20px 80px;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--accent-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero__glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    background: radial-gradient(circle, rgba(45, 107, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__title {
    font-size: clamp(2.8rem, 9vw, 6rem);
    line-height: 1.02;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero__title .word {
    display: inline-block;
}

.hero__title .char {
    display: inline-block;
    opacity: 0;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__cta {
    opacity: 0;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
}

.hero__scroll span {
    display: block;
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-secondary);
    border-radius: 10px;
    position: relative;
}

.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* =============================================
   STATS
   ============================================= */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    text-align: center;
}

.stats__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stats__label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

@media (min-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .stats__label {
        font-size: 13px;
    }
}

/* =============================================
   SERVICES
   ============================================= */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.services__card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 36px 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.services__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 107, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.services__card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(45, 107, 255, 0.08);
}

.services__card:hover::before {
    opacity: 1;
}

.services__icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
}

.services__card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
}

.services__card-text {
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services__card {
        padding: 44px 36px;
    }
}

/* =============================================
   PROCESS / TIMELINE
   ============================================= */
.process__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process__line {
    display: none;
}

.process__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 2px solid var(--border);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}

.process__step:hover .process__number {
    border-color: var(--accent);
    background: rgba(45, 107, 255, 0.08);
    box-shadow: 0 0 20px var(--accent-glow);
}

.process__step-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.process__step-text {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .process__steps {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 80px;
    }

    .process__line {
        display: block;
        position: absolute;
        top: 24px;
        left: 24px;
        right: 24px;
        height: 2px;
        background: var(--border);
    }

    .process__progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: var(--accent);
        box-shadow: 0 0 10px var(--accent-glow);
    }

    .process__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 18%;
        gap: 20px;
    }

    .process__number {
        position: relative;
        z-index: 2;
    }

    .process__step-body {
        max-width: 180px;
    }
}

/* =============================================
   SHOWCASE (DEMO CASES)
   ============================================= */
.showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.showcase__card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.showcase__card:hover {
    border-color: rgba(45, 107, 255, 0.3);
    box-shadow: 0 8px 40px rgba(45, 107, 255, 0.06);
}

.showcase__preview {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.showcase__preview--fitness {
    background: linear-gradient(135deg, #2D6BFF 0%, #7B2DFF 100%);
}

.showcase__preview--saas {
    background: linear-gradient(135deg, #00B4D8 0%, #2D6BFF 100%);
}

.showcase__preview--luxury {
    background: linear-gradient(135deg, #C9A84C 0%, #FF6B35 100%);
}

.showcase__icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.5s var(--ease);
}

/* ---- Browser mockup previews ---- */
.showcase__browser {
    width: 92%;
    margin: auto;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    transition: transform 0.5s var(--ease);
}

.showcase__card:hover .showcase__browser {
    transform: scale(1.03);
}

.showcase__browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    background: #222234;
}

.showcase__browser-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #444;
}

.showcase__browser-dot:first-child { background: #ff5f57; }
.showcase__browser-dot:nth-child(2) { background: #ffbd2e; }
.showcase__browser-dot:nth-child(3) { background: #28c840; }

.showcase__browser-url {
    margin-left: 8px;
    font-size: 9px;
    color: #666;
    font-family: var(--font-body);
    background: #1a1a2e;
    padding: 2px 10px;
    border-radius: 3px;
}

.showcase__browser-body {
    height: 140px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -- FitPulse mini site -- */
.showcase__site-fp {
    background: #0D0D12;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.showcase__fp-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124,58,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.showcase__fp-shape {
    position: absolute;
    pointer-events: none;
}

.showcase__fp-shape--1 {
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(124,58,255,0.25);
    transform: rotate(35deg);
}

.showcase__fp-shape--2 {
    bottom: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,107,0.3), rgba(124,58,255,0.15));
}

.showcase__fp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.05;
    text-align: center;
    position: relative;
    z-index: 1;
}

.showcase__fp-btn {
    font-size: 7px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7C3AFF, #FF6B6B);
    padding: 4px 14px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.03em;
}

/* -- CloudDesk mini site -- */
.showcase__site-cd {
    background: #F8FAFC;
    padding: 12px;
    gap: 12px;
}

.showcase__cd-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase__cd-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.showcase__cd-sub {
    font-size: 5.5px;
    color: #64748B;
}

.showcase__cd-btn {
    font-size: 5.5px;
    color: #fff;
    background: #0EA5E9;
    padding: 3px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 2px;
}

.showcase__cd-mockup {
    flex: 0 0 48%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
}

.showcase__cd-toolbar {
    display: flex;
    gap: 3px;
    padding: 4px 6px;
    background: #F1F5F9;
}

.showcase__cd-toolbar span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CBD5E1;
}

.showcase__cd-cols {
    display: flex;
    gap: 4px;
    padding: 4px 6px 6px;
}

.showcase__cd-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.showcase__cd-col span {
    display: block;
    height: 12px;
    background: #F1F5F9;
    border-radius: 2px;
}

.showcase__cd-col span:nth-child(2) { height: 16px; }

/* -- Maison Noir mini site -- */
.showcase__site-mn {
    background: #F5F0E8;
    flex-direction: column;
    gap: 8px;
}

.showcase__mn-title {
    font-family: 'Bebas Neue', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 0.15em;
    line-height: 1;
}

.showcase__mn-rule {
    width: 40px;
    height: 1px;
    background: #C9A84C;
}

.showcase__mn-tagline {
    font-size: 7px;
    font-style: italic;
    color: #5A5A5A;
    letter-spacing: 0.08em;
}

.showcase__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase__body {
    padding: 24px;
}

.showcase__tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.showcase__name {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.showcase__process {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase__step {
    padding-left: 16px;
    border-left: 2px solid var(--border);
    transition: border-color 0.3s;
}

.showcase__card:hover .showcase__step {
    border-left-color: var(--accent);
}

.showcase__step-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}

.showcase__step p {
    font-size: 13px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .showcase__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__body {
        padding: 20px;
    }

    .showcase__step p {
        font-size: 12.5px;
    }
}

@media (min-width: 1024px) {
    .showcase__body {
        padding: 28px;
    }

    .showcase__step p {
        font-size: 13px;
    }
}

.showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: gap 0.3s var(--ease), color 0.3s;
}

.showcase__link:hover {
    gap: 14px;
    color: var(--accent-hover);
}

/* =============================================
   GUARANTEES
   ============================================= */
.guarantees__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.guarantees__card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.guarantees__card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.05);
}

.guarantees__icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.guarantees__title {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guarantees__text {
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantees__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees__card {
        padding: 36px 32px;
    }
}

/* =============================================
   FAQ
   ============================================= */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
    border-top: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color 0.3s;
}

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

.faq__icon {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.faq__item--open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding-bottom 0.4s var(--ease);
}

.faq__item--open .faq__answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 15px;
    line-height: 1.8;
}

/* =============================================
   CTA / FORM
   ============================================= */
.cta {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
}

.cta__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta__subtitle {
    margin-bottom: 40px;
    font-size: 16px;
}

.cta__form {
    text-align: left;
}

.form__group {
    margin-bottom: 16px;
}

.form__input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45, 107, 255, 0.1);
}

input.form__input:invalid:not(:placeholder-shown):not(:focus),
textarea.form__input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--error);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238A8A9A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
}

.form__select option {
    background: var(--bg-surface);
    color: var(--text);
}

.form__success {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: rgba(45, 107, 255, 0.06);
    border: 1px solid var(--accent);
    color: var(--text);
    text-align: center;
}

.form__success.visible {
    display: block;
}

.form__success i {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.form__success p {
    font-size: 15px;
    line-height: 1.6;
}

.form__error {
    display: none;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(255, 59, 59, 0.06);
    border: 1px solid var(--error);
    color: var(--error);
    font-size: 14px;
    line-height: 1.6;
}

.form__error.visible {
    display: block;
}

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

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.site-footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.site-footer__logo:hover {
    color: var(--accent);
}

.site-footer__social {
    display: flex;
    gap: 12px;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s var(--ease);
}

.site-footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.site-footer__email {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-footer__email:hover {
    text-decoration: underline;
}

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

@media (min-width: 768px) {
    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .site-footer__copy {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

@media (min-width: 1024px) {
    .site-footer__copy {
        width: auto;
        text-align: right;
        margin-top: 0;
    }
}

/* =============================================
   REVEAL ANIMATIONS (base states for GSAP)
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* =============================================
   RESPONSIVE: Large screens
   ============================================= */
@media (min-width: 1440px) {
    :root {
        --container: 1320px;
    }

    section {
        padding: 100px 0;
    }

    .cta {
        padding: 120px 0;
    }
}
