/* ============================================================
   Saudi Market Entry Marketing Consultant — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg-main:        #050505;
  --bg-secondary:   #090909;
  --bg-deep-red:    #120608;
  --red-primary:    #D7263D;
  --red-crimson:    #C1122F;
  --red-deep:       #6E0F1A;
  --red-border:     rgba(215, 38, 61, 0.35);
  --red-glow:       rgba(215, 38, 61, 0.12);
  --red-glow-mid:   rgba(215, 38, 61, 0.22);
  --text-white:     #F5F5F5;
  --text-muted:     #B8B8B8;
  --text-dim:       #787878;
  --card-bg:        rgba(0, 0, 0, 0.65);
  --card-border:    rgba(215, 38, 61, 0.22);
  --card-hover:     rgba(215, 38, 61, 0.08);
  --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h:       72px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --transition:     0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--red-deep); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(215, 38, 61, 0.35); color: #fff; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 18px;
  padding: 4px 12px;
  border: 1px solid var(--red-border);
  border-radius: 30px;
  background: rgba(215, 38, 61, 0.07);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.72;
}

.text-red { color: var(--red-primary); }
.text-muted { color: var(--text-muted); }

/* ── Red divider ── */
.red-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-primary), transparent);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ── Glow blob (decorative) ── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-blob--tl {
  top: -80px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(110, 15, 26, 0.55) 0%, transparent 70%);
}
.glow-blob--br {
  bottom: -80px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(193, 18, 47, 0.3) 0%, transparent 70%);
}
.glow-blob--center {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(110, 15, 26, 0.4) 0%, transparent 70%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-crimson) 100%);
  color: #fff;
  box-shadow: 0 4px 28px rgba(215, 38, 61, 0.38);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #E8334A 0%, var(--red-primary) 100%);
  box-shadow: 0 6px 40px rgba(215, 38, 61, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--red-border);
}
.btn-ghost:hover {
  background: var(--red-glow);
  border-color: var(--red-primary);
  color: var(--text-white);
}

.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--red-border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: 240px;
}
.site-logo span { color: var(--red-primary); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--red-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--text-white); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--red-border);
  padding: 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(215, 38, 61, 0.1);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--text-white); }
.mobile-nav .btn { margin-top: 16px; align-self: flex-start; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(110, 15, 26, 0.42) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(80, 8, 18, 0.3) 0%, transparent 60%),
              var(--bg-main);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red-primary);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red-primary);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-supporting {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 500px;
  padding-left: 16px;
  border-left: 2px solid var(--red-border);
}

.hero-service-line {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  margin-top: -4px;
  padding-left: 14px;
  border-left: 2px solid var(--red-border);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-primary);
  flex-shrink: 0;
}

/* Hero Visual — Crystal Orb */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.orb-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
}

.orb-outer {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(215, 38, 61, 0.15);
  animation: orb-rotate 22s linear infinite;
}
.orb-outer::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-primary);
  box-shadow: 0 0 12px var(--red-primary);
}

.orb-mid {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(215, 38, 61, 0.1);
  animation: orb-rotate 14s linear infinite reverse;
}

.orb-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%,
    rgba(215, 38, 61, 0.55) 0%,
    rgba(110, 15, 26, 0.75) 35%,
    rgba(18, 6, 8, 0.9) 60%,
    rgba(5, 5, 5, 0.95) 100%);
  box-shadow:
    0 0 60px rgba(215, 38, 61, 0.28),
    0 0 120px rgba(110, 15, 26, 0.35),
    inset 0 2px 20px rgba(215, 38, 61, 0.2),
    inset -10px -10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.orb-core::before {
  content: '';
  position: absolute;
  top: 12%; left: 18%;
  width: 38%; height: 22%;
  background: linear-gradient(135deg,
    rgba(255, 180, 180, 0.15) 0%,
    rgba(215, 38, 61, 0.08) 60%,
    transparent 100%);
  border-radius: 50%;
  transform: rotate(-20deg);
  filter: blur(6px);
}

.orb-core::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 75%,
    rgba(193, 18, 47, 0.18) 0%,
    transparent 55%);
}

