/* ==========================================
   VOMNI — Design 2: Editorial / Award-Winning
   Inspired by Awwwards SOTY 2025 trends:
   Bento grid, kinetic type, monochrome + accent
   ========================================== */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #636363;
    --bg-card: #727272;
    --bg-elevated: #818181;
    --cream: #f5efe2;
    --cream-dark: #ede7d8;

    --white: #f5f5f3;
    --gray-100: #e5e5e3;
    --gray-200: #c5c5c3;
    --gray-300: #8a8a88;
    --gray-400: #5a5a58;
    --gray-500: #2a2a28;
    --gray-600: #1a1a18;

    --accent: #E6501B;
    --accent-dim: rgba(230, 80, 27, 0.08);

    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1320px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-500);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* --- Screen Reader Only --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Focus Visible (Keyboard Navigation) --- */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee-track {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --- Noise --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='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;
    background-size: 256px;
}

/* --- Custom Cursor --- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor-hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--accent);
    background: rgba(230, 80, 27, 0.06);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* --- Shared Elements --- */
.label-mono {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-300);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1.5rem;
}

em {
    font-style: italic;
    color: var(--accent);
}

/* --- Reveal Animation --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============= NAVBAR ============= */
/* ============= NAVBAR — FLOATING PILL ============= */
.nav {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(-110px);
    width: min(1080px, calc(100vw - 3rem));
    z-index: 100;
    background: #f5efe2;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.07),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    animation: navSlideDown 0.9s cubic-bezier(0.34, 1.45, 0.64, 1) 0.25s both;
    transition: box-shadow 0.4s ease, width 0.4s ease;
}

@keyframes navSlideDown {
    from {
        transform: translateX(-50%) translateY(-110px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav.scrolled {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    width: min(960px, calc(100vw - 3rem));
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.6rem 0.55rem 1.3rem;
    gap: 0.5rem;
}

/* ── Brand ── */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: #111;
    flex-shrink: 0;
    opacity: 0;
    animation: navFadeUp 0.5s ease 0.7s both;
}

.brand-symbol {
    font-size: 1.3rem;
    color: var(--accent);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
}

/* ── Menu links ── */
.nav-menu {
    display: flex;
    gap: 0.1rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    opacity: 0;
    animation: navFadeUp 0.45s ease both;
    white-space: nowrap;
}

.nav-item:nth-child(1) { animation-delay: 0.55s; }
.nav-item:nth-child(2) { animation-delay: 0.65s; }
.nav-item:nth-child(3) { animation-delay: 0.75s; }
.nav-item:nth-child(4) { animation-delay: 0.85s; }
.nav-item:nth-child(5) { animation-delay: 0.95s; }

.nav-item:hover {
    background: rgba(0, 0, 0, 0.07);
    color: #111;
}

.nav-item:active {
    transform: scale(0.96);
}

/* ── CTA button ── */
.nav-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: #f5efe2;
    background: #111;
    text-decoration: none;
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    animation: navFadeUp 0.45s ease 1.05s both;
}

.nav-cta:hover {
    background: var(--accent);
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(230, 80, 27, 0.30);
}

.nav-cta:active {
    transform: scale(0.97);
}

/* ── Mobile toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 0.3rem;
}

.toggle-line {
    width: 22px;
    height: 1.5px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .toggle-line:first-child {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active .toggle-line:last-child {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── Shared fade-up keyframe ── */
@keyframes navFadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============= HERO ============= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: #050505;
}

.hero-shader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.45;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: var(--gray-200);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.eyebrow-pill:hover {
    border-color: var(--accent);
    background: rgba(230, 80, 27, 0.06);
    color: var(--accent);
}

.eyebrow-icon {
    font-size: 0.55rem;
    color: var(--accent);
}

.eyebrow-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.eyebrow-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s var(--ease);
}

