/* ============================================================
   ROUNDS — How It Works
   Animated product walkthrough page
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --bg:           #FAFAF6;
  --surface:      #F0EDE6;
  --surface-2:    #E6DFD3;
  --accent:       #14B8A6;
  --accent-light: #5EEAD4;
  --accent-dim:   rgba(20, 184, 166, 0.12);
  --text:         #1A2332;
  --text-muted:   #6B7A8D;
  --danger:       #C44B3B;
  --warning:      #D4A520;
  --border:       #E0D8CC;
  --white:        #FFFFFF;
  --dark:         #1A2332;
  --dark-surface: #242D3C;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:     14px;
  --radius-sm:  8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ── Scroll Reveal Base ── */
.reveal,
.reveal-right,
.reveal-left,
.reveal-card,
.reveal-soap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right { transform: translateX(60px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-card  { transform: translateY(50px); transition-delay: calc(var(--delay, 0) * 0.1s); }
.reveal-soap  { transform: translateY(20px); }

.reveal.visible,
.reveal-right.visible,
.reveal-left.visible,
.reveal-card.visible,
.reveal-soap.visible {
  opacity: 1;
  transform: translate(0, 0);
}


/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.hiw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.hiw-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hiw-nav-brand { display: flex; align-items: center; gap: 12px; }
.hiw-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 3px;
}
.hiw-nav-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.hiw-nav-links {
  display: flex;
  gap: 32px;
}
.hiw-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.hiw-nav-links a:hover,
.hiw-nav-links a.active { color: var(--accent); }
.hiw-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}
.hiw-nav-cta:hover { background: #0FA698; transform: translateY(-1px); }

@media (max-width: 768px) {
  .hiw-nav-links { display: none; }
  .hiw-nav-tagline { display: none; }
}


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hiw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: var(--dark);
}
.hiw-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(20,184,166,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hiw-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.hiw-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hiw-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hiw-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Hero animation — stethoscope with pulsing waveform ── */
.hiw-hero-anim { margin: 0 auto; width: 200px; height: 200px; }
.hero-morph-svg { width: 100%; height: 100%; }
.morph-ring {
  stroke-dasharray: 252;
  stroke-dashoffset: 252;
  animation: drawRing 1.5s ease-out 0.5s forwards;
}
@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}
.morph-bar {
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
}
.morph-bar.animate {
  animation: barGrow 0.4s ease-out forwards;
}
.bar-1.animate { animation-delay: 1.6s; --y1: 73; --y2: 87; }
.bar-2.animate { animation-delay: 1.7s; --y1: 64; --y2: 96; }
.bar-3.animate { animation-delay: 1.8s; --y1: 58; --y2: 102; }
.bar-4.animate { animation-delay: 1.9s; --y1: 54; --y2: 106; }
.bar-5.animate { animation-delay: 2.0s; --y1: 58; --y2: 102; }
.bar-6.animate { animation-delay: 2.1s; --y1: 64; --y2: 96; }
.bar-7.animate { animation-delay: 2.2s; --y1: 73; --y2: 87; }
@keyframes barGrow {
  from { opacity: 0; }
  to { opacity: 1; }
}
.morph-stem, .morph-chest {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.2s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pulse effect on bars after draw */
.morph-bar.pulse {
  animation: barPulse 1.5s ease-in-out infinite alternate;
}
.bar-1.pulse { animation-delay: 0s; }
.bar-2.pulse { animation-delay: 0.1s; }
.bar-3.pulse { animation-delay: 0.2s; }
.bar-4.pulse { animation-delay: 0.3s; }
.bar-5.pulse { animation-delay: 0.2s; }
.bar-6.pulse { animation-delay: 0.1s; }
.bar-7.pulse { animation-delay: 0s; }
@keyframes barPulse {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50%      { top: 20px; opacity: 0.3; }
}


/* ════════════════════════════════════════════════════════════
   STEPS
   ════════════════════════════════════════════════════════════ */
.hiw-step {
  padding: 120px 24px;
  overflow: hidden;
}
.hiw-step-alt {
  background: var(--surface);
}
.hiw-step-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hiw-step-reverse {
  direction: rtl;
}
.hiw-step-reverse > * {
  direction: ltr;
}
.hiw-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  letter-spacing: 0.5px;
}
.step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.hiw-step-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.hiw-step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hiw-step-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.step-feat svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .hiw-step { padding: 80px 20px; }
  .hiw-step-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hiw-step-reverse { direction: ltr; }
  .hiw-step-visual { order: -1; }
}


/* ════════════════════════════════════════════════════════════
   PHONE FRAME MOCKUPS
   ════════════════════════════════════════════════════════════ */
.phone-frame {
  width: 280px;
  margin: 0 auto;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.15),
    0 8px 20px rgba(0,0,0,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}
.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

/* ── Record Screen Mock ── */
.record-screen-mock {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 16px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.mock-back { font-size: 22px; color: var(--text-muted); }
.mock-bookmark { font-size: 16px; color: var(--text-muted); }
.mock-reviewed { font-size: 10px; color: var(--accent); font-weight: 600; }
.mock-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--danger);
}
.mock-pulse {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: mockPulse 1.5s ease-in-out infinite;
}
@keyframes mockPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.3); }
}
.mock-timer {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  padding: 8px 0;
  letter-spacing: 1px;
}

