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

:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.45);
  --blue: #E05A1A;
  --blue-light: #F07838;
  --blue-dark: #B83D0F;
  --cyan: #F07838;
  --green: #10b981;
  --grad-1: linear-gradient(135deg, #E05A1A, #F07838);
  --grad-2: linear-gradient(135deg, #B83D0F, #E05A1A);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 24px rgba(224,90,26,0.3);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(224,90,26,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px;
}
.btn-nav:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(224,90,26,0.08);
  border: 1px solid rgba(224,90,26,0.2);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.03em;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #E05A1A, transparent);
  top: -200px; left: -150px;
  animation: float1 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F07838, transparent);
  top: 0; right: -100px;
  animation: float2 12s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #E05A1A, transparent);
  bottom: -50px; left: 45%;
  animation: float1 14s ease-in-out infinite reverse;
  opacity: 0.1;
}
@keyframes float1 {
  0%,100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(24px) scale(0.96); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,90,26,0.08);
  border: 1px solid rgba(224,90,26,0.2);
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  backdrop-filter: blur(8px);
  width: fit-content;
  margin: 0 auto;
}
.hero-proof-text { display: flex; flex-direction: column; gap: 1px; }
.hero-proof-main {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.hero-proof-main span {
  color: var(--blue);
}
.hero-proof-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.avatar-stack { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  margin-left: -8px;
  color: #fff;
}
.avatar:first-child { margin-left: 0; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== CLIENTS ===== */
.clients-section {
  padding: 56px 0 120px;
  position: relative;
}
.clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  min-height: 100px;
}
.client-logo-wrap:last-child { border-right: none; }
.client-logo-wrap:hover { background: rgba(255,255,255,0.03); }
.client-logo {
  max-height: 52px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.client-logo--invert {
  filter: brightness(0) invert(1);
}
.client-logo-wrap:hover .client-logo { opacity: 1; }
.client-logo-svg {
  width: 160px;
  height: 56px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.client-logo-wrap:hover .client-logo-svg { opacity: 0.9; }

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-wrap { border-right: 1px solid var(--border); }
  .client-logo-wrap:nth-child(even) { border-right: none; }
  .client-logo-wrap:nth-child(1),
  .client-logo-wrap:nth-child(2) { border-bottom: 1px solid var(--border); }
  .client-logo-wrap:nth-child(3),
  .client-logo-wrap:nth-child(4) { border-bottom: none; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg-2);
}
.marquee-track { display: flex; }
.marquee-items {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
.marquee-items span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.sep { color: var(--blue) !important; font-size: 10px !important; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { padding: 120px 0; position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-card:hover { background: rgba(224,90,26,0.04); }
.service-card--featured {
  background: rgba(224,90,26,0.05);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(224,90,26,0.1);
  border: 1px solid rgba(224,90,26,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
}
.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-list { margin-bottom: 32px; }
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.card-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  bottom: -80px; right: -60px;
  opacity: 0.08;
  pointer-events: none;
}
.card-glow--blue { background: var(--blue); }

/* ===== STATS / RESULTS BENTO ===== */
.stats {
  padding: 100px 0 120px;
  background: var(--bg-2);
  position: relative;
}
.stats .section-header { margin-bottom: 56px; }

/* ── Results Bento Grid ─────────────────── */
.rb-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1.5fr 1.3fr;
  grid-template-rows: 210px 210px;
  grid-template-areas:
    "a b c d"
    "e b f g";
  gap: 14px;
  transform: perspective(1200px) rotateX(2deg);
  transform-origin: center top;
}

/* Base card */
.rb-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rb-card:hover { transform: translateY(-4px) scale(1.01); }

/* Grid areas */
.rb-card--a { grid-area: a; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 22px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.rb-card--b { grid-area: b; background: #0e0e0e; border: 1px solid rgba(224,90,26,0.2); overflow: hidden; }
.rb-card--c { grid-area: c; overflow: hidden; position: relative; }
.rb-card--d { grid-area: d; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.rb-card--e { grid-area: e; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.08); padding: 22px 18px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.rb-card--f { grid-area: f; background: linear-gradient(135deg,#E05A1A 0%,#B83D0F 100%); padding: 28px 28px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 48px rgba(224,90,26,0.35); }
.rb-card--g { grid-area: g; background: rgba(255,255,255,0.03); border: 1px solid rgba(224,90,26,0.15); padding: 20px; display: flex; flex-direction: column; }

/* A — Platforms */
.rb-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.rb-platform-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rb-platform-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; font-weight: 500; margin: 4px 0 0; }
.rb-badge { display: inline-block; background: rgba(224,90,26,0.15); border: 1px solid rgba(224,90,26,0.3); color: #E05A1A; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

/* B — Brand tall card */
.rb-brand-glow { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(224,90,26,0.3), transparent 70%); top: -40px; right: -40px; border-radius: 50%; pointer-events: none; }
.rb-brand-label { position: absolute; top: 18px; left: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); z-index: 2; }
.rb-brand-name { position: absolute; top: 36px; left: 18px; font-size: clamp(26px,3.5vw,36px); font-weight: 900; line-height: 1.05; color: #fff; z-index: 2; }
.rb-brand-name span { color: #E05A1A; }
.rb-brand-photo { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height: 68%; object-fit: cover; object-position: top center; }
.rb-brand-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(to bottom, #0e0e0e 0%, transparent 40%); }

/* C — Photo card */
.rb-card--photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: transform 0.4s ease, filter 0.3s; }
.rb-card--photo:hover img { transform: scale(1.05); filter: brightness(0.7); }
.rb-photo-overlay { position: absolute; bottom: 14px; left: 14px; }
.rb-photo-tag { background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }

/* D — Step / stat card */
.rb-step-num { font-size: clamp(32px,4vw,48px); font-weight: 900; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.rb-step-num span { font-size: 0.55em; color: #E05A1A; }
.rb-step-dots { display: flex; gap: 5px; margin-top: 10px; }
.rb-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.rb-dot--active { background: #E05A1A; width: 22px; border-radius: 4px; }
.rb-step-title { font-size: 15px; font-weight: 700; color: #fff; margin-top: 12px; }
.rb-step-sub { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; margin-top: 4px; }

/* E — Tags */
.rb-tag-row { display: flex; align-items: center; gap: 7px; }
.rb-tag { display: inline-block; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; white-space: nowrap; }
.rb-tag--active { background: rgba(224,90,26,0.15); border-color: #E05A1A; color: #E05A1A; }
.rb-tag-add { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.4); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: default; flex-shrink: 0; }

/* F — Big stat */
.rb-stat-num { font-size: clamp(52px,6vw,76px); font-weight: 900; letter-spacing: -0.04em; color: #fff; line-height: 0.95; }
.rb-stat-num span { font-size: 0.5em; opacity: 0.8; }
.rb-stat-label { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 8px; line-height: 1.4; }
.rb-stat-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 12px; text-decoration: none; margin-top: auto; transition: background 0.2s; width: fit-content; }
.rb-stat-cta:hover { background: rgba(255,255,255,0.25); }

/* G — Network */
.rb-network-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.rb-network-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }
.rb-network-svg { width: 100%; max-width: 200px; height: auto; }
.rb-network-stat { font-size: 13px; font-weight: 700; color: #E05A1A; text-align: center; margin-top: 6px; }
.rb-network-stat span { font-size: 0.85em; }

/* Responsive */
@media (max-width: 1024px) {
  .rb-grid {
    grid-template-columns: 1fr 1.2fr 1.4fr;
    grid-template-rows: 190px 190px 190px;
    grid-template-areas:
      "a  b  c"
      "d  b  f"
      "e  g  g";
    transform: none;
  }
}
@media (max-width: 820px) {
  .rb-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "b  b"
      "c  d"
      "f  f"
      "a  e"
      "g  g";
    gap: 12px;
    transform: none;
  }
  .rb-card--b { min-height: 240px; }
  .rb-card--c,
  .rb-card--d { min-height: 180px; }
  .rb-card--f { min-height: 190px; }
  .rb-card--a,
  .rb-card--e { min-height: 150px; }
  .rb-card--g { min-height: 160px; }
}
@media (max-width: 480px) {
  .rb-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "b"
      "f"
      "c"
      "d"
      "a"
      "e"
      "g";
    gap: 10px;
  }
  .rb-card--b { min-height: 220px; }
  .rb-card--f { min-height: 170px; }
  .rb-card--c { min-height: 160px; }
  .rb-card--d,
  .rb-card--a,
  .rb-card--e { min-height: 140px; }
  .rb-card--g { min-height: 140px; }
  .rb-stat-num { font-size: 52px; }
}

/* Base bento card */
.bento-card {
  border-radius: 20px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-4px); }

/* Card variants */
.bento-card--hero {
  background: linear-gradient(135deg, #E05A1A 0%, #F07838 60%, #B83D0F 100%);
  padding: 52px 48px 44px;
  box-shadow: 0 0 60px rgba(224,90,26,0.35);
}
.bento-card--hero:hover { box-shadow: 0 8px 80px rgba(224,90,26,0.5); }

.bento-card--dark {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
}
.bento-card--dark:hover { border-color: rgba(224,90,26,0.3); box-shadow: 0 0 30px rgba(224,90,26,0.1); }

.bento-card--glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.bento-card--glass:hover { border-color: rgba(255,255,255,0.18); }

.bento-card--orange {
  background: linear-gradient(135deg, #E05A1A, #F07838);
  box-shadow: 0 4px 40px rgba(224,90,26,0.25);
}
.bento-card--rust {
  background: linear-gradient(135deg, #B83D0F, #8B2D0A);
  box-shadow: 0 4px 40px rgba(184,61,15,0.25);
}
.bento-card--maroon {
  background: linear-gradient(135deg, #7A1E0A 0%, #5C1508 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 40px rgba(90,15,5,0.4);
}
.bento-card--glow-orange {
  border-color: rgba(224,90,26,0.2);
  box-shadow: 0 0 40px rgba(224,90,26,0.08);
}

/* Glow blobs */
.bento-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
  border-radius: 50%;
}
.bento-glow--maroon {
  background: radial-gradient(circle, rgba(224,90,26,0.2), transparent 70%);
}

/* Numbers */
.bento-big-num {
  font-size: clamp(64px, 10vw, 108px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 0.9;
  margin: 8px 0 4px;
}
.bento-big-num span { font-size: 0.55em; }
.bento-big-num--sm { font-size: clamp(48px, 7vw, 80px); }

.bento-num {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin: 10px 0 4px;
}
.bento-num span { font-size: 0.6em; opacity: 0.85; }

.bento-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.bento-desc {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.bento-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* Icon */
.bento-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.bento-card--dark .bento-icon { background: rgba(224,90,26,0.12); color: var(--blue); }
.bento-card--glass .bento-icon { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.bento-card--glow-orange .bento-icon { color: var(--blue); background: rgba(224,90,26,0.12); }

/* Progress bar */
.bento-bar {
  margin-top: 20px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.bento-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
}
.bento-card--dark .bento-bar-fill { background: var(--blue); }
.bento-card--glass .bento-bar-fill { background: rgba(255,255,255,0.3); }

/* Pill badge */
.bento-pill {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}
.bento-pill--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

/* Wide inner layout */
.bento-wide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Note */
.bento-note {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
  max-width: 260px;
}

/* Section divider label */
.bento-divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 0;
}
.bento-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-span-2 { grid-column: span 1; }
  .bento-card--hero { padding: 36px 28px; }
  .bento-card { padding: 28px 24px; }
  .bento-wide-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== WORK / FAN DECK ===== */
.work { padding: 120px 0 80px; position: relative; }

.fan-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  width: 100%;
}

.fan-deck {
  position: relative;
  width: 100%;
  height: 360px;
  perspective: 1000px;
}

/* Each fan card */
.fan-card {
  position: absolute;
  width: 240px;
  height: 300px;
  left: 50%;
  top: 50%;
  margin-left: -120px;
  margin-top: -150px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1),
              box-shadow 0.4s ease,
              filter 0.3s ease;
  will-change: transform;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.fan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  pointer-events: none;
}

/* Play button overlay */
.fan-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.fan-play::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background: #E05A1A;
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(224,90,26,0.7);
}
.fan-play svg {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}
.fan-card:hover .fan-play { opacity: 1; }
.fan-card:hover img { filter: brightness(0.65); transform: scale(1.04); }

/* Floating campaign badge */
.fan-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

/* Fan controls */
.fan-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fan-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.fan-btn:hover { background: #E05A1A; border-color: #E05A1A; }

.fan-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.fan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.fan-dot.active {
  background: #E05A1A;
  transform: scale(1.5);
}

/* VIDEO MODAL (kept) */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(224,90,26,0.6);
}
.video-play-btn svg { position: relative; z-index: 1; margin-left: 3px; }

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.video-modal-close:hover { background: rgba(255,255,255,0.2); }

.video-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .fan-deck { height: 320px; }
  .fan-card { width: 210px; height: 262px; margin-left: -105px; margin-top: -131px; }
}
@media (max-width: 768px) {
  .fan-stage { gap: 32px; }
  .fan-deck { height: 270px; }
  .fan-card { width: 172px; height: 215px; margin-left: -86px; margin-top: -107px; }
  .fan-badge { font-size: 10px; padding: 5px 8px; }
}
@media (max-width: 480px) {
  .fan-stage { gap: 24px; }
  .fan-deck { height: 230px; }
  .fan-card { width: 145px; height: 181px; margin-left: -72px; margin-top: -90px; }
  .fan-badge { font-size: 9px; padding: 4px 7px; }
  .fan-btn { width: 38px; height: 38px; }
  .fan-controls { gap: 12px; }
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 0 12px;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(224,90,26,0.35);
}
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-connector {
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(to right, var(--blue), var(--cyan));
  margin-top: 25px;
  opacity: 0.3;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; position: relative; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonial-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(224,90,26,0.03); }
.stars {
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,90,26,0.15), transparent);
  top: -150px; left: -150px;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent);
  bottom: -100px; right: -100px;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(224,90,26,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #0f0f0f; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.75;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover {
  color: var(--text);
  background: rgba(224,90,26,0.1);
  border-color: rgba(224,90,26,0.3);
  transform: translateY(-2px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ===== ARTICLES & UPDATES ===== */
.articles-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.article-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224,90,26,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #111;
  transition: transform 0.4s ease;
}
.article-card:hover .article-thumb { transform: scale(1.04); }
.article-thumb-wrap {
  overflow: hidden;
  position: relative;
}
.article-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(224,90,26,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.article-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); flex-shrink: 0; }

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.article-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #E05A1A;
  margin-top: 4px;
  transition: gap 0.2s;
}
.article-card:hover .article-read-more { gap: 10px; }

.article-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(224,90,26,0.12), rgba(224,90,26,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-thumb-placeholder svg { opacity: 0.25; }

@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 580px) {
  .articles-section { padding: 72px 0; }
  .articles-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .article-body { padding: 18px 18px 16px; }
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PHONE INPUT WITH COUNTRY CODE ===== */
.phone-field-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: visible;
  background: #111;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-field-wrap:focus-within {
  border-color: #E05A1A;
  box-shadow: 0 0 0 3px rgba(224,90,26,0.15);
}
.cc-dropdown-wrap {
  position: relative;
  flex-shrink: 0;
}
.cc-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1c1c1c;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px 0 0 10px;
  padding: 0 12px;
  height: 100%;
  min-height: 52px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.cc-trigger:hover { background: #242424; }
.cc-trigger.open { background: #242424; border-color: #E05A1A; }
.cc-flag { font-size: 18px; line-height: 1; }
.cc-code { font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
.cc-arrow { opacity: 0.5; transition: transform 0.2s; flex-shrink: 0; }
.cc-trigger.open .cc-arrow { transform: rotate(180deg); }

.cc-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 999;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.cc-list.open { display: block; }
.cc-search-wrap {
  padding: 8px 10px 4px;
  position: sticky;
  top: 0;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.cc-search {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  padding: 7px 10px;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}
.cc-search::placeholder { color: rgba(255,255,255,0.3); }
.cc-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: background 0.15s;
}
.cc-option span { margin-left: auto; color: #E05A1A; font-weight: 600; font-size: 13px; }
.cc-option:hover { background: rgba(224,90,26,0.1); color: #fff; }
.cc-option.selected { background: rgba(224,90,26,0.15); color: #fff; }
.cc-option.hidden { display: none; }

.phone-number-input {
  background: transparent;
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  flex: 1;
  min-width: 0;
  border-radius: 0 10px 10px 0;
}
.phone-number-input::placeholder { color: rgba(255,255,255,0.35); }

/* ===== MULTI-SELECT ===== */
.ms-wrapper { position: relative; }
.ms-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
  min-height: 48px;
}
.ms-trigger:focus, .ms-trigger.open { border-color: rgba(224,90,26,0.5); outline: none; }
.ms-placeholder { font-size: 14px; color: var(--text-muted); flex: 1; }
.ms-placeholder.has-value { color: var(--text); }
.ms-arrow { flex-shrink: 0; color: var(--text-muted); transition: transform 0.2s; }
.ms-trigger.open .ms-arrow { transform: rotate(180deg); }

.ms-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
.ms-dropdown.open { display: block; }
.ms-group-label {
  padding: 10px 14px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}
.ms-group-label:first-child { margin-top: 0; }
.ms-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.ms-option:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.ms-option input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.ms-option:has(input:checked) { color: var(--text); background: rgba(224,90,26,0.07); }
.ms-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(224,90,26,0.12);
  border: 1px solid rgba(224,90,26,0.25);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.ms-tag-remove {
  background: none; border: none;
  color: var(--blue-light);
  cursor: pointer; font-size: 15px;
  line-height: 1; padding: 0;
  opacity: 0.7; transition: opacity 0.15s;
}
.ms-tag-remove:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .br-hide { display: none; }
  /* Hero */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 32px) 0 72px; }
  .hero-title { font-size: clamp(36px, 9vw, 60px); }
  .hero-sub { font-size: 15px; padding: 0 8px; }
  /* Work */
  .work-grid { grid-template-columns: 1fr; }
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .cta-wrapper { grid-template-columns: 1fr; gap: 40px; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 32px; flex: 0 0 32px; background: linear-gradient(to bottom, var(--blue), var(--cyan)); margin-top: 0; }
  /* Clients */
  .client-logo-wrap { padding: 20px 16px; }
  .client-logo { max-width: 110px; max-height: 40px; }
  .client-logo-svg { width: 110px; height: 44px; }
  /* Sections padding */
  .stats { padding: 80px 0; }
  .work { padding: 80px 0 60px; }
  .testimonials { padding: 80px 0; }
  .cta-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  /* Hero */
  .hero { padding: calc(var(--nav-h) + 20px) 0 56px; }
  .hero-title { font-size: clamp(30px, 10vw, 46px); }
  .hero-sub { font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  /* Services */
  .services { padding: 72px 0; }
  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  /* Clients */
  .client-logo-wrap { padding: 16px 10px; }
  .client-logo { max-width: 90px; max-height: 36px; }
  .client-logo-svg { width: 90px; height: 38px; }
  /* Section headers */
  .section-title { font-size: clamp(26px, 7vw, 38px); }
  /* Form */
  .contact-form { padding: 24px 20px; }
  /* Phone field */
  .phone-field-wrap { flex-wrap: nowrap; }
  .cc-trigger { padding: 0 10px; min-width: 80px; }
  .phone-number-input { min-width: 0; }
}
