/* ================================================================
   SMART HOST LABS — Global Stylesheet (Updated)
   Palette: Near-black #0D0D0D, off-white #F7F7F5, amber #B8860B, blue #0A84FF
   Type: Plus Jakarta Sans (headings) + Inter (body/UI)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --black:   #0D0D0D;
  --charcoal:#1A1A1A;
  --mid:     #2E2E2E;
  --muted:   #5A5A5A;
  --subtle:  #888;
  --ghost:   #D4D4D4;
  --surface: #F2F2F0;
  --white:   #FFFFFF;
  --cream:   #F7F7F5;
  /* Accent: Deep Teal */
  --gold:    #0B6E6E;
  --gold-light: #0E8A8A;
  --gold-dim:rgba(11,110,110,0.12);
  --gold-faint:rgba(11,110,110,0.06);
  --blue:    #0A84FF;
  --blue-dim:rgba(10,132,255,0.10);
  --border:  rgba(0,0,0,0.08);
  --border-w:rgba(255,255,255,0.08);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --section-pad: 120px 24px;
}

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

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--ghost); border-radius: 3px; }

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(247,247,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(247,247,245,0.98); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 28px; height: 28px; }
.nav-wordmark {
  display: flex; align-items: baseline; gap: 0;
}
.nav-wordmark .w-smart {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 17px; color: var(--black); letter-spacing: -0.03em;
}
.nav-wordmark .w-host {
  font-family: var(--font-heading); font-weight: 300;
  font-size: 17px; color: var(--black); letter-spacing: -0.03em;
}
.nav-wordmark .w-div {
  width: 1px; height: 11px; background: var(--ghost);
  margin: 0 9px; align-self: center;
}
.nav-wordmark .w-labs {
  font-family: var(--font-body); font-weight: 400;
  font-size: 8px; color: var(--subtle);
  letter-spacing: 0.25em; text-transform: uppercase;
  align-self: center;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  background: var(--black);
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--charcoal) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  z-index: 999;
  flex-direction: column; gap: 0;
}
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--black); }
.nav-mobile.open { display: flex; }

/* ════════════════════════════════════
   FLOATING CONTACT BUTTON
════════════════════════════════════ */
.float-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 990;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3), 0 2px 8px rgba(0,0,0,0.1);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
  background: #1ebe5d;
}
.fb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

/* ════════════════════════════════════
   PAGE WRAPPER
════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(11,110,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(10,132,255,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-line {
  flex: 1; max-width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 300;
}
.hero-lead {
  font-size: 16px; font-weight: 400;
  color: var(--muted); line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: var(--black); color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--black); color: var(--black); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 36px;
  color: var(--black); letter-spacing: -0.03em;
  line-height: 1;
  display: block; margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--subtle);
}

/* Hero visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-visual-wrap {
  position: relative;
  width: 100%;
}
.hero-visual-badge {
  position: absolute;
  top: -18px; right: -18px;
  z-index: 10;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  text-align: center;
}
.hero-visual-badge .hvb-num {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-visual-badge .hvb-label {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}
.hero-ota-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.ota-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 14px 18px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ota-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(11,110,110,0.2);
}
.ota-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ota-card-icon img {
  width: 100%; height: 100%; object-fit: contain;
}
.ota-card-name {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--charcoal);
}
.ota-card-stat {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black);
  line-height: 1;
}
.ota-card-label { font-size: 9px; color: var(--subtle); letter-spacing: 0.04em; line-height: 1.4; }

/* ════════════════════════════════════
   SECTION BASICS
════════════════════════════════════ */
section { padding: var(--section-pad); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.section-eyebrow span {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-rule {
  width: 32px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--gold); font-weight: 300; }

.section-sub {
  font-size: 15px; font-weight: 400;
  color: var(--muted); line-height: 1.75;
  max-width: 520px;
}

/* ════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════ */
.services-section { background: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 72px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--cream); }

.service-card--featured {
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.service-card--featured:hover { background: var(--white); }
.service-card--featured .service-num { color: var(--gold-light); }

.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.service-num {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 600;
  color: var(--ghost); letter-spacing: 0.25em;
  margin-bottom: 12px; display: block;
}
.service-name {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: var(--black); line-height: 1.2;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 13px; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 24px;
}
.service-platforms {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.platform-tag {
  padding: 4px 10px;
  border: 1px solid var(--border);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--subtle); border-radius: 2px;
}
.service-price {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--black);
}
.service-price span {
  font-size: 11px; font-weight: 400;
  color: var(--subtle); font-family: var(--font-body);
  letter-spacing: 0.1em;
}

/* ════════════════════════════════════
   PROCESS / HOW IT WORKS
════════════════════════════════════ */
.process-section { background: var(--black); color: var(--white); }
.process-section .section-title { color: var(--white); }
.process-section .section-title em { color: var(--gold-light); font-weight: 300; }
.process-section .section-sub { color: rgba(255,255,255,0.5); }
.process-section .eyebrow-rule { background: var(--gold-light); }
.process-section .section-eyebrow span { color: var(--gold-light); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--border-w);
}
.process-step {
  padding: 48px 36px;
  border-right: 1px solid var(--border-w);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-n {
  font-family: var(--font-heading);
  font-size: 72px; font-weight: 800;
  /* Much more visible than before */
  color: rgba(255,255,255,0.18);
  line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.process-step-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.process-step-desc {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.55); line-height: 1.7;
}
.process-step-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); margin-bottom: 20px;
}