.orb-ring-1, .orb-ring-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(215, 38, 61, 0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-ring-1 { width: 460px; height: 460px; animation: pulse-ring 4s ease-in-out infinite; }
.orb-ring-2 { width: 540px; height: 540px; animation: pulse-ring 4s ease-in-out infinite 1s; }

.orb-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--red-primary);
  box-shadow: 0 0 8px var(--red-primary);
}
.orb-particle:nth-child(1) { width: 4px; height: 4px; top: 8%; left: 62%; animation: float-particle 6s ease-in-out infinite; }
.orb-particle:nth-child(2) { width: 3px; height: 3px; top: 72%; left: 15%; animation: float-particle 8s ease-in-out infinite 2s; }
.orb-particle:nth-child(3) { width: 2px; height: 2px; top: 40%; left: 88%; animation: float-particle 5s ease-in-out infinite 1s; }
.orb-particle:nth-child(4) { width: 3px; height: 3px; top: 85%; left: 65%; animation: float-particle 7s ease-in-out infinite 3s; }

/* Hero crystal shards */
.crystal-shard {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(135deg,
    rgba(215, 38, 61, 0.25),
    rgba(110, 15, 26, 0.15) 50%,
    rgba(215, 38, 61, 0.1));
  border: 1px solid rgba(215, 38, 61, 0.25);
  backdrop-filter: blur(4px);
}
.crystal-shard:nth-child(1) {
  width: 60px; height: 90px;
  top: 8%; right: 2%;
  transform: rotate(18deg);
  animation: float-shard 7s ease-in-out infinite;
}
.crystal-shard:nth-child(2) {
  width: 40px; height: 65px;
  bottom: 12%; left: 0%;
  transform: rotate(-12deg);
  animation: float-shard 9s ease-in-out infinite 1.5s;
}
.crystal-shard:nth-child(3) {
  width: 30px; height: 48px;
  top: 55%; right: -4%;
  transform: rotate(30deg);
  animation: float-shard 6s ease-in-out infinite 3s;
}

/* ── Orb Animations ── */
@keyframes orb-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.08; transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%       { transform: translateY(-12px); opacity: 0.4; }
}
@keyframes float-shard {
  0%, 100% { transform: rotate(18deg) translateY(0); }
  50%       { transform: rotate(18deg) translateY(-14px); }
}
@keyframes float-shard-2 {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-12deg) translateY(-10px); }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.problem-card:hover { border-color: rgba(215, 38, 61, 0.5); background: var(--card-hover); }
.problem-card:hover::before { opacity: 1; }

.card-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(215, 38, 61, 0.1);
  border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; color: var(--red-primary); }

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.solution-card:hover { border-color: rgba(215, 38, 61, 0.45); transform: translateY(-3px); }
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 38, 61, 0.35), transparent);
}

.solution-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(215, 38, 61, 0.5);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   WHO IT'S FOR SECTION
   ============================================================ */
.who-section {
  background: linear-gradient(180deg, var(--bg-deep-red) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(110, 15, 26, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.who-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.who-item:hover { border-color: rgba(215, 38, 61, 0.45); background: rgba(0, 0, 0, 0.7); }

.who-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(215, 38, 61, 0.25);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.who-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.who-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.process-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(215, 38, 61, 0.12);
  position: relative;
  transition: background var(--transition);
}
.process-step:last-child { border-bottom: none; }

.step-number {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: rgba(215, 38, 61, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
  user-select: none;
}
.process-step:hover .step-number { color: rgba(215, 38, 61, 0.28); }

.step-content {
  padding-top: 8px;
}
.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 10px;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-body { font-size: 0.92rem; color: var(--text-muted); max-width: 580px; line-height: 1.7; }

/* ============================================================
   WHY LOCAL SECTION
   ============================================================ */
.why-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.why-panel {
  background: linear-gradient(135deg,
    rgba(18, 6, 8, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(110, 15, 26, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.why-body {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 44px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(215, 38, 61, 0.15);
}
.why-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-primary);
  box-shadow: 0 0 8px rgba(215, 38, 61, 0.6);
  flex-shrink: 0;
  margin-top: 5px;
}
.why-point p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   REGISTER INTEREST FORM SECTION
   ============================================================ */
.form-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.form-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }

.interest-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
}
.interest-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary) 40%, var(--red-crimson) 60%, transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .field-full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field label span { color: var(--red-primary); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(215, 38, 61, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.field 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='%23B8B8B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 120px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red-primary);
  background: rgba(215, 38, 61, 0.04);
}
.field select option { background: #1a0408; color: var(--text-white); }

.form-submit { margin-top: 32px; text-align: center; }
.form-submit .btn { min-width: 220px; justify-content: center; }

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 52px 32px;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(215, 38, 61, 0.12);
  border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 28px; height: 28px; color: var(--red-primary); }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep-red) 50%, var(--bg-main) 100%);
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(110, 15, 26, 0.55) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BOOKING PLACEHOLDER MODAL
   ============================================================ */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.booking-overlay.open { display: flex; }

.booking-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}
.booking-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.booking-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.booking-close:hover { color: var(--text-white); }
.booking-modal h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.booking-modal p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-main);
  border-top: 1px solid var(--red-border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(215, 38, 61, 0.12);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-brand .brand-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
}
.footer-brand .brand-name span { color: var(--red-primary); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text-white); }