.eyebrow-pill:hover .eyebrow-arrow {
    transform: translateX(3px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.headline-row {
    display: block;
    overflow: hidden;
    text-align: center;
}

.word {
    display: inline-block;
    margin-right: 0.2em;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 1s var(--ease) forwards;
}

.word:nth-child(1) {
    animation-delay: 0.2s;
}

.word:nth-child(2) {
    animation-delay: 0.35s;
}

.headline-row:nth-child(2) .word:nth-child(1) {
    animation-delay: 0.5s;
}

.headline-row:nth-child(2) .word:nth-child(2) {
    animation-delay: 0.65s;
}

.headline-row:nth-child(2) .word:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.word-outline {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}

.word-accent {
    color: var(--accent);
}

/* --- Subtitle --- */
.hero-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero Buttons --- */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--white);
    color: var(--bg);
    border: 1px solid var(--white);
}

.hero-btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 80, 27, 0.2);
}

.hero-btn-icon {
    font-size: 1rem;
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.hero-btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s var(--ease);
}

.hero-btn-secondary:hover .hero-btn-arrow {
    transform: translateX(4px);
}

/* --- Keşfet Circle (repositioned) --- */
.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid var(--gray-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.5s var(--ease);
    flex-shrink: 0;
}

.cta-circle:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg);
    transform: scale(1.1);
}

.cta-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.cta-circle:hover .cta-arrow {
    transform: translateY(4px);
}

.hero-scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* ============= MARQUEE ============= */
.marquee-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #f5f0e8;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--accent) !important;
}

/* ============= SERVICES V2 ============= */
.services-v2 {
    padding: clamp(5rem, 12vw, 10rem) 0;
    position: relative;
    background: #0e0e0e;
}

.sv2-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.sv2-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.sv2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.sv2-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 420px;
    transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    cursor: default;
}

.sv2-card:hover {
    border-color: rgba(230, 80, 27, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(230, 80, 27, 0.04);
}

.sv2-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 110%, rgba(230, 80, 27, 0.07), transparent 60%);
}

.sv2-card:hover .sv2-glow {
    opacity: 1;
}

.sv2-card-bg-num {
    position: absolute;
    top: -0.15em;
    right: 0.1em;
    font-family: var(--font-display);
    font-size: 13rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    pointer-events: none;
    letter-spacing: -0.06em;
    line-height: 1;
    z-index: 0;
    transition: -webkit-text-stroke-color 0.5s;
}

.sv2-card:hover .sv2-card-bg-num {
    -webkit-text-stroke-color: rgba(230, 80, 27, 0.07);
}

.sv2-card-left {
    padding: clamp(1.2rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.sv2-service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.sv2-service-icon svg {
    width: 100%;
    height: 100%;
}

.sv2-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.sv2-card-desc {
    font-size: 0.92rem;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 440px;
}

.sv2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sv2-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    background: rgba(230, 80, 27, 0.05);
    border: 1px solid rgba(230, 80, 27, 0.18);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    transition: background 0.3s, border-color 0.3s;
}

.sv2-card:hover .sv2-tag {
    background: rgba(230, 80, 27, 0.1);
    border-color: rgba(230, 80, 27, 0.32);
}

.sv2-card-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
    min-height: 200px;
}

.sv2-card-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEO Visual — orbiting rings */
.sv2-visual-seo .sv2-orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 80, 27, 0.28), rgba(230, 80, 27, 0.04));
    position: absolute;
    box-shadow: 0 0 40px rgba(230, 80, 27, 0.18);
}

.sv2-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(230, 80, 27, 0.18);
}

.sv2-ring-1 {
    width: 130px;
    height: 130px;
    animation: sv2RingRotate 8s linear infinite;
}

.sv2-ring-2 {
    width: 200px;
    height: 200px;
    animation: sv2RingRotate 14s linear infinite reverse;
    border-style: dashed;
    opacity: 0.45;
}

.sv2-ring-3 {
    width: 280px;
    height: 280px;
    animation: sv2RingRotate 20s linear infinite;
    opacity: 0.2;
}

