/* =====================================================================
   WaktuKerja Landing — Vibrant Tenun palette
   (sync dengan frontend/src/styles/tokens.css supaya brand konsisten)
   ===================================================================== */
:root {
  --indigo-900: #0E1E36;
  --indigo-700: #1F3A5F;
  --indigo-500: #36527B;
  --terracotta: #C04528;
  --terracotta-d: #962E18;
  --ochre: #E0AB1F;
  --ochre-l: #F0C654;
  --moss: #5E8038;
  --moss-d: #3F5926;
  --crimson: #9C2A21;

  --bg: #EAD8B0;        /* sandy body */
  --surface: #FAF1D9;   /* krem card */
  --surface-2: #F2E0B6;
  --bg-2: #E8D8AC;
  --border: #C7AC78;
  --border-soft: #DCC796;
  --text: #1F1612;
  --text-2: #4A3220;
  --text-mute: #6B4C30;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(31, 22, 18, 0.08);
  --shadow: 0 4px 12px rgba(31, 22, 18, 0.10), 0 1px 3px rgba(31, 22, 18, 0.08);
  --shadow-lg: 0 12px 32px rgba(31, 22, 18, 0.16);

  --top-nav-h: 64px;
}

/* =====================================================================
   Reset & base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--top-nav-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.01em; }
h3 { font-size: 19px; }
h4 { font-size: 15px; }

p { margin: 0 0 12px; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--terracotta-d); }

code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(31, 58, 95, 0.08);
  color: var(--indigo-700);
  padding: 1px 5px;
  border-radius: 3px;
}

img, svg { max-width: 100%; }

ul { padding-left: 20px; margin: 0 0 12px; }
li { margin-bottom: 4px; }

/* =====================================================================
   Layout primitives
   ===================================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

.section { padding: 80px 0; }
.section-light { background: var(--surface); }
.section-dark {
  background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-700) 100%);
  color: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-sub {
  color: var(--text-2);
  font-size: 17px;
  margin-top: 8px;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192, 69, 40, 0.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow-light {
  color: var(--ochre);
  background: rgba(224, 171, 31, 0.15);
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 14px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: var(--terracotta-d); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(31, 22, 18, 0.06); color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }

/* =====================================================================
   Top Nav
   ===================================================================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 241, 217, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--top-nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-name-1 { font-style: italic; color: var(--terracotta); }
.brand-name-2 { color: var(--indigo-900); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links > a:not(.nav-cta):not(.nav-cta-secondary) {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
}
.nav-links > a:not(.nav-cta):not(.nav-cta-secondary):hover {
  color: var(--terracotta);
}
.nav-cta-secondary {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.nav-cta-secondary:hover { background: var(--bg-2); color: var(--text); }
.nav-cta {
  background: var(--terracotta);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--terracotta-d); color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.2s;
  border-radius: 2px;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse at top right, rgba(224, 171, 31, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(192, 69, 40, 0.10) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--moss-d);
  background: rgba(94, 128, 56, 0.16);
  border-left: 3px solid var(--moss);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero-accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--indigo-700);
  font-weight: 700;
}
.trust-item span {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.4;
  display: block;
  max-width: 130px;
}
.hero-fineprint {
  margin-top: 38px;
  font-size: 12.5px;
  color: var(--text-mute);
  text-align: center;
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone {
  width: 280px;
  height: 560px;
  background: var(--indigo-900);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 30px 60px -20px rgba(14, 30, 54, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: var(--indigo-700);
  border-radius: 4px;
  z-index: 2;
}
.hero-phone:hover { transform: rotate(0deg); }

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 24px;
  padding: 28px 14px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.phone-header img { width: 22px; height: 22px; }
.phone-greeting {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 4px;
}
.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.action-tile {
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.action-in { background: var(--moss); }
.action-out { background: var(--terracotta); }
.action-icon { font-size: 22px; margin-bottom: 4px; }

.phone-card {
  background: var(--bg-2);
  border-left: 3px solid var(--ochre);
  border-radius: 8px;
  padding: 10px 12px;
}
.phone-card-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-mute);
}
.phone-card-value {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 2px 0 1px;
}
.phone-card-sub {
  font-size: 10px;
  color: var(--text-mute);
}

.phone-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo-700);
  line-height: 1;
}
.stat-num small {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
}
.stat-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}

/* =====================================================================
   Grids
   ===================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.grid-2.align-center { align-items: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* =====================================================================
   Audience cards
   ===================================================================== */
.audience-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.section-light .audience-card { background: #fff; }
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.audience-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.audience-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   Feature cards
   ===================================================================== */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--ochre);
}
.feature-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: var(--terracotta);
  opacity: 0.4;
  margin-bottom: 6px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   Cara Kerja Steps
   ===================================================================== */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  width: 100%;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.step-content h3 { margin: 6px 0 6px; }
.step-content p { color: var(--text-2); font-size: 14.5px; margin: 0; }
.step-arrow {
  font-size: 22px;
  color: var(--terracotta);
  opacity: 0.5;
  font-weight: 700;
}