/* ── Waveform bars ── */
.mock-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 20px 16px;
  height: 80px;
}
.wave-bar {
  width: 3px;
  height: var(--h, 40%);
  background: var(--accent);
  border-radius: 2px;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.05s);
}
.wave-bar:nth-child(1)  { --i: 0; }
.wave-bar:nth-child(2)  { --i: 1; }
.wave-bar:nth-child(3)  { --i: 2; }
.wave-bar:nth-child(4)  { --i: 3; }
.wave-bar:nth-child(5)  { --i: 4; }
.wave-bar:nth-child(6)  { --i: 5; }
.wave-bar:nth-child(7)  { --i: 6; }
.wave-bar:nth-child(8)  { --i: 7; }
.wave-bar:nth-child(9)  { --i: 8; }
.wave-bar:nth-child(10) { --i: 9; }
.wave-bar:nth-child(11) { --i: 10; }
.wave-bar:nth-child(12) { --i: 11; }
.wave-bar:nth-child(13) { --i: 12; }
.wave-bar:nth-child(14) { --i: 13; }
.wave-bar:nth-child(15) { --i: 14; }
@keyframes waveAnim {
  0%   { height: var(--h, 40%); }
  100% { height: calc(var(--h, 40%) * 0.3 + 15%); }
}

/* ── Mock transcript ── */
.mock-transcript {
  padding: 12px 16px;
  flex: 1;
  min-height: 100px;
}
.transcript-line {
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  min-height: 18px;
  border-right: 2px solid var(--accent);
  padding-right: 4px;
  animation: cursorBlink 1s step-end infinite;
}
.transcript-line:not(:empty) {
  border-right-color: transparent;
  animation: none;
}
.transcript-line:last-child:not(:empty) {
  border-right-color: var(--accent);
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { border-right-color: var(--accent); }
  50%      { border-right-color: transparent; }
}
.mock-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px 20px;
}
.mock-btn-primary {
  flex: 1;
  padding: 10px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
}
.mock-btn-secondary {
  padding: 10px 16px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
}

/* ── Analyze Screen Mock ── */
.analyze-screen-mock {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-processing {
  text-align: center;
  padding: 60px 20px 40px;
  width: 100%;
}
.mock-orb {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbPulse 2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(20,184,166,0.3);
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(20,184,166,0.3); }
  50%      { transform: scale(1.08); box-shadow: 0 0 60px rgba(20,184,166,0.4); }
}
.mock-processing-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.mock-processing-status {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.mock-progress-ring {
  width: 60px;
  margin: 0 auto 24px;
}
.mock-progress-ring svg { width: 100%; }
.progress-circle {
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.5s ease;
}
.mock-analysis-stream {
  text-align: left;
  padding: 0 12px;
}
.stream-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.stream-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stream-item svg { flex-shrink: 0; }

/* ── Review Screen Mock ── */
.review-screen-mock {
  background: var(--bg);
}
.mock-badge {
  display: inline-block;
  margin: 0 16px 8px;
  padding: 3px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.mock-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
}
.mock-tab {
  padding: 8px 0;
  margin-right: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}
.mock-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.mock-soap-content {
  padding: 12px 16px 20px;
}
.mock-soap-section {
  margin-bottom: 12px;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.mock-soap-section h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
}
.mock-soap-section p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════
   BEFORE vs AFTER COMPARISON
   ════════════════════════════════════════════════════════════ */
.hiw-compare {
  padding: 120px 24px;
  background: var(--dark);
  color: white;
  overflow: hidden;
}
.hiw-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hiw-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hiw-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 56px;
}
.hiw-compare-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
}
.compare-card {
  flex: 1;
  max-width: 380px;
  padding: 32px 28px;
  border-radius: 20px;
  text-align: left;
}
.compare-before {
  background: rgba(196, 75, 59, 0.08);
  border: 1px solid rgba(196, 75, 59, 0.2);
}
.compare-after {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.compare-header svg { flex-shrink: 0; }
.compare-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.compare-timer {
  text-align: center;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 12px;
}
.compare-timer-slow {
  background: rgba(196, 75, 59, 0.12);
}
.compare-timer-fast {
  background: rgba(20, 184, 166, 0.12);
}
.timer-value {
  display: block;
  font-size: 40px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.compare-timer-slow .timer-value { color: var(--danger); }
.compare-timer-fast .timer-value { color: var(--accent); }
.timer-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.compare-list {
  list-style: none;
  margin-bottom: 20px;
}
.compare-list li {
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
}
.compare-before .compare-list li::before { background: var(--danger); }
.compare-after  .compare-list li::before { background: var(--accent); }
.compare-mood {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mood-emoji { font-size: 24px; }
.compare-mood span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-vs span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .hiw-compare { padding: 80px 20px; }
  .hiw-compare-grid {
    flex-direction: column;
    align-items: center;
  }
  .compare-card { max-width: 100%; }
  .compare-vs { padding: 8px 0; }
}


/* ════════════════════════════════════════════════════════════
   FEATURES SHOWCASE
   ════════════════════════════════════════════════════════════ */
.hiw-features {
  padding: 120px 24px;
  overflow: hidden;
}
.hiw-features-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hiw-features .hiw-section-title { color: var(--text); }
.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.hiw-feat-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hiw-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--accent);
}
.feat-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.hiw-feat-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hiw-feat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hiw-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hiw-features { padding: 80px 20px; }
  .hiw-features-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
.hiw-cta {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.hiw-cta-inner { max-width: 600px; margin: 0 auto; }
.hiw-cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hiw-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.hiw-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(20,184,166,0.3);
}
.hiw-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,184,166,0.4);
  background: #0FA698;
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.hiw-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 24px 24px;
}
.hiw-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.hiw-footer-brand p { font-size: 13px; margin-top: 4px; }
.hiw-footer .hiw-logo { color: rgba(255,255,255,0.7); }
.hiw-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hiw-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.hiw-footer-links a:hover { color: var(--accent); }
.hiw-footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hiw-footer-copy p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hiw-footer-inner { flex-direction: column; gap: 24px; }
}