@keyframes sv2RingRotate {
    to { transform: rotate(360deg); }
}

.sv2-metric-display {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sv2-metric-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

.sv2-metric-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    color: var(--gray-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Performance Visual — score ring */
.sv2-score-ring {
    position: relative;
    width: 155px;
    height: 155px;
}

.sv2-score-ring svg {
    width: 100%;
    height: 100%;
}

.sv2-score-arc {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 2s var(--ease);
}

.sv2-card[data-reveal].revealed .sv2-score-arc {
    stroke-dashoffset: 0;
}

.sv2-score-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

.sv2-score-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

.sv2-score-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gray-300);
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

/* Security Visual — shield + pulse */
.sv2-visual-sec {
    flex-direction: column;
    gap: 1.2rem;
}

.sv2-shield-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv2-shield-svg {
    width: 90px;
    height: 100px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 18px rgba(230, 80, 27, 0.22));
}

.sv2-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(230, 80, 27, 0.14);
}

.sv2-pulse-1 {
    width: 110px;
    height: 110px;
    animation: sv2Pulse 3s ease-in-out infinite;
}

.sv2-pulse-2 {
    width: 160px;
    height: 160px;
    animation: sv2Pulse 3s ease-in-out infinite 1.2s;
}

@keyframes sv2Pulse {
    0%, 100% { transform: scale(0.85); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
}

.sv2-sec-stats {
    display: flex;
    gap: 2rem;
}

.sv2-sec-stat { text-align: center; }

.sv2-sec-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.sv2-sec-lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Stats bar */
.sv2-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-card);
}

.sv2-stat {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: background 0.3s;
}

.sv2-stat:hover {
    background: rgba(230, 80, 27, 0.03);
}

.sv2-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.sv2-stat:last-child::after {
    display: none;
}

.sv2-stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.sv2-stat-lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

/* ============= SERVICES CARD CREAM OVERRIDES ============= */

.sv2-card {
    background: var(--cream);
    border-color: rgba(0, 0, 0, 0.08);
}

.sv2-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25), 0 0 60px rgba(230, 80, 27, 0.06);
}

.sv2-card-bg-num {
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.06);
}

.sv2-card:hover .sv2-card-bg-num {
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
}

.sv2-card-right {
    background: var(--cream-dark);
    border-top-color: rgba(0, 0, 0, 0.07);
}

