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

:root {
  --accent:      #FF6B35;
  --accent-dark: #E8512B;
  --accent-dim:  rgba(255,107,53,0.13);
  --accent-glow: rgba(255,107,53,0.42);
  --bg:          #0D0A1E;
  --bg2:         #110E28;
  --bg3:         #171438;
  --surface:     #1D1840;
  --surface2:    #231E4C;
  --surface3:    #2A255A;
  --text:        #A09AC8;
  --heading:     #EDE8FF;
  --border:      #312A5A;
  --muted:       #635B96;
  --white:       #fff;
  --radius:      14px;
  --radius-lg:   22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress { display: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring { display: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--heading);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #060508;
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,10,30,0.97);
  color: var(--white);
  z-index: 8888;
  padding: 18px 24px;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.6);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.cookie-content {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 14px; color: var(--text); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-box {
  background: var(--surface2);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px; width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  border: 1px solid var(--border);
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; margin-bottom: 22px;
  color: var(--heading);
}
.cookie-option { margin-bottom: 16px; }
.cookie-option label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; cursor: pointer; color: var(--heading);
}
.cookie-option label input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }
.cookie-option p { font-size: 13px; color: var(--text); margin-top: 4px; padding-left: 26px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--accent);
  color: #060508;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s, border-color 0.22s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--accent-glow);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--heading);
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  color: #666;
  transition: border-color 0.22s, background 0.22s, color 0.22s, transform 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.18s, color 0.22s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(245,155,43,0.1);
  border-color: rgba(245,155,43,0.45);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn-ghost .arrow-icon {
  display: inline-block;
  transition: transform 0.2s;
}
.btn-ghost:hover .arrow-icon { transform: translateY(3px); }

.btn-large { padding: 17px 44px; font-size: 16px; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 0; }

section h2, .section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.12;
}
section h2 em, .section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-scale {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: relative;
  z-index: 1000;
  height: 70px;
  background: #0D0A1E;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(13,10,30,0.95);
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(18px);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--heading); letter-spacing: -0.3px;
}
.logo-dot { color: var(--accent); }

.nav-links {
  display: flex; list-style: none;
  gap: 34px; align-items: center;
}
.nav-links a {
  font-size: 14.5px; font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent) !important;
  color: #060508 !important;
  padding: 9px 22px !important;
  border-radius: 9px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.22s !important, box-shadow 0.22s !important, transform 0.18s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 24px var(--accent-glow) !important;
  transform: translateY(-2px) !important;
}

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--heading); border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-img {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-bg-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.3) brightness(0.42) contrast(1.1);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,10,30,0.90) 0%,
    rgba(13,10,30,0.65) 45%,
    rgba(255,107,53,0.18) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1180px; margin: 0 auto;
  padding: 0 28px;
  min-height: 100vh;
  align-items: center;
  padding-top: 70px;
}

/* Hero Left */
.hero-left { padding: 60px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,155,43,0.1);
  border: 1px solid rgba(245,155,43,0.28);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,155,43,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(245,155,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,155,43,0); }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 26px;
  color: var(--white);
}
.title-row { display: block; }
.title-row.italic { font-style: italic; }
.title-row.accent { color: var(--accent); }

.hero-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-mini-stats {
  display: flex; align-items: center; gap: 0;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: 430px;
}
.mini-stat {
  display: flex; flex-direction: column;
  align-items: center; flex: 1;
}
.mini-num {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--accent); font-weight: 400;
}
.mini-lbl { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; }
.mini-divider {
  width: 1px; height: 36px;
  background: var(--border); flex-shrink: 0;
}

/* Hero Right — Mosaic */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 0;
}
.hero-mosaic {
  position: relative;
  width: 100%; max-width: 520px;
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 56% 44%;
  gap: 12px;
  height: 560px;
}
.mosaic-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.mosaic-item:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.mosaic-item img { transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,5,8,0.6) 100%);
  pointer-events: none;
}
.mosaic-a { grid-column: 1; grid-row: 1 / 3; }
.mosaic-b { grid-column: 2; grid-row: 1; }
.mosaic-c { grid-column: 2; grid-row: 2; }
.mosaic-d {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 130px; height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 3;
}

