/* ============================================================
   Brata Media Press — style.css
   Premium Enterprise Digital Agency Website
   Version: 1.0.0
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Core Brand Colors */
  --red:          #D0021B;
  --red-dark:     #9B0015;
  --red-glow:     rgba(208, 2, 27, 0.35);
  --red-subtle:   rgba(208, 2, 27, 0.12);

  /* Dark Backgrounds */
  --bg-deepest:   #050507;
  --bg-deep:      #0A0A0E;
  --bg-dark:      #10101A;
  --bg-card:      #14141F;
  --bg-elevated:  #1A1A28;

  /* Borders & Glass */
  --border-dim:   rgba(255,255,255,0.06);
  --border-red:   rgba(208, 2, 27, 0.4);
  --glass-bg:     rgba(255,255,255,0.03);
  --glass-hover:  rgba(255,255,255,0.06);

  /* Text */
  --text-white:   #FFFFFF;
  --text-silver:  #C8C8D0;
  --text-muted:   #7A7A8A;
  --text-faint:   #3E3E50;

  /* Gradients */
  --grad-red:     linear-gradient(135deg, #D0021B 0%, #6B0010 100%);
  --grad-dark:    linear-gradient(135deg, #0A0A0E 0%, #14141F 100%);
  --grad-hero:    radial-gradient(ellipse at 30% 50%, rgba(208,2,27,0.18) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, rgba(208,2,27,0.08) 0%, transparent 50%),
                  linear-gradient(160deg, #050507 0%, #0A0A0E 100%);

  /* Typography */
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-sub:     'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-pad:  120px 0;
  --container:    1240px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur-fast:     0.18s;
  --dur-med:      0.32s;
  --dur-slow:     0.55s;

  /* Shadows */
  --shadow-card:  0 4px 32px rgba(0,0,0,0.5);
  --shadow-red:   0 0 40px rgba(208,2,27,0.25);
  --shadow-glow:  0 8px 48px rgba(208,2,27,0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deepest);
  color: var(--text-silver);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.section--tight { padding: 72px 0; }
.section--flush  { padding: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sub);
  color: var(--text-white);
  line-height: 1.1;
  font-weight: 700;
}

.display-xl  { font-family: var(--font-display); font-size: clamp(56px, 8vw, 130px); letter-spacing: 0.02em; line-height: 0.95; }
.display-lg  { font-family: var(--font-display); font-size: clamp(42px, 6vw, 90px);  letter-spacing: 0.02em; }
.display-md  { font-family: var(--font-display); font-size: clamp(32px, 4vw, 64px);  letter-spacing: 0.02em; }
.display-sm  { font-family: var(--font-display); font-size: clamp(24px, 3vw, 42px);  letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.lead { font-size: clamp(16px, 2vw, 20px); font-weight: 300; color: var(--text-silver); line-height: 1.65; }
.text-muted { color: var(--text-muted); font-size: 14px; }
.text-red { color: var(--red); }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-red);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(208,2,27,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 12px 28px;
}
.btn-ghost:hover {
  background: var(--red-subtle);
}

.btn-lg { padding: 18px 42px; font-size: 14px; }

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur-med), box-shadow var(--dur-med);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(5,5,7,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }

.nav-link {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-silver);
  padding: 8px 14px;
  display: block;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--text-white); }

.nav-link.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform var(--dur-fast);
}
.nav-item:hover .nav-link.has-dropdown::after { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-dark);
  border: 1px solid var(--border-dim);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--dur-med) var(--ease);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-section {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
}
.dropdown-section:last-child { border-bottom: none; }

.dropdown-heading {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 20px 4px;
  display: block;
}

.dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 20px;
  transition: all var(--dur-fast);
}
.dropdown-link:hover {
  color: var(--text-white);
  background: var(--glass-hover);
  padding-left: 26px;
}

/* Services mega dropdown */
.dropdown--mega {
  left: auto;
  right: auto;
  width: 640px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.dropdown--mega .dropdown-section {
  border-bottom: none;
  border-right: 1px solid var(--border-dim);
}
.dropdown--mega .dropdown-section:nth-child(even) { border-right: none; }

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-dim);
  padding: 4px 6px;
  background: var(--glass-bg);
}
.lang-btn {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 3px 6px;
  transition: color var(--dur-fast);
  background: none;
  border: none;
  cursor: pointer;
}
.lang-btn.active,
.lang-btn:hover { color: var(--red); }
.lang-separator { color: var(--text-faint); font-size: 10px; }

/* Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10;
}
.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-white);
  transition: all var(--dur-med) var(--ease);
  transform-origin: center;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-dim);
  z-index: 999;
  overflow-y: auto;
  transition: right var(--dur-slow) var(--ease);
  padding: 96px 0 48px;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-med);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-silver);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.mobile-nav-link:hover { color: var(--red); padding-left: 40px; }

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-dropdown-content { display: none; background: rgba(0,0,0,0.2); }
.mobile-dropdown-content.open { display: block; }
.mobile-sub-link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all var(--dur-fast);
}
.mobile-sub-link:hover { color: var(--text-white); }
.mobile-section-heading {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 12px 48px 4px;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208,2,27,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,2,27,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-bg-orb--1 {
  width: 600px; height: 600px;
  background: rgba(208,2,27,0.15);
  top: -100px; left: -100px;
}
.hero-bg-orb--2 {
  width: 400px; height: 400px;
  background: rgba(208,2,27,0.08);
  bottom: 0; right: 10%;
}

.hero-content { position: relative; z-index: 2; padding-top: 72px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 8px 16px;
  background: var(--red-subtle);
  margin-bottom: 32px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 144px);
  line-height: 0.92;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero-headline .accent { color: var(--red); }
.hero-headline .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-subline { max-width: 560px; margin: 24px 0 48px; font-size: 18px; font-weight: 300; }

.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap;
}
.hero-trust-item {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item .dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-text { font-family: var(--font-sub); font-size: 9px; letter-spacing: 0.2em; color: var(--text-faint); text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--red), transparent); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0%{transform: scaleY(0); transform-origin: top} 50%{transform: scaleY(1); transform-origin: top} 51%{transform-origin: bottom} 100%{transform: scaleY(0); transform-origin: bottom} }

/* ── Marquee / Service Strip ──────────────────────────────── */
.marquee-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--dur-fast);
}
.marquee-item:hover { color: var(--text-white); }
.marquee-sep { color: var(--red); font-size: 18px; }

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-lead { max-width: 600px; }
.section-header--center .section-lead { margin: 0 auto; }

/* ── Cards — Glass ────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-dim);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.glass-card:hover::before { transform: scaleX(1); }

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
  group: true;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.service-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
  transition: all var(--dur-med);
}
.service-card:hover .service-icon {
  background: var(--red-subtle);
}
.service-icon svg { width: 24px; height: 24px; }

.service-name {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.service-link {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 12px; height: 12px; }

/* ── About Preview ────────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-frame {
  position: relative;
}
.about-image-box {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.about-image-box img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-red);
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
  line-height: 1;
  z-index: 2;
}
.about-image-badge span { display: block; font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.15em; }

.about-image-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-left: 3px solid var(--red);
  border-top: 3px solid var(--red);
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text-white);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label { font-size: 12px; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.why-item {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  transition: all var(--dur-med);
}
.why-item:hover {
  background: var(--bg-elevated);
  border-color: var(--border-red);
}
.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--dur-med);
}
.why-item:hover .why-num { color: var(--red); }
.why-title {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.why-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Process ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  position: relative;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--border-dim);
}
.step-title {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.step-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Portfolio Preview ────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.portfolio-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.06); }

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--dur-med);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }

.portfolio-card-cat {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.portfolio-card-title {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

/* Portfolio placeholder images */
.portfolio-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.portfolio-placeholder svg { color: var(--text-faint); }
.portfolio-placeholder span { font-size: 12px; color: var(--text-faint); letter-spacing: 0.1em; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 48px 36px;
  position: relative;
  transition: all var(--dur-med);
}
.pricing-card.featured {
  border-color: var(--red);
  background: var(--bg-elevated);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -1px; right: 32px;
  background: var(--grad-red);
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
}
.pricing-tier {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.pricing-name {
  font-family: var(--font-sub);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}
.pricing-amount {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dim);
}
.pricing-from { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-white);
  line-height: 1;
}
.pricing-note { font-size: 12px; color: var(--text-muted); }

.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-silver);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  border: 1px solid var(--red);
  background: var(--red-subtle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23D0021B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Locations ────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med);
}
.location-card:hover {
  border-color: var(--border-red);
  background: var(--bg-elevated);
}
.location-flag {
  font-size: 40px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(0.6);
  transition: filter var(--dur-med);
}
.location-card:hover .location-flag { filter: none; }
.location-country {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.location-city {
  font-family: var(--font-sub);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.location-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-red);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(208,2,27,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-title { margin-bottom: 16px; }
.cta-banner-lead { max-width: 480px; margin: 0 auto 40px; }
.cta-btn-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deepest);
  border-top: 1px solid var(--border-dim);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 300px repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-fast);
}
.social-icon:hover { border-color: var(--red); color: var(--red); }
.social-icon svg { width: 15px; height: 15px; }

