/* ══════════════════════════════════════════════════════════
    ELEGANTEK - Design System & Styles
    ══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --primary: #0A1628;
    --primary-light: #0F1E33;
    --secondary: #1E3A5F;
    --accent: #4DA8DA;
    --accent-hover: #5BB8E8;
    --highlight: #89CFF0;
    --text: #E8F1F8;
    --text-muted: #7B9AB8;
    --text-dim: #4A6A8A;
    --bg-dark: #080E1A;
    --bg-body: #0A1222;
    --bg-card: rgba(15, 30, 51, 0.6);
    --bg-glass: rgba(15, 30, 51, 0.4);
    --border: rgba(77, 168, 218, 0.12);
    --border-hover: rgba(77, 168, 218, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(77, 168, 218, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

::selection {
    background: rgba(77, 168, 218, 0.3);
    color: var(--text);
}

/* ─── Utility Classes ───────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.section-tag .dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(77, 168, 218, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.section-title .gradient {
    background: linear-gradient(135deg, var(--highlight), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(77, 168, 218, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(77, 168, 218, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(77, 168, 218, 0.05);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ─── Animations ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: padding var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    padding: 0.7rem 0;
    background: rgba(8, 14, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(77, 168, 218, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1002;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    object-fit: contain;
    transition: transform var(--transition), filter var(--transition);
    filter: drop-shadow(0 5px 12px rgba(77, 168, 218, 0.26));
}

.nav.scrolled .nav-logo-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
}

.nav-logo:hover .nav-logo-icon {
    transform: translateY(-1px) scale(1.04);
    filter: drop-shadow(0 6px 14px rgba(77, 168, 218, 0.24));
}

.footer .nav-logo-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(77, 168, 218, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .section-tag {
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Active nav link for current page */
.nav-link.current {
    color: var(--accent);
}

.nav-link.current::after {
    width: 100%;
    opacity: 1;
}

/* Legacy fallback */
.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 4px 16px rgba(77, 168, 218, 0.2);
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
    font-size: 0.94rem;
    font-weight: 400;
    letter-spacing: 0.34rem;
    text-transform: uppercase;
    color: #f5f7fb;
    line-height: 1;
    transform: translateY(1px);
    text-rendering: geometricPrecision;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 168, 218, 0.3);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    border: 1px solid rgba(77, 168, 218, 0.25);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.lang-btn {
    padding: 6px 10px;
    background: transparent;
    color: var(--text-dim);
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text);
    background: rgba(77, 168, 218, 0.1);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   HERO — Modern Animated
   ══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background:
        radial-gradient(circle at 12% 18%, rgba(25, 80, 128, 0.3), transparent 42%),
        radial-gradient(circle at 84% 20%, rgba(61, 124, 176, 0.24), transparent 46%),
        linear-gradient(155deg, #060d1b 0%, #0a162c 46%, #0d233c 100%);
}

/* ─── Animated Background ───────────────────────────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 194, 245, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 194, 245, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(88, 185, 236, 0.22), transparent 72%);
    top: -250px;
    right: -200px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 95, 145, 0.26), transparent 74%);
    bottom: -200px;
    left: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(169, 223, 247, 0.18), transparent 72%);
    top: 35%;
    left: 45%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(1.05); }
    50% { transform: translate(20px, -20px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.02); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 20px) scale(0.96); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-25px, 35px) scale(1.15); opacity: 1; }
}

/* ─── Particle Canvas ────────────────────────────────────── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ─── Floating Shapes ────────────────────────────────────── */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(77, 168, 218, 0.12);
    border-radius: 4px;
    opacity: 0;
    animation: shapeFloat 12s ease-in-out infinite;
}