.sv2-card-title { color: #111111; }
.sv2-card-desc  { color: #444444; }

.sv2-tag {
    color: #1a5c00;
    background: rgba(60, 160, 0, 0.08);
    border-color: rgba(60, 140, 0, 0.25);
}

.sv2-card:hover .sv2-tag {
    background: rgba(60, 160, 0, 0.14);
    border-color: rgba(60, 140, 0, 0.4);
}

.sv2-metric-label { color: #666666; }
.sv2-score-label  { color: #555555; }

.sv2-glow {
    background: radial-gradient(ellipse at 50% 110%, rgba(100, 200, 0, 0.08), transparent 60%);
}

/* Stats bar — cream */
.sv2-stats-bar {
    background: var(--cream);
    border-color: rgba(0, 0, 0, 0.08);
}

.sv2-stat-val { color: #111111; }
.sv2-stat-lbl { color: #666666; }

.sv2-stat::after { background: rgba(0, 0, 0, 0.08); }
.sv2-stat:hover  { background: rgba(0, 0, 0, 0.03); }

/* ============= PROJECTS — HORIZONTAL SCROLL ============= */
.projects {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0e0e0e;
    position: relative;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
}

.projects-header {
    max-width: 1220px;
    margin: 0 auto clamp(3rem, 6vw, 4.5rem);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.projects-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
}

/* ── sw-list: vertical list of project rows ── */
.sw-list {
    display: flex;
    flex-direction: column;
}

.sw-item {
    display: grid;
    grid-template-columns: 1fr 1.27fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}

.sw-item + .sw-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sw-item--reverse {
    grid-template-columns: 1.27fr 1fr;
}
.sw-item--reverse .sw-text { order: 2; }
.sw-item--reverse .sw-visual { order: 1; }

/* ── text column ── */
.sw-text {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 520px;
}

.sw-item--reverse .sw-text {
    margin-left: auto;
}

.sw-text .label-mono {
    color: var(--gray-300);
}

.sw-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
}

.sw-text p {
    color: #868f97;
    font-size: clamp(0.88rem, 1.4vw, 0.98rem);
    line-height: 1.75;
    margin: 0;
}

.sw-stat {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(230, 80, 27, 0.35);
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    align-self: flex-start;
}

/* ── visual column ── */
.sw-visual {
    position: relative;
    height: clamp(240px, 30vw, 400px);
}

/* decorative background card */
.sw-bg-blob {
    position: absolute;
    width: 76%;
    height: 88%;
    background: #111111;
    border-radius: 24px;
    z-index: 0;
    filter: blur(3px);
    top: 8%;
    left: -12%;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 1.2s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sw-item--reverse .sw-bg-blob {
    left: auto;
    right: -12%;
    top: auto;
    bottom: 8%;
}

.sw-item.revealed .sw-bg-blob {
    transform: translateY(-24px);
}

/* main frosted-glass card */
.sw-card {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    z-index: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 1.2s var(--ease) 0.1s;
}

/* real screenshot fills the card */
.sw-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    display: block;
}

/* mockup fills the card completely */
.sw-card > .project-mockup {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.sw-card > .project-mockup .pm-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

.sw-card > .project-mockup .pm-hero {
    flex: 2;
    min-height: 60px;
    height: unset;
}

/* content rows stay fixed-height, don't stretch */
.sw-card > .project-mockup .pm-cols,
.sw-card > .project-mockup .pm-row,
.sw-card > .project-mockup .pm-nav,
.sw-card > .project-mockup .pm-form {
    flex-shrink: 0;
}

/* dashboard variant fills correctly */
.sw-card > .project-mockup .pm-dash-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.sw-card > .project-mockup .pm-dash-body .pm-side {
    min-height: unset;
}

.sw-card > .project-mockup .pm-dash-body .pm-main {
    overflow: hidden;
}

.sw-card > .project-mockup .pm-dash-body .pm-chart {
    flex: 1;
    height: unset;
    min-height: 0;
}

.sw-item.revealed .sw-card {
    transform: translateY(22px);
}

/* reveal animation for text/visual columns */
.sw-item[data-reveal] .sw-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.sw-item[data-reveal] .sw-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease) 0.18s, transform 0.7s var(--ease) 0.18s;
}

.sw-item.revealed .sw-text,
.sw-item.revealed .sw-visual {
    opacity: 1;
    transform: none;
}

/* responsive */
@media (max-width: 768px) {
    .sw-item {
        grid-template-columns: 1fr;
    }
    .sw-item--reverse .sw-text,
    .sw-item--reverse .sw-visual {
        order: unset;
    }
    .sw-visual {
        height: clamp(242px, 66vw, 352px);
    }
    .sw-bg-blob {
        left: -6%;
    }
    .sw-item--reverse .sw-bg-blob {
        right: -6%;
    }
}

.project-image {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.project-mockup {
    width: 75%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.pm-bar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pm-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.pm-bar span:first-child { background: #ff5f57; }
.pm-bar span:nth-child(2) { background: #febc2e; }
.pm-bar span:last-child { background: #28c840; }

.pm-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 80px;
}

.pm-nav {
    height: 7px;
    width: 55%;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 4px;
}

.pm-hero {
    height: 28px;
    background: linear-gradient(160deg, rgba(230, 80, 27, 0.18) 0%, rgba(40, 40, 40, 0.6) 60%, rgba(20, 20, 20, 0.4) 100%);
    border-radius: 6px;
    border: 1px solid rgba(230, 80, 27, 0.10);
}

.pm-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.pm-cols div {
    height: 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
}

.pm-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pm-dash-body {
    flex-direction: row;
    gap: 8px;
}

.pm-side {
    width: 25%;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
}

.pm-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pm-chart {
    height: 36px;
    background: linear-gradient(135deg, rgba(230, 80, 27, 0.28), rgba(230, 80, 27, 0.06));
    border-radius: 5px;
    border: 1px solid rgba(230, 80, 27, 0.12);
}

.pm-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.pm-row div {
    height: 16px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
}

.pm-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 8px 6px;
}

.pm-input {
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pm-btn {
    height: 16px;
    width: 40%;
    background: rgba(230, 80, 27, 0.30);
    border-radius: 4px;
}

/* ============= APPROACH V2 — SPLIT LAYOUT ============= */
.approach-v2 {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0e0e0e;
}

.approach-v2 .container {
    max-width: 100%;
    padding: 0 clamp(2rem, 6vw, 7rem);
}

.av2-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

/* Sol: Büyük başlık */
.av2-left {
    position: sticky;
    top: 6rem;
}

.av2-left .label-mono {
    display: block;
    margin-bottom: 1.5rem;
}

.av2-big-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.av2-big-title em {
    font-style: normal;
    color: var(--accent);
}

/* Sağ: Lead + items */
.av2-right {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
    padding-top: 0.5rem;
}

.av2-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--gray-200);
    line-height: 1.75;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 2x2 items grid */
.av2-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
}

.av2-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.av2-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.av2-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.av2-item p {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin: 0;
}

/* ============= TESTIMONIALS — 3D KART DESTESİ ============= */
/* ============= TESTIMONIALS — KLASİK IZGARA ============= */
.testimonials {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0e0e0e;
}

.t-header {
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.t-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
}

.t-title em {
    font-style: italic;
    color: var(--accent);
}

/* 3 sütun ızgara */
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Kart */
.t-card {
    background: #f5efe2;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.t-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 80, 27, 0.0), transparent);
    transition: background 0.4s;
}

.t-card:hover {
    border-color: rgba(230, 80, 27, 0.30);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.t-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(230, 80, 27, 0.45), transparent);
}

/* Üst satır: yıldızlar + tırnak */
.t-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.t-stars {
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.12em;
}

.t-quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.25;
    transition: opacity 0.3s;
    user-select: none;
}

.t-card:hover .t-quote-mark {
    opacity: 0.50;
}

/* Alıntı metni */
.t-quote {
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.75;
    color: #444;
    margin: 0;
    flex: 1;
}

.t-quote strong {
    color: #111;
    font-weight: 600;
}

/* Yazar */
.t-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 80, 27, 0.12);
    border: 1px solid rgba(230, 80, 27, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.t-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.t-author-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
}

.t-author-role {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    color: #888;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
    .t-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .t-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============= CTA / CONTACT ============= */
/* ============= CTA / BAŞLAYALIM — SPLIT LAYOUT ============= */
.cta {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0e0e0e;
    position: relative;
    overflow: hidden;
}

/* subtle radial glow behind the section */
.cta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(230, 80, 27, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
    padding: 0 clamp(2rem, 6vw, 7rem);
}

/* ── Left column ── */
.cta-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
}

.cta-headline em {
    font-style: italic;
    color: var(--accent);
}

.cta-sub {
    font-size: 1rem;
    color: var(--gray-300);
    max-width: 460px;
    line-height: 1.75;
}

/* Perks list */
.cta-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cta-perk {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.5;
}

.cta-perk-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(230, 80, 27, 0.12);
    border: 1px solid rgba(230, 80, 27, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 700;
}

/* Contact info */
.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 2rem;
}

.cta-contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: gap 0.3s var(--ease);
}

a.cta-contact-link:hover {
    gap: 2rem;
}

.cta-contact-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    width: 60px;
    flex-shrink: 0;
}

