/* ═══════════════════════════════════════════════════════════
   מי-עד | Mi-Ad Water Filtration — Design System
   RTL Hebrew | Rubik Font | Light & Clean — Teal + White
═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --navy:        #0B2545;
  --navy-dark:   #071A32;
  --navy-mid:    #163760;
  --teal:        #1EB6C8;
  --teal-dark:   #17939F;
  --teal-light:  #E3F8FA;
  --teal-pale:   #F0FCFD;
  --white:       #FFFFFF;
  --off-white:   #F7F9FB;
  --gray-light:  #EDF1F5;
  --gray:        #CBD5E0;
  --gray-mid:    #8FA0B4;
  --text:        #1A2332;
  --text-muted:  #5A6D82;
  --green:       #2D9B51;
  --green-light: #E8F7EE;
  --red:         #E53E3E;
  --red-light:   #FFF5F5;
  --orange:      #DD6B20;
  --orange-light:#FFFAF0;
  --yellow:      #D69E2E;
  --yellow-light:#FFFFF0;
  --whatsapp:    #25D366;

  --shadow-sm:   0 1px 3px rgba(11,37,69,.08), 0 1px 2px rgba(11,37,69,.06);
  --shadow:      0 4px 16px rgba(11,37,69,.10), 0 2px 6px rgba(11,37,69,.06);
  --shadow-lg:   0 12px 40px rgba(11,37,69,.14), 0 4px 12px rgba(11,37,69,.08);
  --shadow-xl:   0 24px 64px rgba(11,37,69,.18);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(30,182,200,.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(30,182,200,.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ─── Section Headers ─────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.section-tag--light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ─── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 9999;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.06) translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

/* ─── Sticky Phone Bar (mobile) ───────────────────────────── */
.sticky-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy);
  padding: 0.85rem 1.5rem;
  gap: 1rem;
}
.sticky-phone-link, .sticky-whatsapp-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.sticky-phone-link {
  background: var(--teal);
  color: var(--white);
}
.sticky-whatsapp-link {
  background: var(--whatsapp);
  color: var(--white);
}