.hero-shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 8%;
    transform: rotate(45deg);
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-shape-2 {
    width: 30px;
    height: 30px;
    top: 65%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-shape-3 {
    width: 45px;
    height: 45px;
    top: 25%;
    right: 25%;
    transform: rotate(20deg);
    border-color: rgba(137, 207, 240, 0.1);
    animation-delay: 4s;
    animation-duration: 16s;
}

.hero-shape-4 {
    width: 20px;
    height: 20px;
    top: 75%;
    right: 35%;
    border-radius: 50%;
    border-color: rgba(77, 168, 218, 0.08);
    animation-delay: 1s;
    animation-duration: 11s;
}

.hero-shape-5 {
    width: 50px;
    height: 50px;
    top: 45%;
    right: 5%;
    transform: rotate(60deg);
    border-color: rgba(77, 168, 218, 0.06);
    animation-delay: 3s;
    animation-duration: 18s;
}

@keyframes shapeFloat {
    0%, 100% { opacity: 0; transform: translateY(20px) rotate(0deg); }
    10% { opacity: 0.5; }
    50% { opacity: 0.8; transform: translateY(-30px) rotate(180deg); }
    90% { opacity: 0.3; }
}

/* ─── Scan Line Effect ──────────────────────────────────── */
.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(77, 168, 218, 0.15), transparent);
    animation: scanMove 6s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ─── Hero Layout ────────────────────────────────────────── */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ─── Badge ──────────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(77, 168, 218, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1.55rem;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.8s ease forwards 0.2s;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(77, 168, 218, 0.6);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(77, 168, 218, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 20px rgba(77, 168, 218, 0.3); }
}

/* ─── Title ──────────────────────────────────────────────── */
.hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.hero h1 .line {
    display: block;
    opacity: 0;
    transform: translateY(25px);
}

.hero h1 .line:nth-child(1) { animation: heroFadeUp 0.7s ease forwards 0.4s; }
.hero h1 .line:nth-child(2) { animation: heroFadeUp 0.7s ease forwards 0.55s; }
.hero h1 .line:nth-child(3) { animation: heroFadeUp 0.7s ease forwards 0.7s; }
.hero h1 .line:nth-child(4) { animation: heroFadeUp 0.7s ease forwards 0.85s; }

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--accent) 50%, #3A8FBF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroFadeUp 0.7s ease forwards 0.55s, gradientShift 6s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Description ────────────────────────────────────────── */
.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.85s;
}

/* ─── Actions ────────────────────────────────────────────── */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 1s;
}

/* ─── Stats ──────────────────────────────────────────────── */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 1.15s;
}

.hero-stat {
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ─── Hero Visual (Right Side) ───────────────────────────── */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(40px);
    animation: heroSlideIn 1s ease forwards 0.6s;
}

@keyframes heroSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

/* Terminal Window */
.hero-terminal {
    width: 100%;
    max-width: 480px;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(77, 168, 218, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}

.hero-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(15, 30, 51, 0.6);
    border-bottom: 1px solid var(--border);
}