.mosaic-float {
  position: absolute;
  top: 20px; right: -20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  animation: floatCard 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-star {
  font-size: 22px; color: var(--accent);
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.float-text {
  font-size: 14px; font-weight: 700; color: var(--heading); line-height: 1.3;
}
.float-text span { color: var(--accent); font-size: 12px; font-weight: 600; }

.mosaic-badge {
  position: absolute;
  bottom: 20px; right: -10px;
  background: var(--accent);
  color: #060508;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 14px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(245,155,43,0.35);
  animation: floatCard 5s ease-in-out infinite reverse;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.scroll-track {
  width: 1.5px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
.scroll-thumb {
  width: 100%; height: 40%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}
.hero-scroll-hint span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  writing-mode: horizontal-tb;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ticker-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #060508;
  flex-shrink: 0;
}
.ticker-sep {
  font-size: 10px; opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: 'ÇALIŞMA';
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 22vw;
  color: rgba(255,255,255,0.015);
  font-weight: 400;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.phil-left h2 { margin-bottom: 20px; }
.phil-left p {
  font-size: 17px; color: var(--text);
  line-height: 1.8; margin-bottom: 36px; max-width: 440px;
}
.phil-right {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 12px;
}
.phil-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.phil-card:hover {
  border-color: rgba(245,155,43,0.35);
  box-shadow: 0 8px 36px rgba(245,155,43,0.08);
  transform: translateX(6px);
}
.phil-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--accent);
  opacity: 0.35; line-height: 1;
  flex-shrink: 0; min-width: 44px;
}
.phil-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; font-weight: 400;
  color: var(--heading); margin-bottom: 6px;
}
.phil-card p { font-size: 14.5px; color: var(--text); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 110px 0;
  background: var(--bg);
}
.services-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-item:last-child { border-bottom: none; }
.service-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-item:hover { background: var(--surface2); }
.service-item:hover::before { opacity: 1; }

.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px; color: var(--accent);
  opacity: 0.2; font-weight: 400;
  line-height: 1; flex-shrink: 0;
  transition: opacity 0.3s;
}
.service-item:hover .svc-num { opacity: 0.5; }

.svc-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--heading); margin-bottom: 8px;
  transition: color 0.2s;
}
.service-item:hover .svc-content h3 { color: var(--accent); }
.svc-content p { font-size: 15px; color: var(--text); line-height: 1.65; max-width: 500px; }
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.svc-tags span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface3); border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.service-item:hover .svc-tags span {
  border-color: rgba(245,155,43,0.25);
  color: var(--accent);
}

.svc-img {
  width: 100px; height: 80px;
  border-radius: 12px; overflow: hidden;
  flex-shrink: 0;
  opacity: 0.5;
  transform: scale(0.95);
  transition: opacity 0.35s, transform 0.35s;
}
.service-item:hover .svc-img { opacity: 1; transform: scale(1); }

.svc-arrow {
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 10px; flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.service-item:hover .svc-arrow {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-section {
  padding: 80px 0 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.gallery-label {
  padding: 0 0 52px;
  text-align: center;
}
.gallery-label h2 { margin-bottom: 0; }

.gallery-strip {
  display: flex;
  gap: 14px;
  padding: 0 0 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: max(28px, calc((100vw - 1180px)/2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px)/2 + 28px));
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 340px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: grab;
}
.gallery-item--tall { height: 480px; margin-top: -30px; }

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,5,8,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white);
  font-style: italic;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-bg-text {
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 28vw;
  color: rgba(245,155,43,0.025);
  font-weight: 400;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px 40px;
  display: flex; flex-direction: row;
  align-items: flex-start; justify-content: center;
  gap: 0;
  cursor: default;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 0 60px rgba(245,155,43,0.15);
  transition: color 0.3s, text-shadow 0.3s;
}
.stat-item:hover .stat-number {
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow);
}
.stat-plus {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--accent);
  line-height: 1;
  margin-top: 8px;
  font-weight: 400;
}
.stat-label {
  display: block;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--muted); text-transform: uppercase;
  margin-top: 12px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: -28px; left: 0;
}
.stat-item {
  position: relative; padding-bottom: 52px;
}
.stat-divider {
  width: 1px; height: 80px;
  background: var(--border); flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 110px 0;
  background: var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 32px 0 0;
  cursor: default;
}
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(44px + 28px);
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  opacity: 0.35;
}
.step-num-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-num-wrap {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,155,43,0.1);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--accent);
}
.step-body h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--heading); margin-bottom: 10px;
  transition: color 0.2s;
}
.process-step:hover .step-body h4 { color: var(--accent); }
.step-body p { font-size: 14.5px; color: var(--text); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.3);
  border-color: rgba(245,155,43,0.2);
  transform: translateY(-6px);
}
.testimonial-card:hover::before { opacity: 1; }