.footer-col-title {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--text-white); }
.footer-link::before { content: '—'; color: var(--text-faint); font-size: 10px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.footer-contact-text a { transition: color var(--dur-fast); }
.footer-contact-text a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; }
.footer-policies { display: flex; gap: 24px; }
.footer-policy-link { font-size: 11px; color: var(--text-faint); transition: color var(--dur-fast); letter-spacing: 0.06em; }
.footer-policy-link:hover { color: var(--text-muted); }

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--dur-med);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Page Hero (Inner Pages) ──────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.page-breadcrumb a { transition: color var(--dur-fast); }
.page-breadcrumb a:hover { color: var(--red); }
.page-breadcrumb .sep { color: var(--text-faint); }

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-silver);
  margin-bottom: 10px;
}
.form-label span { color: var(--red); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-dim);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--border-red); }
.form-input::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A8A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--bg-dark); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--red); }
.form-checkbox-text { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.form-checkbox-text a { color: var(--red); }

.form-honeypot { display: none !important; visibility: hidden; height: 0; overflow: hidden; }

.form-error { color: var(--red); font-size: 12px; margin-top: 6px; display: none; }
.form-success {
  background: rgba(0,180,0,0.08);
  border: 1px solid rgba(0,180,0,0.2);
  color: #6bf06b;
  padding: 20px 24px;
  font-size: 14px;
  display: none;
  margin-bottom: 24px;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-dim);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  gap: 16px;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--dur-med);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur-med);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 24px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  overflow: hidden;
  transition: all var(--dur-med);
}
.blog-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-placeholder { width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-faint); }
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-cat {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-date { font-size: 12px; color: var(--text-faint); }
.blog-title {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--dur-fast);
}
.blog-card:hover .blog-title { color: var(--red); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.blog-read-more {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast);
}
.blog-read-more:hover { gap: 10px; }

/* ── Portfolio Filter ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border-dim);
  background: transparent;
  transition: all var(--dur-fast);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

/* ── Modal / Lightbox ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-med);
  padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-dark);
  border: 1px solid var(--border-dim);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--dur-med);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: all var(--dur-fast);
}
.modal-close:hover { border-color: var(--red); color: var(--red); }
.modal-image { aspect-ratio: 16/9; background: var(--bg-elevated); overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 36px; }
.modal-cat { font-family: var(--font-sub); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.modal-title { font-family: var(--font-sub); font-size: 24px; font-weight: 700; color: var(--text-white); margin-bottom: 12px; }
.modal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-body {
  max-width: 860px;
  margin: 0 auto;
}
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-family: var(--font-sub);
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dim);
}
.legal-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { margin: 12px 0 12px 24px; }
.legal-section ul li { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; list-style: disc; }
.legal-section ul li::marker { color: var(--red); }
.legal-disclaimer {
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 13px;
  color: var(--text-silver);
  line-height: 1.65;
}

/* ── Useful Links ─────────────────────────────────────────── */
.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.link-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 36px 32px;
  transition: all var(--dur-med);
}
.link-category-card:hover { border-color: var(--border-red); }
.link-cat-title {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dim);
  letter-spacing: 0.05em;
}
.link-cat-links { display: flex; flex-direction: column; gap: 6px; }
.link-cat-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.link-cat-link::before { content: '›'; color: var(--red); font-size: 16px; }
.link-cat-link:hover { color: var(--text-white); }

/* ── Search Bar (Blog) ────────────────────────────────────── */
.blog-search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-search-input {
  flex: 1;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 20px;
  outline: none;
  transition: border-color var(--dur-fast);
}
.blog-search-input:focus { border-color: var(--border-red); }
.blog-search-input::placeholder { color: var(--text-faint); }

/* ── Inline SVG Icons (Utility) ───────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dim), transparent);
  margin: 0;
}

/* ── Number Counter ───────────────────────────────────────── */
.counter { transition: color var(--dur-med); }

/* ── Clients / Testimonials ───────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 40px 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--red-subtle);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text { font-size: 15px; color: var(--text-silver); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
}
.testimonial-name { font-family: var(--font-sub); font-size: 14px; font-weight: 700; color: var(--text-white); }
.testimonial-role { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }

/* ── Page Transitions ─────────────────────────────────────── */
.page-enter { animation: fadeInUp 0.5s var(--ease) both; }
@keyframes fadeInUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }

/* ── Scroll Animation Utility ─────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