.footer-contact p {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-contact a { color: var(--text-dim); transition: color var(--transition); }
.footer-contact a:hover { color: var(--red-primary); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-hero {
  padding: 140px 0 72px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(110, 15, 26, 0.4) 0%, transparent 60%),
              var(--bg-main);
  border-bottom: 1px solid var(--red-border);
  text-align: center;
}
.legal-hero .section-label { margin-bottom: 14px; }
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.legal-date { font-size: 0.85rem; color: var(--text-dim); }

.legal-content {
  padding: 80px 0 100px;
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(215, 38, 61, 0.1);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-section h2::before {
  content: '';
  display: block;
  width: 4px; height: 22px;
  background: var(--red-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-section p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
  padding-left: 4px;
}
.legal-section ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red-primary);
  opacity: 0.7;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 22px 0 10px;
}

.legal-note {
  background: rgba(215, 38, 61, 0.07);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 20px;
}
.legal-note p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   ANIMATIONS & FADE-IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-text { max-width: 100%; }
  .hero-sub, .hero-supporting { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { height: 360px; }
  .orb-wrapper { width: 280px; height: 280px; }
  .orb-ring-1 { width: 340px; height: 340px; }
  .orb-ring-2 { width: 400px; height: 400px; }
  .why-panel { padding: 44px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 80px 0; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid { gap: 40px; padding: 60px 0; }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.6rem); }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field-full { grid-column: 1; }
  .interest-form { padding: 36px 24px; }

  .process-step { grid-template-columns: 80px 1fr; gap: 20px; }
  .step-number { font-size: 3rem; }

  .why-panel { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .booking-modal { padding: 40px 28px; }
  .cta-section { padding: 90px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-visual { height: 280px; }
  .orb-wrapper { width: 220px; height: 220px; }
  .orb-ring-1 { width: 270px; height: 270px; }
  .orb-ring-2 { width: 320px; height: 320px; }
  .crystal-shard { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .why-points { grid-template-columns: 1fr; }
}

/* ============================================================
   FORM VALIDATION STATES
   ============================================================ */

/* Required star */
.req-star {
  color: var(--red-primary);
  margin-left: 2px;
}

/* Optional tag */
.optional-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-left: 6px;
  padding: 1px 7px;
  border: 1px solid rgba(120, 120, 120, 0.25);
  border-radius: 20px;
  vertical-align: middle;
}

/* Field error state */
.field-has-error input,
.field-has-error select,
.field-has-error textarea {
  border-color: rgba(215, 38, 61, 0.75);
  background: rgba(215, 38, 61, 0.05);
}
.field-has-error input:focus,
.field-has-error select:focus,
.field-has-error textarea:focus {
  border-color: var(--red-primary);
  background: rgba(215, 38, 61, 0.07);
}

/* Inline field error message */
.field-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 5px;
  padding-left: 2px;
}

/* Form-level error banner */
.form-error-banner {
  background: rgba(215, 38, 61, 0.1);
  border: 1px solid rgba(215, 38, 61, 0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #fca5a5;
  line-height: 1.55;
}

/* Disabled submit button */
#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