/* ─── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,37,69,0);
  transition: var(--transition-slow);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(11,37,69,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(11,37,69,.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

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

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11,37,69,.92) 0%, rgba(11,37,69,.82) 50%, rgba(23,147,159,.78) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30,182,200,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,182,200,.08) 0%, transparent 50%);
}

.hero-water-wave {
  position: absolute;
  bottom: -2px;
  left: -5%;
  right: -5%;
  height: 180px;
  background: var(--white);
  clip-path: ellipse(55% 60% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.4);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.hero-accent {
  color: #F5B800;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust span {
  color: rgba(255,255,255,.92);
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px;
  height: 32px;
  background: rgba(255,255,255,.4);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--teal);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ─── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--teal-light);
  border-top: 1px solid rgba(30,182,200,.2);
  border-bottom: 1px solid rgba(30,182,200,.2);
  padding: 2.5rem 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.trust-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: inline;
}

.trust-icon {
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.trust-label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(30,182,200,.3);
}

/* ─── Problem Section ─────────────────────────────────────── */
.problem-section {
  background:
    linear-gradient(rgba(247,249,251,.96), rgba(247,249,251,.96)),
    url('../images/unsplash-limescale.jpg') center center / cover no-repeat;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.problem-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-icon--red    { background: var(--red-light);    color: var(--red); }
.problem-icon--orange { background: var(--orange-light); color: var(--orange); }
.problem-icon--yellow { background: var(--yellow-light); color: var(--yellow); }
.problem-icon--teal   { background: var(--teal-light);   color: var(--teal-dark); }

.problem-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.problem-card p  { color: var(--text-muted); font-size: 0.95rem; }

.problem-cta { text-align: center; }

/* ─── Solution Section ────────────────────────────────────── */
.solution-section {
  background: var(--white);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.solution-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.solution-img-placeholder {
  display: none;
  width: 100%;
  height: 500px;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
}

.solution-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.cert-pill {
  background: rgba(11,37,69,.85);
  backdrop-filter: blur(8px);
  color: var(--teal);
  border: 1px solid rgba(30,182,200,.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.solution-content .section-tag { margin-bottom: 1rem; }
.solution-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.solution-features li div {
  display: flex;
  flex-direction: column;
}
.solution-features li strong {
  color: var(--navy);
  font-size: 0.95rem;
}
.solution-features li span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ─── How It Works ────────────────────────────────────────── */
.how-section {
  background: var(--off-white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  background: var(--navy);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-card h3 { margin-bottom: 0.75rem; }
.step-card p  { color: var(--text-muted); font-size: 0.95rem; }

.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: var(--gray);
  margin-top: 80px;
  position: relative;
}
.step-connector::after {
  content: '←';
  position: absolute;
  left: -8px;
  top: -12px;
  color: var(--teal);
  font-size: 1.2rem;
}

/* ─── Services Section ────────────────────────────────────── */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-card--featured {
  background: var(--navy);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-list li {
  color: var(--white);
}
.service-card--featured p { color: rgba(255,255,255,.8); }
.service-card--featured .service-icon { background: rgba(255,255,255,.1); color: var(--teal); }
.service-card--featured:hover { background: var(--navy); border-color: var(--teal); transform: translateY(-6px); }

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge {
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-card--featured .service-list li { color: rgba(255,255,255,.75); }

/* ─── Persona Section ─────────────────────────────────────── */
.persona-section {
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--teal-light) 100%);
  border-top: 1px solid rgba(30,182,200,.15);
  border-bottom: 1px solid rgba(30,182,200,.15);
}
.persona-section .section-header { color: var(--navy); }
.persona-section h2, .persona-section .section-lead { color: var(--navy); }
.persona-section .section-lead { color: var(--text-muted); }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.persona-card {
  background: var(--white);
  border: 2px solid rgba(30,182,200,.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.persona-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}

.persona-card--highlighted {
  background: var(--navy);
  border-color: var(--teal);
  box-shadow: var(--shadow-xl);
}
.persona-card--highlighted:hover {
  background: var(--navy);
}
.persona-card--highlighted h3  { color: var(--white) !important; }
.persona-card--highlighted .persona-desc { color: rgba(255,255,255,.8) !important; }
.persona-card--highlighted .persona-benefits span {
  background: rgba(255,255,255,.12) !important;
  color: var(--white) !important;
}

.persona-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.persona-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.persona-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.persona-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.persona-benefits span {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.persona-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.persona-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Why Mi-Ad ───────────────────────────────────────────── */
.why-section {
  background: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-content h2, .why-lead { color: var(--navy); }
.why-lead { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-point-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-point div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.why-point strong { color: var(--navy); font-size: 1rem; }
.why-point span   { color: var(--text-muted); font-size: 0.9rem; }

.cert-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cert-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.cert-card:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.cert-card--green {
  border-color: rgba(45,155,81,.25);
  background: var(--green-light);
}

.cert-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.05em;
}

.cert-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cert-info strong { color: var(--navy); font-size: 0.9rem; }
.cert-info span   { color: var(--text-muted); font-size: 0.78rem; }

.why-stat-box {
  grid-column: span 2;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  justify-content: space-around;
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.why-stat strong { color: var(--teal); font-size: 2rem; font-weight: 900; }
.why-stat span   { color: rgba(255,255,255,.8); font-size: 0.85rem; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #F6C90E;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-author span   { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Service Area ────────────────────────────────────────── */
.area-section {
  background: var(--white);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.area-content h2 { margin-bottom: 1rem; }
.area-content > p { color: var(--text-muted); margin-bottom: 2rem; }

.area-cities {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.area-region h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.city-tags span {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 400;
}

.area-note { color: var(--text-muted); font-size: 0.9rem; }
.area-note a { color: var(--teal); font-weight: 600; }

.area-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.area-map iframe { display: block; }

/* ─── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--teal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question[aria-expanded="true"] { color: var(--teal); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── Contact Section ─────────────────────────────────────── */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  text-decoration: none;
}
.contact-direct-item:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  transform: translateX(-4px);
}

.contact-direct-item--whatsapp {
  background: rgba(37,211,102,.06);
  border-color: rgba(37,211,102,.3);
}
.contact-direct-item--whatsapp:hover {
  background: rgba(37,211,102,.12);
  border-color: var(--whatsapp);
}
.contact-direct-item--whatsapp .contact-direct-icon { color: var(--whatsapp); background: rgba(37,211,102,.1); }

.contact-direct-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-direct-label { font-size: 0.8rem; color: var(--text-muted); display: block; }
.contact-direct-item strong { color: var(--navy); font-size: 0.95rem; display: block; }

/* ─── Contact Form ────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  direction: rtl;
  text-align: right;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,182,200,.35);
}

/* WCAG 2.1 AA — visible focus for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-light);
  color: var(--green);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-error {
  background: var(--red-light);
  color: var(--red);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 4rem 0;
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-text h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.25rem; }
.cta-strip-text p  { color: rgba(255,255,255,.85); margin: 0; }

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo .logo-main { font-size: 1.75rem; font-weight: 800; color: var(--white); }
.footer-logo .logo-sub  { font-size: 0.65rem; color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase; }

.footer-tagline { color: rgba(255,255,255,.6); font-size: 0.9rem; line-height: 1.6; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
}
.contact-list li svg { flex-shrink: 0; color: var(--teal); }
.contact-list li a { color: rgba(255,255,255,.6); }
.contact-list li a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 0.8rem; margin: 0; }

.footer-cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-badge {
  background: rgba(30,182,200,.15);
  border: 1px solid rgba(30,182,200,.3);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .solution-layout,
  .why-layout,
  .area-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }
  .step-connector::after {
    content: '↓';
    top: auto;
    bottom: -12px;
    left: -7px;
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: var(--navy-dark);
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .hamburger { display: flex; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.85rem; }

  .sticky-phone-bar { display: flex; }

  .hero-content { padding-top: 8rem; padding-bottom: 8rem; }

  .trust-grid { flex-direction: column; }
  .trust-divider { width: 80px; height: 1px; }

  .problem-grid { grid-template-columns: 1fr; }

  .services-grid,
  .persona-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-strip-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .contact-form-wrap { padding: 1.5rem; }
}

/* ─── Utilities ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ─── Calendly placeholder button ────────────────────────── */
.btn-calendly-placeholder {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  font-family: var(--font);
  direction: rtl;
}
.btn-calendly-placeholder:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ─── Why Mi-Ad — brand image ─────────────────────────────── */
.why-brand-img-wrap {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-brand-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ─── Gallery section ─────────────────────────────────────── */
.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--navy);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(transparent, rgba(11,37,69,.85));
  color: var(--white);
  font-size: 0.82rem;
  padding: 2rem 1rem 0.75rem;
  text-align: right;
  direction: rtl;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.gallery-cta a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img { height: 240px; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img { height: 220px; }
  .gallery-caption { opacity: 1; }
}

/* ─── Page (non-home) ─────────────────────────────────────── */
.page-main {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 60vh;
}

/* ─── ROI Calculator ──────────────────────────────────────── */
.calc-section {
  background: var(--off-white);
}

.calc-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.calc-input-group {
  margin-bottom: 2.5rem;
}

.calc-input-group label {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(30,182,200,.3);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  direction: ltr;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 5px rgba(30,182,200,.2);
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(30,182,200,.25);
}

.calc-number {
  width: 72px;
  padding: 0.5rem 0.6rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(30,182,200,.3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  direction: ltr;
}
.calc-number:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,182,200,.2);
}

.calc-unit {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
}

.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  color: rgba(255,255,255,.3);
  font-size: 0.78rem;
  padding: 0 2px;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.calc-result {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.calc-result--highlight {
  background: rgba(30,182,200,.12);
  border-color: rgba(30,182,200,.4);
}

.calc-result--savings {
  background: rgba(45,155,81,.12);
  border-color: rgba(45,155,81,.35);
}

.calc-result-label {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.calc-result-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  transition: all 0.3s ease;
}
.calc-result-value--muted {
  color: rgba(255,255,255,.45);
  font-size: 1.4rem;
}
.calc-result-value--green {
  color: #5CC97A;
  font-size: 1.5rem;
}

.calc-cta {
  text-align: center;
  padding-top: 0.5rem;
}

.calc-disclaimer {
  color: rgba(255,255,255,.35);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .calc-results { grid-template-columns: 1fr; }
  .calc-card    { padding: 2rem 1.25rem; }
}

/* ─── Button size variant ─────────────────────────────────── */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ─── Hero Price Anchor ───────────────────────────────────── */
.hero-price-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(245,184,0,.5);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  backdrop-filter: blur(4px);
}
.price-anchor-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #F5B800;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.price-anchor-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.price-anchor-compare {
  color: rgba(255,255,255,.9);
  font-size: 0.8rem;
  border-right: 1px solid rgba(255,255,255,.4);
  padding-right: 0.75rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* ─── Comparison Table ────────────────────────────────────── */
.comparison-section {
  background: var(--off-white);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.comparison-table thead tr {
  background: var(--navy);
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-align: right;
  font-size: 0.9rem;
  vertical-align: middle;
}

.comparison-table th.col-miad {
  background: var(--teal-dark);
  color: var(--white);
}

.comparison-table th.col-other {
  color: rgba(255,255,255,.7);
}

.comparison-best-badge {
  display: inline-block;
  background: #F0A500;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.3rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.comparison-table tbody tr:hover {
  background: var(--teal-pale);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  vertical-align: middle;
}

.comparison-table td:first-child {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td.win {
  color: var(--teal-dark);
  font-weight: 400;
}

.comparison-table td.win strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.comparison-cta {
  text-align: center;
}

/* ─── Contractor Points Stripe ────────────────────────────── */
.contractor-stripe {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid rgba(30,182,200,.3);
  padding: 1.1rem 0;
}

.contractor-stripe-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.contractor-stripe-icon {
  width: 44px;
  height: 44px;
  background: rgba(30,182,200,.15);
  color: var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contractor-stripe-text {
  flex: 1;
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contractor-stripe-text strong {
  color: var(--teal);
  font-weight: 700;
}

.contractor-stripe-cta {
  flex-shrink: 0;
  padding: 0.55rem 1.25rem !important;
  font-size: 0.875rem !important;
}

/* ─── Persona Icon (replaces emoji) ──────────────────────── */
.persona-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.persona-card--highlighted .persona-icon {
  background: rgba(30,182,200,.15);
  color: var(--teal);
}

/* ─── City tags as links ──────────────────────────────────── */
.city-tags a {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.city-tags a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Desktop Sticky CTA Bar ─────────────────────────────── */
.desktop-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--navy-dark);
  border-top: 1px solid rgba(30,182,200,.25);
  padding: 0.7rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.desktop-sticky-cta.visible {
  transform: translateY(0);
}

.desktop-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.desktop-sticky-label {
  color: rgba(255,255,255,.65);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
}

.desktop-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.desktop-sticky-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
  text-decoration: none;
}
.desktop-sticky-link:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(30,182,200,.08);
}
.desktop-sticky-wa:hover {
  color: var(--whatsapp);
  border-color: var(--whatsapp);
  background: rgba(37,211,102,.08);
}

@media (min-width: 769px) {
  .desktop-sticky-cta { display: block; }
}

/* ─── WhatsApp float: clear sticky bars on all breakpoints ── */
@media (min-width: 769px) {
  .whatsapp-float {
    bottom: 5rem; /* sits above the desktop sticky CTA bar (~56px) */
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: calc(70px + 1rem); /* sits above the mobile sticky phone bar */
  }
}