/* ════════════════════════════════════
   PLATFORMS STRIP
════════════════════════════════════ */
/* ════════════════════════════════════
   PLATFORMS STRIP — two-row layout
════════════════════════════════════ */
.platforms-strip {
  background: var(--white);
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0;
}
.platforms-row-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--subtle);
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.platforms-row-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding-left: 28px;
}
.platforms-divider-h {
  height: 1px;
  background: var(--border);
  width: 100%;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
  text-decoration: none;
}
.platform-logo:hover { opacity: 1; }
.platform-logo .logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 5px;
}
.platform-logo strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}


/* ════════════════════════════════════
   PORTFOLIO / WORK
════════════════════════════════════ */
.work-section { background: var(--cream); }
.work-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 64px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.work-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--ghost) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  position: relative; overflow: hidden;
}
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.work-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,0.06) 0%, transparent 60%);
}
.work-card-body { padding: 28px 24px; }
.work-card-platform {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.work-card-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--black); margin-bottom: 8px; line-height: 1.25;
}
.work-card-location {
  font-size: 12px; color: var(--subtle); margin-bottom: 16px;
}
.work-card-result {
  display: flex; align-items: baseline; gap: 8px;
}
.work-card-result-num {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--black); letter-spacing: -0.02em;
}
.work-card-result-label {
  font-size: 11px; color: var(--muted); font-weight: 400;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(11,110,110,0.3);
  transform: translateY(-3px);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px; line-height: 1;
  color: var(--gold-dim);
  margin-bottom: 4px;
  display: block;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
  color: var(--gold-light); font-size: 13px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
  color: var(--charcoal);
}
.testimonial-name {
  font-size: 13px; font-weight: 600;
  color: var(--black); margin-bottom: 2px;
}
.testimonial-role { font-size: 11px; color: var(--subtle); }
.testimonial-flag {
  margin-left: auto; font-size: 18px;
}

/* Featured testimonial */
.testimonial-card.featured {
  background: var(--black); color: var(--white);
  border-color: transparent;
  grid-row: span 1;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-card.featured .testimonial-name { color: var(--white); }
.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,0.45); }
.testimonial-card.featured .testimonial-avatar { background: var(--mid); border-color: var(--mid); }

/* ════════════════════════════════════
   WHY CHOOSE / VALUE PROPS
════════════════════════════════════ */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
}
.why-item {
  padding: 48px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.why-item:nth-child(2n) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: var(--white); }
.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 20px;
}
.why-item-title {
  font-family: var(--font-heading);
  font-size: 19px; font-weight: 700;
  color: var(--black); margin-bottom: 10px;
}
.why-item-desc {
  font-size: 13px; font-weight: 400;
  color: var(--muted); line-height: 1.75;
}

/* ════════════════════════════════════
   INQUIRY / CONTACT FORM
════════════════════════════════════ */
.contact-section { background: var(--black); }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-left { padding-top: 8px; }
.contact-left .section-title { color: var(--white); }
.contact-left .section-title em { color: var(--gold-light); }
.contact-left .eyebrow-rule { background: var(--gold-light); }
.contact-left .section-eyebrow span { color: var(--gold-light); }

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--border-w);
}
.contact-detail + .contact-detail { margin-top: 24px; padding-top: 0; border-top: none; }
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.contact-detail-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.8);
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-w);
  padding: 48px 44px;
  border-radius: 4px;
}
.form-title {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700;
  color: var(--white); margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-light);
  background: rgba(11,110,110,0.06);
}
.form-select option { background: var(--charcoal); }
.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: #09595A; transform: translateY(-1px); }

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 11px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  background: var(--black);
  padding: 80px 40px;
}
.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.1;
}
.cta-btn {
  white-space: nowrap; flex-shrink: 0;
  background: var(--gold); color: var(--white);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 40px 40px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-text {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1.75; margin-top: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 11px; color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════ */
.page-hero {
  padding: 120px 40px 80px;
  background: var(--black);
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(11,110,110,0.09) 0%, transparent 70%);
}
.page-hero-inner {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero .section-eyebrow span { color: var(--gold-light); }
.page-hero .eyebrow-rule { background: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px; margin-top: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--gold-light); font-weight: 300; }
.page-hero p {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,0.5); line-height: 1.75;
  max-width: 520px;
}

/* ════════════════════════════════════
   RATING BADGE
════════════════════════════════════ */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(11,110,110,0.25);
  border-radius: 2px;
  margin-top: 32px;
}
.rating-badge .stars { color: var(--gold); font-size: 14px; }
.rating-badge .score {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: var(--black); letter-spacing: -0.02em;
}
.rating-badge .count { font-size: 12px; color: var(--muted); }