.hero-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-terminal-dot:nth-child(1) { background: #ff5f57; }
.hero-terminal-dot:nth-child(2) { background: #ffbd2e; }
.hero-terminal-dot:nth-child(3) { background: #28c840; }

.hero-terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.hero-terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 2;
    color: var(--text-muted);
    min-height: 260px;
}

.hero-terminal-line {
    opacity: 0;
    transform: translateY(5px);
    white-space: nowrap;
    overflow: hidden;
}

.hero-terminal-line:nth-child(1) { animation: termLine 0.4s ease forwards 1.2s; }
.hero-terminal-line:nth-child(2) { animation: termLine 0.4s ease forwards 1.5s; }
.hero-terminal-line:nth-child(3) { animation: termLine 0.4s ease forwards 1.8s; }
.hero-terminal-line:nth-child(4) { animation: termLine 0.4s ease forwards 2.1s; }
.hero-terminal-line:nth-child(5) { animation: termLine 0.4s ease forwards 2.4s; }
.hero-terminal-line:nth-child(6) { animation: termLine 0.4s ease forwards 2.7s; }
.hero-terminal-line:nth-child(7) { animation: termLine 0.4s ease forwards 3.0s; }
.hero-terminal-line:nth-child(8) { animation: termLine 0.4s ease forwards 3.3s; }

@keyframes termLine {
    to { opacity: 1; transform: translateY(0); }
}

.t-comment { color: #4A6A8A; }
.t-keyword { color: #c792ea; }
.t-function { color: #82AAFF; }
.t-string { color: #c3e88d; }
.t-accent { color: var(--accent); }
.t-operator { color: #89DDFF; }
.t-number { color: #F78C6C; }
.t-prompt { color: var(--accent); }
.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1.2s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── HERO SVG SCENE ─────────────────────────────────────── */
.hero-terminal-body--svg {
    padding: 0;
    min-height: 0;
    line-height: 0;
}

.hero-scene-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* person left: gentle bob while placing block */
@keyframes hsPersonLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* block lift effect */
@keyframes hsBlockLift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    40% { transform: translateY(-6px) rotate(-4deg); }
    70% { transform: translateY(-3px) rotate(2deg); }
}

/* person right: gentle sway */
@keyframes hsPersonRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* document wave */
@keyframes hsDocWave {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(4deg); }
    70% { transform: rotate(-3deg); }
}

/* gear clockwise */
@keyframes hsGearCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* gear counter-clockwise */
@keyframes hsGearCCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* screen card pulse */
@keyframes hsCard {
    0%, 100% { opacity: 0.85; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

/* line reveal */
@keyframes hsLine {
    0% { width: 0; }
    60% { width: 140px; }
    100% { width: 140px; }
}

/* plus button pulse */
@keyframes hsPlusPulse {
    0%, 100% { r: 8; opacity: 0.85; }
    50% { r: 9.5; opacity: 1; }
}

/* progress sweep */
@keyframes hsProgress {
    0% { width: 0; }
    70% { width: 400px; }
    100% { width: 400px; }
}

/* plant gentle sway */
.hs-plant {
    transform-origin: 32px 238px;
    animation: hsPlant 4s ease-in-out infinite;
}

@keyframes hsPlant {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* ── OLD WORKBENCH STYLES (kept for responsive overrides) ── */
.hero-workbench {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    perspective: 1200px;
}

.wb-scene {
    position: relative;
    min-height: 198px;
    border: 1px solid rgba(77, 168, 218, 0.24);
    border-radius: 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(112, 180, 227, 0.2), transparent 34%),
        radial-gradient(circle at 84% 16%, rgba(62, 145, 202, 0.2), transparent 36%),
        linear-gradient(165deg, rgba(11, 24, 42, 0.98), rgba(9, 18, 31, 0.97));
    box-shadow:
        inset 0 0 0 1px rgba(171, 225, 255, 0.05),
        0 18px 34px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    animation: wbCamera 8s ease-in-out infinite;
}

.wb-scene::before {
    content: '';
    position: absolute;
    inset: -30% -45%;
    background: linear-gradient(110deg, transparent 42%, rgba(173, 233, 255, 0.18) 50%, transparent 58%);
    transform: translateX(-35%) rotate(2deg);
    animation: wbLightSweep 5.8s ease-in-out infinite;
    pointer-events: none;
}

.wb-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, transparent 48%, rgba(2, 8, 16, 0.42) 100%);
    pointer-events: none;
}

.wb-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(153, 205, 240, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 205, 240, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: wbGrid 6.5s linear infinite;
}

@keyframes wbGrid {
    from { transform: translateX(0); }
    to { transform: translateX(-24px); }
}

@keyframes wbCamera {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1); }
    35% { transform: translateY(-2px) rotateX(1deg) rotateY(-1.5deg) scale(1.012); }
    70% { transform: translateY(1px) rotateX(-0.8deg) rotateY(1.3deg) scale(1.008); }
}

@keyframes wbLightSweep {
    0%, 18% { transform: translateX(-45%) rotate(2deg); opacity: 0; }
    30%, 54% { transform: translateX(25%) rotate(2deg); opacity: 1; }
    70%, 100% { transform: translateX(85%) rotate(2deg); opacity: 0; }
}

.wb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
}

.wb-glow-a {
    width: 120px;
    height: 90px;
    left: 6%;
    top: 6%;
    background: rgba(77, 168, 218, 0.28);
}

.wb-glow-b {
    width: 96px;
    height: 70px;
    right: 8%;
    bottom: 12%;
    background: rgba(132, 210, 255, 0.22);
}

.wb-monitor {
    position: absolute;
    left: 46px;
    right: 46px;
    top: 34px;
    bottom: 28px;
    border-radius: 12px;
    border: 1px solid rgba(151, 213, 246, 0.35);
    background: linear-gradient(180deg, rgba(245, 251, 255, 0.95), rgba(223, 236, 246, 0.9));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform-origin: center bottom;
    animation: wbFloat 4.2s ease-in-out infinite;
}

@keyframes wbFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-5px) rotateX(1deg); }
}