.t-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 80px; line-height: 0.6;
  color: var(--accent); opacity: 0.2;
  margin-bottom: 20px;
  display: block;
}
.t-text {
  font-size: 15.5px; color: var(--text);
  line-height: 1.75; margin-bottom: 28px;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--surface2), var(--accent-dim));
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: var(--accent);
  flex-shrink: 0; font-weight: 400;
}
.t-info { flex: 1; }
.t-name { font-size: 14px; font-weight: 700; color: var(--heading); }
.t-role { font-size: 12px; color: var(--muted); }
.t-stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 560px;
}
.about-img-main {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s, transform 0.35s;
}
.about-img-main:hover {
  box-shadow: 0 32px 96px rgba(245,155,43,0.12);
  transform: translateY(-6px);
}
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--bg2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 2;
}
.about-exp-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--accent);
  color: #060508;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(245,155,43,0.4);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite 1s;
}
.exp-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400; line-height: 1;
}
.exp-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; margin-top: 4px; }

.about-text h2 { margin-bottom: 20px; }
.about-text > p { font-size: 16.5px; color: var(--text); line-height: 1.8; margin-bottom: 32px; }

.about-features {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 40px;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text); line-height: 1.5;
}
.feat-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,155,43,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.about-feat strong { color: var(--heading); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 80px;
  overflow: hidden;
}
.map-header {
  text-align: center;
  padding: 0 28px 52px;
}
.map-header h2 { margin-bottom: 12px; }
.map-header p { font-size: 17px; color: var(--text); max-width: 480px; margin: 0 auto; }

.map-container {
  position: relative;
  width: 100%;
}
.map-container iframe {
  display: block;
  filter: invert(0.88) hue-rotate(176deg) saturate(0.5) brightness(0.88);
  transition: filter 0.3s;
}
.map-container:hover iframe {
  filter: invert(0.88) hue-rotate(176deg) saturate(0.7) brightness(0.95);
}
.map-info-card {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: rgba(13,10,30,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  min-width: 320px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}
.map-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,155,43,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.map-info-card strong { display: block; color: var(--heading); font-size: 14px; margin-bottom: 4px; }
.map-info-card p { font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 8px; }
.map-open-link {
  font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.3px;
  transition: opacity 0.2s;
  display: inline-block;
}
.map-open-link:hover { opacity: 0.75; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-sub {
  font-size: 17px; color: var(--text);
  margin-top: 12px;
}
.section-header p { margin-top: 12px; }

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 24px;
  padding: 40px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: sticky; top: 100px;
}
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.info-item:hover .info-icon {
  background: var(--accent-dim);
  border-color: rgba(245,155,43,0.3);
}
.info-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.info-value { font-size: 14.5px; color: var(--heading); line-height: 1.55; }
.info-value a { color: var(--heading); transition: color 0.2s; }
.info-value a:hover { color: var(--accent); }

/* Form */
.registration-form {
  display: flex; flex-direction: column; gap: 22px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--surface2);
  color: var(--heading);
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238A84AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg3);
  box-shadow: 0 0 0 3px rgba(245,155,43,0.1);
}

.form-policy { padding: 4px 0; }
.policy-check-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 13.5px; color: var(--text); line-height: 1.6;
}
.policy-check-label input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--accent); cursor: pointer; margin-top: 1px;
}
.policy-check-label a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.policy-check-label a:hover { opacity: 0.8; }

.form-submit-row { padding-top: 6px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,155,43,0.08);
  color: var(--accent);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14.5px; font-weight: 600;
  border: 1px solid rgba(245,155,43,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080616;
  border-top: 1px solid var(--border);
}
.footer-top {
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.footer-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 400;
  color: var(--heading); line-height: 1.2;
}
.footer-cta-text h3 em { font-style: italic; color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-size: 30px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 8px; }
.footer-brand .disclaimer { font-size: 12px; color: var(--muted); font-style: italic; }
.footer-links h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--heading); margin-bottom: 20px; font-weight: 400;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; max-width: 1180px; margin: 0 auto;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

.cookie-pref-btn {
  background: none; border: 1px solid var(--border);
  color: var(--muted); padding: 6px 14px;
  border-radius: 6px; cursor: pointer;
  font-size: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cookie-pref-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 150px 0 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 400;
  color: var(--heading); line-height: 1.15; margin-bottom: 18px;
}
.page-hero p { font-size: 18px; color: var(--text); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { color: var(--muted); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 800px; margin: 0 auto; padding: 80px 24px 100px;
}
.policy-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--heading); margin: 48px 0 14px; line-height: 1.2;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.policy-content ul li { font-size: 16px; color: var(--text); line-height: 1.7; }
.policy-content a { color: var(--accent); }
.policy-content a:hover { text-decoration: underline; }
.policy-updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.team-section { padding: 100px 0; background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.team-card {
  background: var(--surface); border-radius: 18px; padding: 36px 28px;
  border: 1px solid var(--border); text-align: center;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.team-card:hover { box-shadow: 0 16px 48px rgba(245,155,43,0.1); transform: translateY(-5px); border-color: rgba(245,155,43,0.25); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface2), var(--accent-dim));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--accent);
  border: 2px solid var(--border);
}
.team-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--heading); font-weight: 400; margin-bottom: 6px; }
.team-card .team-role { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.team-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

.values-section { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.value-card {
  background: var(--surface); border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover { border-color: rgba(245,155,43,0.3); box-shadow: 0 8px 32px rgba(245,155,43,0.08); }
.value-num { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--accent); opacity: 0.35; line-height: 1; flex-shrink: 0; }
.value-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--heading); font-weight: 400; margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--text); line-height: 1.7; }

