/* ═══════════════════════════════════════════════
   HOSPITRA — STYLES
   ═══════════════════════════════════════════════ */

:root {
  /* Base palette */
  --bg: #f0fdf9;
  --surface: #ffffff;
  --surface-soft: #e8faf5;
  --ink: #0f1f2e;
  --muted: #4a5a68;
  --line: #c4e0d8;

  /* Brand colors */
  --teal: #0fa896;
  --teal-dark: #087c6e;
  --teal-light: #00d4b8;
  --orange: #f47a3b;
  --orange-dark: #d4612a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;

  /* Gradients */
  --grad-teal: linear-gradient(135deg, #0fa896 0%, #00d4b8 100%);
  --grad-orange: linear-gradient(135deg, #f47a3b 0%, #ff6b6b 100%);
  --grad-blue: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-purple: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-stats: linear-gradient(135deg, #0a1628 0%, #0e3a52 45%, #0f9f8c 100%);

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(15, 31, 46, 0.07);
  --shadow: 0 10px 32px rgba(15, 31, 46, 0.11);
  --shadow-lg: 0 22px 64px rgba(15, 31, 46, 0.15);
  --shadow-teal: 0 14px 40px rgba(15, 168, 150, 0.28);
  --shadow-orange: 0 14px 40px rgba(244, 122, 59, 0.28);
  --shadow-blue: 0 14px 40px rgba(37, 99, 235, 0.28);

  /* Layout */
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max: 1160px;
}

/* ─── Reset & Base ─── */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Header ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(240, 253, 249, 0.94);
  border-bottom: 1px solid rgba(196, 224, 216, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-logo {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(45, 57, 123, 0.3);
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 8px;
  color: #2e3f49;
  font-weight: 700;
  font-size: 0.93rem;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  background: rgba(15, 168, 150, 0.1);
  outline: none;
}

.nav-cta {
  margin-left: 10px;
  padding: 9px 18px !important;
  font-size: 0.87rem !important;
  min-height: 40px !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s;
}

.nav-toggle:hover {
  border-color: var(--teal);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
}

/* ─── Layout ─── */

.section-band {
  position: relative;
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 48px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

/* ─── Typography ─── */

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Buttons ─── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
  max-width: 100%;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:active {
  transform: translateY(0);
}

.primary {
  color: #fff;
  background: var(--grad-teal);
  box-shadow: var(--shadow-teal);
}

.primary:hover,
.primary:focus-visible {
  box-shadow: 0 20px 50px rgba(15, 168, 150, 0.42);
  opacity: 0.92;
}

.secondary {
  color: #fff;
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
}

.secondary:hover,
.secondary:focus-visible {
  box-shadow: 0 20px 50px rgba(244, 122, 59, 0.42);
  opacity: 0.92;
}

.text-button {
  color: var(--teal-dark);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.text-button:hover,
.text-button:focus-visible {
  background: rgba(15, 168, 150, 0.08);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* ─── Hero ─── */

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0a1628;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(
    125deg,
    rgba(5, 15, 35, 0.97) 0%,
    rgba(8, 40, 75, 0.9) 25%,
    rgba(10, 80, 110, 0.78) 52%,
    rgba(15, 140, 130, 0.58) 76%,
    rgba(0, 200, 175, 0.32) 100%
  );
}

.hero-content {
  position: relative;
  padding-top: 52px;
}

.hero .eyebrow {
  display: inline-block;
  color: #6ffae8;
  background: rgba(15, 168, 150, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(111, 250, 232, 0.28);
  letter-spacing: 0.06em;
}

.hero-accent {
  display: inline;
  background: linear-gradient(135deg, #5ffadf 0%, #00c2a8 42%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(220, 245, 240, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-trust span {
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(100, 220, 200, 0.24);
  background: rgba(15, 168, 150, 0.12);
  color: rgba(180, 240, 225, 0.88);
  font-size: 0.81rem;
  font-weight: 700;
}

/* ─── Stats Band ─── */

.stats-band {
  padding: clamp(40px, 5vw, 60px) clamp(18px, 4vw, 48px);
  background: var(--grad-stats);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 4vw, 40px);
  text-align: center;
}

.stat-item {
  padding: clamp(12px, 2vw, 20px);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #5ffadf;
}

.stat-label {
  margin: 10px 0 0;
  color: rgba(200, 240, 235, 0.8);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── Intro ─── */

.intro {
  background: var(--surface);
}

.intro-grid,
.why-grid,
.about-grid,
.contact-grid,
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro-copy p,
.audience-copy p,
.contact p,
.provider-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.stat-row span {
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: 30px;
  color: var(--teal-dark);
  background: rgba(15, 168, 150, 0.06);
  font-weight: 800;
  font-size: 0.86rem;
  transition: background 0.2s, border-color 0.2s;
}

.stat-row span:hover {
  background: rgba(15, 168, 150, 0.14);
  border-color: var(--teal);
}

/* ─── Section Heading ─── */

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

/* ─── Services ─── */

.services {
  background: linear-gradient(155deg, #f0fdf9 0%, #e8f5ff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-7px);
}

.card--teal:hover   { border-color: var(--teal);   box-shadow: 0 22px 60px rgba(15, 168, 150, 0.18); }
.card--purple:hover { border-color: var(--purple); box-shadow: 0 22px 60px rgba(124, 58, 237, 0.18); }
.card--blue:hover   { border-color: var(--blue);   box-shadow: 0 22px 60px rgba(37, 99, 235, 0.18); }
.card--orange:hover { border-color: var(--orange); box-shadow: 0 22px 60px rgba(244, 122, 59, 0.18); }

.service-card p,
.why-list p,
.about-cards p,
.steps p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 12px;
  flex-shrink: 0;
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon--teal   { background: linear-gradient(135deg, #ccf5ee, #96ede0); color: #087c6e; }
.icon--purple { background: linear-gradient(135deg, #ede9fe, #c4b5fd); color: #6d28d9; }
.icon--blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.icon--orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #c2410c; }

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.87rem;
  transition: opacity 0.15s;
}

.card-link:hover { opacity: 0.75; }
.card--teal .card-link   { color: var(--teal); }
.card--purple .card-link { color: var(--purple); }
.card--blue .card-link   { color: var(--blue); }
.card--orange .card-link { color: var(--orange); }

/* Specialties */

.specialties {
  background: var(--surface);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.specialty-grid span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: #183241;
  background: linear-gradient(145deg, #ffffff, #f4fffc);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.specialty-grid span:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(15, 168, 150, 0.14);
}

/* ─── How It Works ─── */

.how {
  background: linear-gradient(155deg, #fffaf5 0%, #fff3e8 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 21px);
  right: calc(12.5% + 21px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--purple), var(--orange));
  opacity: 0.25;
  border-radius: 2px;
  pointer-events: none;
}

.steps article {
  position: relative;
  min-height: 220px;
  padding: 28px 24px 26px;
  border: 1.5px solid #f0d9c8;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.22s, box-shadow 0.22s;
}

.steps article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.step--teal   { background: var(--grad-teal);   box-shadow: 0 6px 20px rgba(15, 168, 150, 0.35); }
.step--blue   { background: var(--grad-blue);   box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35); }
.step--purple { background: var(--grad-purple); box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35); }
.step--orange { background: var(--grad-orange); box-shadow: 0 6px 20px rgba(244, 122, 59, 0.35); }

/* ─── Why Hospitra ─── */

.why {
  background: var(--surface);
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list article {
  padding: 24px 24px 24px 22px;
  border: 1.5px solid var(--line);
  border-left-width: 4px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}

.why-list article:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.why--teal   { border-left-color: var(--teal); }
.why--blue   { border-left-color: var(--blue); }
.why--orange { border-left-color: var(--orange); }

.why-icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.why-list h3 {
  margin-bottom: 8px;
}

/* ─── Testimonials ─── */

.testimonials {
  background: linear-gradient(155deg, #f0fdf9 0%, #eff6ff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 0.84rem;
  flex-shrink: 0;
}

.avatar--teal   { background: var(--grad-teal); }
.avatar--blue   { background: var(--grad-blue); }
.avatar--orange { background: var(--grad-orange); }

.reviewer strong {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
}

.reviewer span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ─── Audience Sections ─── */

.audience-copy {
  max-width: 560px;
}

.audience-copy .button {
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #1e3440;
  font-weight: 700;
  font-size: 0.97rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 45%, #fff 45% 58%, transparent 58%) 3px 2px / 11px 11px no-repeat,
    var(--grad-teal);
}

.feature-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.panel-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.panel-row:first-child { padding-top: 0; }
.panel-row:last-child  { padding-bottom: 0; border-bottom: 0; }

.panel-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: #fff;
  background: var(--grad-blue);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.panel-row p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.corporate-panel {
  background: linear-gradient(145deg, #0f1f2e, #172433);
  color: #fff;
  border-color: #172433;
}

.corporate-panel h3 {
  color: #fff;
  margin-bottom: 18px;
}

.corporate-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.corporate-panel li {
  padding-left: 22px;
  position: relative;
  color: #c2dde5;
  font-weight: 600;
}

.corporate-panel li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 900;
}

.provider-panel {
  border-top: 5px solid var(--teal);
  background: linear-gradient(145deg, #f0fdf9, #e8faf5);
}

.provider-panel h3 {
  color: var(--teal-dark);
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.audience.alt {
  background: linear-gradient(155deg, #f0fdf9 0%, #eff6ff 100%);
}

/* ─── About ─── */

.about {
  background: var(--surface);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-cards article {
  padding: 28px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}

.about-cards article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-icon {
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.about-icon--teal   { background: linear-gradient(135deg, #ccf5ee, #96ede0); }
.about-icon--blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.about-icon--orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); }

.about-cards h3 { margin-bottom: 8px; }
.about-cards p  { margin: 0; color: var(--muted); font-size: 0.97rem; line-height: 1.65; }

/* ─── Forms ─── */

.forms {
  background: linear-gradient(155deg, #e8faf5 0%, #eff0ff 100%);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 4px;
}

.form-header > span { font-size: 1.6rem; }
.form-header h3     { font-size: 1.18rem; font-weight: 900; }

.form-header--teal   h3 { color: var(--teal-dark); }
.form-header--orange h3 { color: var(--orange-dark); }
.form-header--blue   h3 { color: var(--blue-dark); }

.lead-form label {
  display: grid;
  gap: 7px;
  color: #2a3a44;
  font-weight: 700;
  font-size: 0.88rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1.5px solid #c0d8d2;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fffe;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 168, 150, 0.12);
  background: #fff;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9ab0ab;
}

.lead-form .button {
  margin-top: 4px;
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* ─── Contact ─── */

.contact {
  background: var(--surface);
}

.contact-grid { align-items: start; }

.contact h2   { max-width: 520px; }

.contact-grid > div > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 20px;
}

.contact-form {
  box-shadow: var(--shadow-lg);
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}

.contact-cta-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f8fffe, #ffffff);
  box-shadow: var(--shadow-lg);
}

.contact-cta-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.contact-cta-panel > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.cta-option {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cta-option:hover,
.cta-option:focus-visible {
  transform: translateY(-3px);
  outline: none;
  box-shadow: var(--shadow);
}

.cta-option span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cta-option strong {
  color: var(--ink);
  font-size: 1rem;
}

.cta-option small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.cta-option--blue:hover,
.cta-option--blue:focus-visible {
  border-color: var(--blue);
}

.cta-option--teal:hover,
.cta-option--teal:focus-visible {
  border-color: var(--teal);
}

.cta-option--orange:hover,
.cta-option--orange:focus-visible {
  border-color: var(--orange);
}

/* ─── Footer ─── */

.site-footer {
  padding: clamp(44px, 5vw, 68px) clamp(18px, 4vw, 48px) 0;
  color: #c8dde0;
  background: linear-gradient(145deg, #0a1628, #0f1f2e);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid rgba(200, 221, 224, 0.1);
}

.footer-brand-col .brand {
  color: #fff;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand-col > p {
  margin: 0 0 22px;
  color: #8faeb5;
  font-size: 0.93rem;
  line-height: 1.65;
  max-width: 340px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8faeb5;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-contacts a:hover { color: var(--teal-light); }

.footer-links {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #7a9aa0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
}

.footer-bottom p {
  margin: 0;
  color: #506470;
  font-size: 0.82rem;
}

.footer-love {
  color: #8faeb5 !important;
  font-weight: 700;
}

.footer-love span {
  font-size: 1rem;
}

/* ─── Floating WhatsApp ─── */

.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
}

.float-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── Scroll to Top ─── */

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 100;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--teal-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ─── Scroll Reveal ─── */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: 24px;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 980px) {
  .service-grid,
  .specialty-grid,
  .steps,
  .about-cards,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps::before { display: none; }

  .intro-grid,
  .why-grid,
  .audience-grid,
  .audience-grid.reverse,
  .about-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .reverse .feature-panel { order: 2; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }

  .hero { min-height: 700px; }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 15, 35, 0.96) 0%,
      rgba(8, 40, 75, 0.88) 38%,
      rgba(10, 80, 110, 0.8) 70%,
      rgba(15, 140, 130, 0.68) 100%
    );
  }

  .hero-media img { object-position: 62% center; }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .float-wa-text { display: none; }
  .float-wa {
    padding: 14px;
    border-radius: 50%;
    width: 58px;
    height: 58px;
  }

  .section-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 560px) {
  .service-grid,
  .specialty-grid,
  .steps,
  .about-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps article { min-height: auto; }

  .stat-row { flex-direction: column; }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   VFX
   ═══════════════════════════════════════════════ */

/* ─── Hero floating orbs ─── */

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.orb-1 {
  width: 520px; height: 520px;
  top: -160px; right: 4%;
  background: radial-gradient(circle, rgba(0, 212, 184, 0.42) 0%, transparent 70%);
  filter: blur(80px);
  animation: orb-drift 10s ease-in-out infinite;
}

.orb-2 {
  width: 380px; height: 380px;
  bottom: -40px; right: 18%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.38) 0%, transparent 70%);
  filter: blur(70px);
  animation: orb-drift 13s ease-in-out infinite reverse;
}

.orb-3 {
  width: 280px; height: 280px;
  top: 35%; right: -30px;
  background: radial-gradient(circle, rgba(244, 122, 59, 0.35) 0%, transparent 70%);
  filter: blur(60px);
  animation: orb-drift 8s ease-in-out infinite 1.5s;
}

.orb-4 {
  width: 200px; height: 200px;
  top: 55%; right: 38%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  animation: orb-drift 11s ease-in-out infinite 3s reverse;
}

@keyframes orb-drift {
  0%,  100% { transform: translate(0px,  0px)  scale(1);    }
  25%        { transform: translate(-22px, 18px) scale(1.05); }
  50%        { transform: translate(18px, -28px) scale(0.95); }
  75%        { transform: translate(-12px, 12px) scale(1.02); }
}

/* ─── Animated hero-accent gradient ─── */

.hero-accent {
  background: linear-gradient(
    270deg,
    #5ffadf, #00c2a8, #7dd3fc, #c084fc, #5ffadf
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 5s linear infinite;
}

@keyframes gradient-flow {
  0%   { background-position: 0%   center; }
  100% { background-position: 300% center; }
}

/* ─── WhatsApp button pulse ring ─── */

.float-wa {
  position: fixed; /* already set — keep */
}

.float-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: -1;
  animation: wa-ping 2.4s ease-out infinite;
}

@keyframes wa-ping {
  0%       { transform: scale(1);    opacity: 0.65; }
  80%, 100%{ transform: scale(1.65); opacity: 0;    }
}

/* ─── Service card shine sweep on hover ─── */

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.service-card:hover::after {
  left: 130%;
}

/* ─── Stats number glow on reveal ─── */

.stat-item[data-reveal].revealed .stat-number {
  animation: num-glow 0.8s ease-out 0.2s both;
}

@keyframes num-glow {
  0%   { text-shadow: none; }
  40%  { text-shadow: 0 0 28px rgba(255,255,255,0.9), 0 0 60px rgba(95,250,223,0.6); }
  100% { text-shadow: none; }
}

/* ─── Button ripple on click ─── */

.button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  transform: scale(0);
  animation: ripple-out 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}

/* ─── Logo watermark ─── */

.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  filter: grayscale(100%);
}

.watermark img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* keep all real content above the watermark */
main, .site-header, .site-footer {
  position: relative;
  z-index: 1;
}