.wb-topbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 17px;
    background: linear-gradient(90deg, #2aa5e8, #4db9f4);
}

.wb-sidebar {
    position: absolute;
    top: 17px;
    bottom: 0;
    left: 0;
    width: 24%;
    background: linear-gradient(180deg, rgba(45, 88, 121, 0.2), rgba(28, 62, 92, 0.1));
}

.wb-header {
    position: absolute;
    left: 28%;
    top: 25px;
    width: 52%;
    height: 10px;
    border-radius: 999px;
    background: rgba(47, 107, 150, 0.38);
    animation: wbPulse 3.2s ease-in-out infinite;
}

.wb-card {
    position: absolute;
    top: 44px;
    height: 34px;
    border-radius: 8px;
    border: 1px dashed rgba(62, 128, 171, 0.35);
    background: rgba(255, 255, 255, 0.68);
    transform-origin: center;
    box-shadow: 0 6px 10px rgba(21, 66, 102, 0.15);
    animation: wbCardIn 3.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.wb-card-1 { left: 28%; width: 21%; }
.wb-card-2 { left: 51%; width: 21%; animation-delay: 0.35s; }
.wb-card-3 { right: 8%; width: 16%; animation-delay: 0.7s; }

.wb-line {
    position: absolute;
    left: 28%;
    height: 5px;
    border-radius: 999px;
    background: rgba(49, 111, 153, 0.34);
}

.wb-line-1 { width: 46%; top: 88px; }
.wb-line-2 { width: 33%; top: 98px; }
.wb-line-3 { width: 41%; top: 108px; }

.wb-badge {
    position: absolute;
    right: 10px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #49b9f4;
    box-shadow: 0 0 0 0 rgba(73, 185, 244, 0.6);
    animation: wbPing 2.4s ease-out infinite;
}

@keyframes wbPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes wbCardIn {
    0%, 100% { transform: translateY(3px) scale(0.95); opacity: 0.8; }
    30%, 62% { transform: translateY(-2px) scale(1); opacity: 1; }
}

@keyframes wbPing {
    0% { box-shadow: 0 0 0 0 rgba(73, 185, 244, 0.55); }
    100% { box-shadow: 0 0 0 12px rgba(73, 185, 244, 0); }
}

.wb-orbit {
    position: absolute;
    border: 1px solid rgba(128, 196, 236, 0.38);
    border-radius: 999px;
    filter: drop-shadow(0 0 6px rgba(125, 204, 247, 0.25));
}

.wb-orbit-1 {
    width: 130px;
    height: 48px;
    left: 12px;
    bottom: 16px;
    animation: wbOrbit 9s linear infinite;
}

.wb-orbit-2 {
    width: 98px;
    height: 38px;
    right: 14px;
    top: 18px;
    animation: wbOrbit 11s linear infinite reverse;
}

@keyframes wbOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wb-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8ed8ff;
    box-shadow: 0 0 10px rgba(142, 216, 255, 0.7);
}

.wb-node-a { left: 24px; bottom: 38px; animation: wbNode 2.6s ease-in-out infinite; }
.wb-node-b { left: 112px; bottom: 28px; animation: wbNode 2.6s ease-in-out infinite 0.5s; }
.wb-node-c { right: 28px; top: 34px; animation: wbNode 2.6s ease-in-out infinite 1s; }