/* =====================================================================
   Pricing
   ===================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card-featured {
  border: 2px solid var(--terracotta);
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.price-card-featured:hover { transform: translateY(-9px); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-head { margin-bottom: 20px; }
.price-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.price-currency {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-2);
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.price-unit {
  font-size: 13px;
  color: var(--text-mute);
}
.price-main-text .price-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--indigo-700);
  font-style: italic;
}
.price-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.price-features li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: '✓';
  color: var(--moss);
  font-weight: 700;
  flex-shrink: 0;
}
.price-features li em {
  background: rgba(94, 128, 56, 0.18);
  color: var(--moss-d);
  padding: 1px 5px;
  border-radius: 3px;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  margin-left: 4px;
}

.price-note {
  font-size: 11.5px;
  color: var(--text-mute);
  background: var(--bg-2);
  border-left: 3px solid var(--ochre);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 30px;
}

/* =====================================================================
   Section-dark (Mobile highlight)
   ===================================================================== */
.section-dark h2,
.section-dark h3 { color: var(--surface); }

.bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}
.bullet-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(250, 241, 217, 0.10);
}
.bullet-list-light li { color: rgba(250, 241, 217, 0.92); }
.bullet-list-light li strong { color: var(--ochre); }
.bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--ochre);
  font-size: 10px;
}

.mobile-mockup-stack {
  position: relative;
  height: 360px;
}
.mockup-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.mockup-card-1 {
  top: 0;
  left: 0;
  width: 70%;
  transform: rotate(-3deg);
}
.mockup-card-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  transform: rotate(3deg);
}

.mockup-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.mockup-list { display: flex; flex-direction: column; gap: 10px; }
.mockup-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text);
}
.mockup-row small { color: var(--text-mute); font-size: 10px; }
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.mockup-dot-moss { background: var(--moss); }
.mockup-dot-indigo { background: var(--indigo-700); }
.mockup-dot-terracotta { background: var(--terracotta); }

.mockup-thp {
  background: rgba(192, 69, 40, 0.10);
  border: 1px solid rgba(192, 69, 40, 0.30);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mockup-thp span {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-mute);
}
.mockup-thp strong {
  font-family: ui-monospace, monospace;
  font-size: 15px;
  color: var(--terracotta);
}
.mockup-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mockup-mini-stats > div {
  background: var(--bg-2);
  padding: 6px 8px;
  border-radius: 6px;
}
.mockup-mini-stats small {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-mute);
  display: block;
}
.mockup-mini-stats b {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] {
  border-color: var(--terracotta);
  background: #fff;
}
.faq-item summary {
  padding: 16px 50px 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* =====================================================================
   CTA Final
   ===================================================================== */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-d) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(224, 171, 31, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(14, 30, 54, 0.3) 0%, transparent 40%);
  pointer-events: none;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
  position: relative;
}
.cta-final p {
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 30px;
  opacity: 0.92;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--terracotta);
}
.cta-final .btn-primary:hover { background: var(--surface); color: var(--terracotta-d); }
.cta-final .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.cta-final .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* =====================================================================
   Kontak
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.contact-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}
.contact-card p { margin-bottom: 4px; }
.contact-link {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--terracotta);
}
.contact-card small {
  font-size: 11.5px;
  color: var(--text-mute);
}

/* =====================================================================
   Footer
   ===================================================================== */
.footer {
  background: var(--indigo-900);
  color: rgba(250, 241, 217, 0.75);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-footer { margin-bottom: 14px; }
.footer-tag {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(250, 241, 217, 0.65);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(250, 241, 217, 0.75);
  font-size: 13.5px;
}
.footer-col a:hover { color: var(--ochre); }

.footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(250, 241, 217, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 241, 217, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}
.footer-links a { color: rgba(250, 241, 217, 0.65); }
.footer-links a:hover { color: var(--ochre); }

/* =====================================================================
   Floating WhatsApp
   ===================================================================== */
.fab-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.15s;
}
.fab-wa:hover {
  transform: scale(1.08);
  background: #20BA5A;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-3px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; transform: scale(0.85); }
  .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 40px; }
  .grid-3 { grid-template-columns: 1fr; }

  .nav-links {
    position: absolute;
    top: var(--top-nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 20px 18px;
    transform: translateY(-110%);
    transition: transform 0.2s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    width: 100%;
    text-align: left;
  }
  .nav-links > a:last-child { border-bottom: 0; }
  .nav-cta, .nav-cta-secondary { text-align: center !important; margin-top: 6px; }

  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero h1 { font-size: 32px; }
  .hero-trust { gap: 16px; }
  .trust-item strong { font-size: 19px; }
  .hero-phone { width: 240px; height: 480px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-mockup-stack { height: 320px; max-width: 360px; margin: 0 auto; }
  .mockup-card-1 { width: 80%; }
  .mockup-card-2 { width: 70%; }
}