.cta-contact-value {
    font-size: 0.9rem;
    color: var(--gray-100);
    transition: color 0.3s;
}

a.cta-contact-link:hover .cta-contact-value {
    color: var(--accent);
}

/* ── Right column: form card ── */
.cta-right {
    position: relative;
}

.cta-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* subtle top-edge glow on card */
.cta-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 80, 27, 0.40), transparent);
}

.cta-form-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1.75rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0 0.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}

.form-field textarea {
    min-height: 110px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
}

.form-field label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label,
.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label {
    top: -0.4rem;
    font-size: 0.68rem;
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 0.05em;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--white);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(230, 80, 27, 0.22);
}

.submit-arrow {
    transition: transform 0.3s;
}

.submit-btn:hover .submit-arrow {
    transform: translateX(5px);
}

/* reveal animation delays */
.cta-left[data-reveal] { transition-delay: 0s; }
.cta-right[data-reveal] { transition-delay: 0.18s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cta-split {
        grid-template-columns: 1fr;
    }
    .cta-sub { max-width: 100%; }
}

/* ============= FOOTER ============= */
.footer {
    background: #0a0a0a;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 6rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* ── Hero row ── */
.footer-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    flex-wrap: wrap;
}

.footer-hero-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-hero-left .label-mono {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin: 0;
}