@keyframes wbNode {
    0%, 100% { transform: scale(0.9); opacity: 0.65; }
    50% { transform: scale(1.25); opacity: 1; }
}

.wb-flow {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 4px;
    border-radius: 999px;
    background: rgba(132, 206, 248, 0.2);
    overflow: hidden;
}

.wb-flow span {
    display: block;
    width: 24%;
    height: 100%;
    background: linear-gradient(90deg, rgba(143, 224, 255, 0), #8fe0ff, rgba(143, 224, 255, 0));
    animation: wbFlow 2.5s ease-in-out infinite;
}

@keyframes wbFlow {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(620%); }
}

.wb-cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #9adfff 56%, transparent 72%);
    box-shadow: 0 0 12px rgba(154, 223, 255, 0.85);
    animation: wbCursor 3.8s ease-in-out infinite;
}

.wb-cursor::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(154, 223, 255, 0.5);
    border-radius: 50%;
    animation: wbClickPulse 1.4s ease-out infinite;
}

@keyframes wbCursor {
    0% { left: 26%; top: 54px; }
    26% { left: 70%; top: 52px; }
    56% { left: 66%; top: 106px; }
    82% { left: 36%; top: 96px; }
    100% { left: 26%; top: 54px; }
}

@keyframes wbClickPulse {
    0%, 60%, 100% { transform: scale(0.7); opacity: 0; }
    20% { transform: scale(1); opacity: 0.9; }
    40% { transform: scale(1.35); opacity: 0; }
}

.wb-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(80, 171, 220, 0.2);
}