.cta-section { padding: 100px 0; background: var(--bg3); text-align: center; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text); margin-bottom: 36px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-mosaic { height: 480px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 380px; }
  .about-img-accent { bottom: -16px; right: -12px; width: 120px; height: 120px; }
  .about-exp-badge { top: 20px; left: -10px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 60px 1fr 60px; }
  .svc-img { display: none; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .registration-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 50px 1fr 40px; gap: 16px; padding: 24px 20px; }
  .svc-arrow { width: 36px; height: 36px; }
  .hero-mini-stats { display: none; }
  .footer-top-inner { flex-direction: column; text-align: center; }
  .back-top { bottom: 20px; right: 20px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(13,10,30,0.97);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 13px 24px; font-size: 16px; cursor: auto; }
  .burger { display: flex; }
}

/* ============================================================
   HERO — SIMPLE IMAGE (replaces mosaic)
   ============================================================ */
.hero-img-simple {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  width: 100%;
}
.hero-img-simple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-img-simple .mosaic-float {
  position: absolute;
  bottom: 28px;
  left: 24px;
}
@media (max-width: 900px) {
  .hero-img-simple { height: 320px; }
}

/* ============================================================
   KILL ANIMATIONS BUT KEEP HOVER TRANSITIONS
   ============================================================ */
*, *::before, *::after {
  animation: none !important;
}
.scroll-progress,
.cursor-dot,
.cursor-ring,
.ticker-wrap,
.hero-scroll-hint,
.back-top { display: none !important; }

.reveal-up, .reveal-scale { opacity: 1 !important; transform: none !important; }

/* ============================================================
   WHITE THEME OVERRIDES
   ============================================================ */
:root {
  --accent:      #FF6B35;
  --accent-dark: #E8512B;
  --accent-dim:  rgba(255,107,53,0.1);
  --accent-glow: rgba(255,107,53,0.32);
  --bg:          #FFFFFF;
  --bg2:         #F8F5F0;
  --bg3:         #F1EBE4;
  --surface:     #FFFFFF;
  --surface2:    #FAF7F3;
  --surface3:    #F3EDE7;
  --text:        #6B6278;
  --heading:     #1A1528;
  --border:      #E8E0D5;
  --muted:       #A498B2;
  --white:       #fff;
}

/* Keep hero dark so bg photo works */
.hero { background: #0D0A1E !important; }
.hero-title { color: #FFFFFF !important; }
.hero-desc { color: rgba(255,255,255,0.8) !important; }
.hero-badge {
  background: rgba(255,107,53,0.15) !important;
  border-color: rgba(255,107,53,0.35) !important;
  color: #FF6B35 !important;
}
.hero-mini-stats {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.mini-lbl { color: rgba(255,255,255,0.55) !important; }
.mini-divider { background: rgba(255,255,255,0.18) !important; }

/* Navbar: transparent with white text over dark hero */
.navbar .nav-links a { color: rgba(255,255,255,0.85) !important; }
.navbar .nav-logo { color: #ffffff !important; }
.navbar .logo-dot { color: var(--accent) !important; }
.navbar .nav-cta { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; }

/* Navbar: white bg + dark text when scrolled */
.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.08) !important;
}
.navbar.scrolled .nav-links a { color: var(--heading) !important; }
.navbar.scrolled .nav-logo { color: var(--heading) !important; }
.navbar.scrolled .logo-dot { color: var(--accent) !important; }

/* Hero single-column centered layout */
.hero-inner {
  grid-template-columns: 1fr !important;
  max-width: 780px !important;
  text-align: center !important;
}
.hero-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 120px 0 100px !important;
}
.hero-desc { max-width: 580px !important; }
.hero-mini-stats { max-width: 480px !important; }
.hero-right { display: none !important; }

/* Services: 3-col grid on white */
.service-item {
  grid-template-columns: 60px 1fr 48px !important;
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

/* Footer stays dark */
.footer { background: #1A1528 !important; }
.footer * { border-color: rgba(255,255,255,0.1); }
.footer-brand p, .footer-links a, .footer-bottom { color: rgba(255,255,255,0.55) !important; }
.footer-links h4, .nav-logo.footer-logo, .footer-bottom a { color: rgba(255,255,255,0.9) !important; }
.footer-links a:hover { color: var(--accent) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