.footer-tagline em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.footer-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(230, 80, 27, 0.30);
    align-self: flex-end;
}

.footer-hero-cta span {
    font-size: 1.1em;
    transition: transform 0.25s;
}

.footer-hero-cta:hover {
    background: #ff6a35;
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(230, 80, 27, 0.45);
}

.footer-hero-cta:hover span {
    transform: translate(2px, -2px);
}

/* ── Divider ── */
.footer-rule {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* ── Grid: brand + 3 cols ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(3rem, 5vw, 4rem) 0 clamp(3rem, 5vw, 4rem);
}

/* Brand column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
}

.footer-logo .brand-symbol {
    font-size: 1.4rem;
    color: var(--accent);
}

.footer-logo .brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.38);
    max-width: 26ch;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.footer-social-link {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(230, 80, 27, 0.08);
}

/* Nav / contact columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-col a:hover {
    color: var(--white);
}

/* Footer address — reset italic default */
.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Location indicator */
.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 0.25rem;
}

.footer-location-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
    flex-shrink: 0;
    animation: locationPulse 2.5s ease-in-out infinite;
}

@keyframes locationPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.75); }
}

/* ── Bottom bar ── */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.73rem;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-center {
    color: rgba(255, 255, 255, 0.35);
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-hero-cta {
        align-self: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .sv2-cards {
        grid-template-columns: 1fr;
    }

    .sv2-card {
        min-height: auto;
    }

    .sv2-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv2-stat:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .sv2-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }

    .nav {
        width: calc(100vw - 2rem);
        top: 0.75rem;
    }

    .nav.scrolled {
        width: calc(100vw - 2rem);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: #f5efe2;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        transition: right 0.45s var(--ease);
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-item {
        opacity: 1;
        animation: none;
        font-size: 1rem;
        padding: 0.65rem 1rem;
        width: 100%;
        color: #222;
        border-radius: 12px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 11vw, 5rem);
    }

    .hero-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .sv2-card {
        border-radius: 20px;
    }

    .sv2-card-bg-num {
        font-size: 8rem;
    }

    .sv2-stats-bar {
        grid-template-columns: 1fr 1fr;
        border-radius: 18px;
    }

    .av2-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .av2-left {
        position: static;
    }

    .av2-big-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .av2-items {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-cols {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============= BREADCRUMB (SEO) ============= */
.breadcrumb {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray-400);
}

.breadcrumb-list a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

/* ============= FOOTER ESTABLISHED ============= */
.footer-established {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gray-400);
}