.wb-track-runner {
    display: block;
    width: 24%;
    height: 100%;
    background: linear-gradient(90deg, #50abe0, #a3e6ff);
    box-shadow: 0 0 14px rgba(130, 210, 248, 0.6);
    animation: wbRunner 3.8s ease-in-out infinite;
}

@keyframes wbRunner {
    0% { transform: translateX(-120%); }
    62% { transform: translateX(350%); }
    100% { transform: translateX(350%); }
}

/* Glow ring behind terminal */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.04) 0%, transparent 65%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--highlight), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(77, 168, 218, 0.1), rgba(30, 58, 95, 0.2));
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(77, 168, 218, 0.15), rgba(30, 58, 95, 0.3));
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(77, 168, 218, 0.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    padding: 4px 12px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid rgba(77, 168, 218, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   PROCESS / HOW WE WORK
   ══════════════════════════════════════════════════════════ */
.process-section {
    background: var(--bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 52px;
    left: calc(16.6667% + 26px);
    right: calc(16.6667% + 26px);
    height: 1px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    transition: all var(--transition);
}

.process-card:hover .process-number {
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(77, 168, 218, 0.3);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   ABOUT / MISSION
   ══════════════════════════════════════════════════════════ */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 1.2rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-title span {
    color: var(--accent);
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-card {
    padding: 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.value-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About visual */
.about-visual {
    position: relative;
}

.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(77, 168, 218, 0.04), transparent 50%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(77, 168, 218, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about-stat:hover {
    border-color: var(--border-hover);
    background: rgba(77, 168, 218, 0.06);
}

.about-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   TECH STACK
   ══════════════════════════════════════════════════════════ */
.tech-section {
    background: var(--bg-body);
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.tech-category-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(77, 168, 218, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.tech-item:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: rgba(77, 168, 218, 0.08);
    transform: translateY(-2px);
}

.tech-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   PORTFOLIO / PROJECTS
   ══════════════════════════════════════════════════════════ */
.portfolio-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.portfolio-preview {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-preview-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 20px 20px;
}

.portfolio-preview-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 1;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.portfolio-body {
    padding: 1.8rem;
}

.portfolio-type {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.portfolio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.portfolio-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    padding: 4px 10px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-star {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.testimonial-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: var(--bg-card);
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(15, 30, 51, 0.8);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(77, 168, 218, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 18, 34, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A6A8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--primary);
    color: var(--text);
}

.form-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 168, 218, 0.3);
}

.form-submit svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-body);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(3rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.08), transparent 60%);
    border-radius: 50%;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-brand-lockup {
    width: min(160px, 100%);
    height: auto;
    filter: saturate(1.12) contrast(1.05) brightness(1.04) drop-shadow(0 8px 18px rgba(77, 168, 218, 0.14));
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social-link:hover {
    border-color: var(--accent);
    background: rgba(77, 168, 218, 0.1);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: fill var(--transition);
}

.footer-social-link:hover svg {
    fill: var(--accent);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.35rem 0;
    transition: color var(--transition), transform var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-bottom a {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════════════ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(77, 168, 218, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 168, 218, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ══════════════════════════════════════════════════════════
   INDEX - HIGHLIGHTS (unique compact sections)
   ══════════════════════════════════════════════════════════ */
.highlights-section {
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(77, 168, 218, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    border-color: rgba(77, 168, 218, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(77, 168, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2.5rem;
    transition: all var(--transition);
}

.section-more:hover {
    gap: 12px;
    color: var(--highlight);
}

.section-more svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* INDEX - KEY NUMBERS */
.numbers-section {
    padding: 60px 0;
    border-top: 1px solid rgba(77, 168, 218, 0.06);
    border-bottom: 1px solid rgba(77, 168, 218, 0.06);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.number-item {
    padding: 1.5rem;
}

.number-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-mono);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.number-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* INDEX - FEATURED PROJECTS */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-line {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Navigation - activate hamburger menu */
    .nav-logo-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .nav.scrolled .nav-logo-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .nav-logo-text {
        font-size: 0.88rem;
        letter-spacing: 0.24rem;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(8, 14, 26, 0.99);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 5rem 2rem 3rem;
        border: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.97);
        transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-links {
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
        align-items: center;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: 6px 0;
    }

    .nav-cta {
        margin-top: 0.5rem;
        padding: 14px 36px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-shapes {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 50px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .wb-monitor {
        left: 34px;
        right: 34px;
        top: 30px;
        bottom: 24px;
    }

    .wb-orbit-2 {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .nav-logo-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .nav.scrolled .nav-logo-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
    }

    .nav-logo-text {
        font-size: 0.8rem;
        letter-spacing: 0.16rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header h1 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-terminal-body {
        padding: 14px;
    }

    .hero-workbench {
        min-height: 230px;
    }

    .wb-scene {
        min-height: 175px;
    }

    .wb-monitor {
        left: 20px;
        right: 20px;
        top: 24px;
        bottom: 20px;
    }

    .wb-header,
    .wb-card,
    .wb-line {
        transform: scale(0.92);
        transform-origin: left center;
    }

    .number-value {
        font-size: 2rem;
    }
}

/* ══════════════════════════════════════════════════════════
   PARTNERS / TECH MARQUEE
   ══════════════════════════════════════════════════════════ */
.partners-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 18, 34, 0.5);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    gap: 3.5rem;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity var(--transition), color var(--transition);
    cursor: default;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--accent);
}

.partner-logo svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: currentColor;
    flex-shrink: 0;
}

.partner-logo span {
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    transform: translateY(110%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    pointer-events: all;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(15, 30, 51, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(77, 168, 218, 0.06);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--accent);
    margin-top: 2px;
}

.cookie-title {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--text);
}

.cookie-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 500px;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-btn-accept:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 168, 218, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-btn-reject:hover {
    color: var(--text);
    border-color: var(--border-hover);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    padding: 10px 14px;
}

.cookie-btn-settings:hover {
    color: var(--accent-hover);
    background: rgba(77, 168, 218, 0.06);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-desc {
        max-width: 100%;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .partners-track {
        gap: 2.5rem;
    }

    .partner-logo {
        font-size: 0.8rem;
    }

    .partner-logo svg {
        width: 18px;
        height: 18px;
    }
}
