/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg: #f8faff;
  --bg-alt: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --accent: #f97316;
  --accent2: #06b6d4;
  --green: #10b981;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section { padding: 5rem 5%; }
.section-alt { background: #fff; }

.section-head { margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.accent-text {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.75;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--primary-light); }

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(248,250,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.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: 1rem 5%;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn-nav { margin-top: 0.75rem; text-align: center; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #faf8ff 50%, #fff7f0 100%);
}
.hero-bg-shape {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 40%, black, transparent);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 4rem 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
h1 .accent-text {
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-l { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-div { width: 1px; background: var(--border); align-self: stretch; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 260px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 10px;
  background: #000;
  border-radius: 10px;
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  height: 480px;
}
.maps-ui { padding: 20px 14px 14px; font-size: 0.8rem; }
.maps-search {
  background: #f1f3f4;
  border-radius: 24px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #5f6368;
  margin-bottom: 14px;
  margin-top: 16px;
}
.maps-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  overflow: hidden;
}
.maps-tour-preview {
  height: 160px;
  background: linear-gradient(135deg, #1a3fff22, #06b6d422);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.maps-tour-preview::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(37,99,235,0.04) 10px,
    rgba(37,99,235,0.04) 20px
  );
}
.tour-spinner { position: relative; width: 64px; height: 64px; }
.spinner-ring {
  position: absolute; inset: 0;
  border: 2px solid rgba(37,99,235,0.2);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.spinner-ring.r2 {
  inset: 10px;
  border-top-color: var(--accent2);
  animation-duration: 2s;
  animation-direction: reverse;
}
.spinner-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tour-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255,255,255,0.9);
  padding: 3px 10px;
  border-radius: 20px;
}
.maps-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.78rem;
  color: #5f6368;
}
.maps-info strong { color: #1a1a2e; font-size: 0.85rem; }
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  padding: 1.5rem 5%;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.g-b { font-size: 1.6rem; font-weight: 900; }
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 0.5rem;
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ps { font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.ps strong { color: #fff; font-weight: 700; }
.ps-div { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* ─── TOUR CARDS ─── */
#tours { background: var(--bg); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-card {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.tour-card:hover img { transform: scale(1.06); }
.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.tour-card:hover .tour-card-overlay { opacity: 1; }
.tour-play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.tour-card:hover .tour-play { transform: scale(1); }
.tour-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tour-type { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.tour-cta { font-size: 0.92rem; font-weight: 600; color: #fff; }
.tour-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* Tour Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  width: 92vw; max-width: 960px;
  height: 80vh;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: #fff; }
#tourIframe { width: 100%; height: 100%; border: none; }

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #bfdbfe;
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.benefit-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.benefit-stat { margin-top: 1.2rem; font-size: 0.8rem; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 0.3rem 0.75rem; border-radius: 20px; display: inline-block; }

/* ─── INDUSTRIES ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ind-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.ind-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.ind-card span { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.ind-card strong { font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 0.25rem; color: var(--text); }
.ind-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ─── PROCESS ─── */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 1.25rem 2rem;
  position: relative;
}
.process-step:not(:first-child) { border-left: 1px dashed var(--border); }
.ps-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.process-step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ─── ROI ─── */
#roi { background: var(--bg); }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.roi-list { list-style: none; }
.roi-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.roi-list li strong { color: var(--text); display: block; margin-bottom: 0.1rem; }
.roi-check { color: var(--primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.package-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.package-top {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  padding: 1.75rem;
}
.package-top h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.package-top p { font-size: 0.85rem; opacity: 0.85; }
.package-list { list-style: none; padding: 1.25rem 1.75rem; }
.package-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.pk-check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.pk-free { border-bottom: none !important; }
.pk-free-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.package-bottom {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 2px dashed var(--border);
}
.pkg-model {
  display: inline-block;
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { border-color: #bfdbfe; transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card span { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── FAQ ─── */
#faq { background: var(--bg); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 1.2rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ─── BOOK / FORM ─── */
.section-book {
  background: linear-gradient(135deg, #f0f7ff 0%, #faf5ff 50%, #fff7f0 100%);
  padding: 5rem 5%;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.book-trust { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
}
.contact-box { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-line:hover { color: var(--primary); }

/* Form Card */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-header {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  padding: 1.5rem 1.75rem;
  color: #fff;
}
.form-header h3 { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.2rem; }
.form-header p { font-size: 0.82rem; opacity: 0.85; }
form { padding: 1.5rem 1.75rem; }
.form-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin: 1.25rem 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
form .form-section-label:first-child { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}
.req { color: #ef4444; }
.form-group input,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group input.error { border-color: #ef4444; }
.field-err { font-size: 0.75rem; color: #ef4444; min-height: 1em; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.select-wrap select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-submit-area { margin-top: 1.5rem; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
  letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.45); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: #1e293b;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 3000;
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #166534; }
.toast.error { background: #991b1b; }

/* ─── FOOTER ─── */
footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 5% 2rem;
  align-items: start;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a, .footer-contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 5%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 5%; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.25rem; }
  .stat-div { display: none; }
  .what-grid, .roi-grid, .book-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .process-row { grid-template-columns: 1fr; }
  .process-step:not(:first-child) { border-left: none; border-top: 1px dashed var(--border); }
}