/* Dark version */
.rating-badge.dark {
  background: rgba(11,110,110,0.1);
  border-color: rgba(11,110,110,0.2);
}
.rating-badge.dark .score { color: var(--gold-light); }
.rating-badge.dark .count { color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}
.anim-fade-up.d1 { animation-delay: 0.1s; }
.anim-fade-up.d2 { animation-delay: 0.2s; }
.anim-fade-up.d3 { animation-delay: 0.3s; }
.anim-fade-up.d4 { animation-delay: 0.4s; }
.anim-fade-up.d5 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 24px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-ota-grid { grid-template-columns: repeat(3, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 24px; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-right: 1px solid var(--border-w); }
  .process-step:nth-child(4) { border-right: none; }
  .process-step { border-bottom: 1px solid var(--border-w); }

  /* Work */
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-header { grid-template-columns: 1fr; gap: 24px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-width: 400px; }

  /* Social */
  .social-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Page hero two-col → single */
  .page-hero-two,
  .work-hero-two,
  .about-hero-two { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-right,
  .work-hero-right,
  .about-hero-right { display: none; }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 20px;
    --nav-h: 64px;
    --max-w: 100%;
  }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-wordmark .w-smart,
  .nav-wordmark .w-host { font-size: 13px; }
  .nav-wordmark .w-labs { font-size: 11px; }

  /* Hero */
  .hero { padding: 72px 20px 48px; }
  .hero-content h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px 32px; }
  .hero-stat-num { font-size: 24px; }
  .hero-ota-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-visual-badge { width: 72px; height: 72px; top: -12px; right: -8px; }
  .hero-visual-badge .hvb-num { font-size: 18px; }
  .hero-visual-badge .hvb-label { font-size: 7px; }
  .ota-card { padding: 14px 12px; gap: 6px; }
  .ota-card-stat { font-size: 16px; }
  .ota-card-icon { width: 30px; height: 30px; }

  /* Platforms strip */
  .platforms-strip { padding: 32px 20px; }
  .platforms-row { flex-direction: column; align-items: center; gap: 16px; padding: 20px 0; }
  .platforms-row-label { width: auto; border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 10px; text-align: center; }
  .platforms-row-logos { padding-left: 0; gap: 10px 20px; justify-content: center; }
  .platform-logo .logo-img { width: 22px; height: 22px; }
  .platform-logo strong { font-size: 11px; }

  /* Sections general */
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  .section-sub { font-size: 14px; }

  /* Services */
  .services-section { padding: var(--section-pad); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .service-name { font-size: 18px; }

  /* Process */
  .process-section { padding: var(--section-pad); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border-w); padding: 28px 0; }
  .process-step:last-child { border-bottom: none; }

  /* Testimonials */
  .testimonials-section { padding: var(--section-pad); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }

  /* Why */
  .why-section { padding: var(--section-pad); }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }

  /* About Me */
  .about-section { padding: var(--section-pad); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 100%; }
  .about-photo-frame { aspect-ratio: 3/2; }
  .about-photo-badge { bottom: -14px; right: 0; padding: 14px 18px; }
  .about-photo-badge .badge-num { font-size: 24px; }
  .about-highlights { grid-template-columns: 1fr; gap: 12px; }
  .about-actions { flex-direction: column; gap: 12px; }
  .about-actions .btn-primary,
  .about-actions .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  .about-name { font-size: 28px; }

  /* Social */
  .social-section { padding: 56px 20px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .social-card { padding: 24px 16px; }
  .social-card-logo { width: 48px; height: 48px; }
  .social-card-logo img { width: 48px; height: 48px; }
  .social-card-name { font-size: 14px; }

  /* CTA Banner */
  .cta-banner-inner,
  [style*="grid-template-columns:1fr auto"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    text-align: center;
  }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  /* Float button — tablet/mobile */
  .float-btn {
    bottom: 20px; right: 16px;
    padding: 12px 16px;
    font-size: 11px;
    gap: 8px;
  }
  .float-btn svg { width: 17px; height: 17px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Rating badge */
  .rating-badge { flex-wrap: wrap; }

  /* Why section inline gap fix */
  .why-item { padding: 28px 20px; }

  /* Work page */
  .work-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .portfolio-card.wide { grid-column: span 1 !important; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-block { border-right: none; text-align: center; padding: 20px 0; }

  /* Contact page */
  .contact-page-section { padding: 80px 20px 60px; }
  .contact-inner { grid-template-columns: 1fr !important; }
  .trust-row { flex-wrap: wrap; gap: 16px; }

  /* About page */
  .about-bio-grid { grid-template-columns: 1fr !important; }
  .about-avatar { width: 100px; height: 100px; font-size: 40px; }

  /* Page heroes */
  .page-hero { padding: 80px 20px 56px; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .page-hero p { font-size: 14px; }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤480px)
════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-ota-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-num { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Float button — small phones: icon + WA label only, no extra text */
  .float-btn { padding: 12px 16px; bottom: 16px; right: 12px; gap: 8px; }
  .float-btn .float-label { display: none; }
  .float-btn .fb-dot { display: none; }
  .float-btn svg { width: 20px; height: 20px; }
  .about-photo-frame { aspect-ratio: 4/3; }
}


/* ── Pulse dot animation ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
