/* ── WAZ AI STUDIO V3 — Main Stylesheet ── */

:root {
  --navy: #1a2e4a;
  --navy-deep: #0f1e35;
  --teal: #1D9E75;
  --teal-d: #178a63;
  --teal-light: #e8f7f2;
  --teal-glow: rgba(29,158,117,0.12);
  --white: #ffffff;
  --grey-bg: #f6f8fb;
  --grey-mid: #e2e8f0;
  --text-dark: #1a2e4a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(26,46,74,0.08);
  --shadow-md: 0 12px 36px rgba(26,46,74,0.14);
  --shadow-lg: 0 24px 60px rgba(26,46,74,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 12px;
}

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--grey-bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.section-header { max-width: 680px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(29,158,117,0.25);
}
.btn-primary:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29,158,117,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.navbar.scrolled {
  border-color: var(--grey-mid);
  box-shadow: 0 2px 12px rgba(26,46,74,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-logo-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-fallback span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 9px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-wa:hover { border-color: #25D366; color: #25D366; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 16px 24px 24px;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--grey-mid);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }

/* ── HERO ── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-d);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  font-size: 0.82rem;
  color: var(--text-light);
}
.hero-trust strong { color: var(--text-mid); font-weight: 600; }

/* Hero right — stats card */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-mid);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-card-status .dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 1.8s infinite; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-label { font-size: 0.86rem; color: var(--text-mid); }
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
}
.hero-pill {
  position: absolute;
  bottom: -16px; left: -20px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.hero-pill-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--grey-bg);
  padding: 72px 0;
}
.video-wrap {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.video-wrap video { width: 100%; display: block; }
.video-caption {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
}
.video-caption strong { color: var(--teal); }

/* ── TOOL BAR ── */
.toolbar {
  padding: 28px 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}
.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.toolbar-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  margin-right: 8px;
  letter-spacing: 0.04em;
}
.tool-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.tool-pill-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* ── THREE PILLARS (HYBRID POSITIONING) ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problem-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.problem-list li .x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.solution-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.solution-box h3 { color: white; font-size: 1.4rem; margin-bottom: 14px; font-family: var(--font-display); }
.solution-box p { color: rgba(255,255,255,0.9); margin-bottom: 24px; font-size: 0.95rem; }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.solution-list li::before { content: '→'; font-weight: 700; font-size: 1.05rem; }

/* ── HOW IT WORKS ── */
.steps { max-width: 720px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 31px; top: 88px; bottom: -16px;
  width: 2px;
  background: var(--grey-mid);
}
.step-num {
  width: 62px; height: 62px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.15rem; }
.step-content p { font-size: 0.95rem; }
.step-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-d);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.package-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.package-price span { font-size: 1.3rem; font-weight: 500; }
.package-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.package-divider { height: 1px; background: var(--grey-mid); margin: 20px 0; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.package-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-card .btn { width: 100%; justify-content: center; }
.packages-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.packages-footer a { color: var(--teal); font-weight: 600; }

/* ── HONEST COST ── */
.honest-cost {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.honest-cost::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.honest-cost-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.honest-cost .eyebrow { color: var(--teal); }
.honest-cost h2 { color: white; font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 18px; }
.honest-cost h2 em { font-style: normal; color: var(--teal); }
.honest-cost p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 12px; }
.honest-cost .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(29,158,117,0.15);
  border: 1px solid rgba(29,158,117,0.4);
  padding: 14px 28px;
  border-radius: 100px;
  margin: 24px 0 28px;
}
.honest-cost .price-tag .label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.honest-cost .price-tag .val { font-family: var(--font-display); font-weight: 800; color: var(--teal); font-size: 1.6rem; }
.honest-cost-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cost-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cost-pill::before { content: '✗'; color: #fb7185; font-weight: 700; }

/* ── CAPABILITIES ── */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.cap-card:hover::before { transform: scaleX(1); }
.cap-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.cap-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.cap-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }
.caps-cta { text-align: center; margin-top: 40px; }

/* ── DEMO SECTION ── */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.demo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text-dark);
  text-align: center;
}
.demo-card:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.demo-icon { font-size: 2.2rem; }
.demo-label { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.demo-sub { font-size: 0.76rem; color: var(--text-light); }
.demo-arrow { font-size: 0.74rem; color: var(--teal); font-weight: 700; margin-top: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── REVIEWS PLACEHOLDER ── */
.reviews-placeholder {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.reviews-placeholder .stars-grey { font-size: 1.6rem; display: block; margin-bottom: 12px; color: #d1d5db; letter-spacing: 4px; }
.reviews-placeholder p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 12px; }
.reviews-placeholder a { color: var(--teal); font-weight: 700; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: white; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(29,158,117,0.18);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.tally-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ── TRUST ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-icon { font-size: 2.2rem; margin-bottom: 14px; }
.trust-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.trust-card p { font-size: 0.82rem; color: var(--text-light); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  color: white;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 320px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}
.footer-logo span { color: var(--teal); }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-link:hover { background: var(--teal); color: white; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ── MOBILE STICKY BAR ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: white;
  border-top: 1px solid var(--grey-mid);
  box-shadow: 0 -4px 16px rgba(26,46,74,0.08);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 13px;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 100px;
}
.mobile-wa { background: #25D366; color: white; }
.mobile-book { background: var(--teal); color: white; }

/* ── SCROLL ANIM ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-wa span { display: none; }
  .nav-wa { padding: 8px 10px; }
  .demo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .caps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 44px; }
  .hero { padding: 130px 0 64px; }
  .honest-cost-pills { flex-direction: column; align-items: center; }
  .whatsapp-float { display: none; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 64px; }
}
