/* ============================================================
   Edgelink – Global Stylesheet
   Brand: Blue (#0057B8 primary, #003A7A dark, #4DA6FF light) + White
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  padding-top: 72px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --blue:      #0057B8;
  --blue-dark: #003A7A;
  --blue-mid:  #0066CC;
  --blue-light:#4DA6FF;
  --blue-pale: #E8F2FF;
  --white:     #FFFFFF;
  --grey-100:  #F5F7FA;
  --grey-200:  #E9ECF2;
  --grey-500:  #6B7280;
  --grey-800:  #1F2937;
  --shadow:    0 4px 24px rgba(0,87,184,.12);
  --radius:    12px;
  --transition:all .3s ease;
}

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem,3.5vw,2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--grey-500); line-height: 1.75; }
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-title { color: var(--grey-800); margin-bottom: 1rem; }
.section-desc  { max-width: 640px; font-size: 1.05rem; }
.text-center   { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: var(--transition);
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,87,184,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,87,184,.45); }
.btn-outline {
  border: 2px solid var(--blue); color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7); color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── Navigation ───────────────────────────────────────────── */
.main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,87,184,.1);
  transition: var(--transition);
}
.main-nav.scrolled { box-shadow: 0 4px 30px rgba(0,87,184,.2); }
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.logo-img {
  height: 52px; width: auto; object-fit: contain;
  background: transparent;
}
.logo-fallback {
  display: flex; align-items: center; gap: .5rem;
}
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.logo-text-block { display: flex; flex-direction: column; }
.logo-name { font-weight: 900; font-size: 1.2rem; color: var(--blue); letter-spacing: .05em; line-height: 1; }
.logo-sub  { font-size: .55rem; color: var(--grey-500); letter-spacing: .1em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--grey-800);
  transition: color .2s;
}
.nav-links a:hover, .nav-links li.active > a { color: var(--blue); }
.btn-nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: .5rem 1.4rem; border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(0,87,184,.35);
}
.btn-nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.has-dropdown > a i { font-size: .65rem; transition: transform .2s; }
.has-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
  overflow: hidden;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: .7rem 1.25rem;
  font-size: .88rem; color: var(--grey-800) !important;
  border-bottom: 1px solid var(--grey-200);
  transition: background .2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--blue-pale); color: var(--blue) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: .4rem; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--grey-800); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero Base ────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,58,122,.92) 0%, rgba(0,87,184,.75) 60%, rgba(0,87,184,.5) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .8rem; font-weight: 600;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p  { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,87,184,.18); }
.card-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; height: 200px;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Grids ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Service Cards (Landing page) ─────────────────────────── */
.service-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); transition: var(--transition);
  min-height: 300px; display: flex; align-items: flex-end;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 50px rgba(0,87,184,.25); }
.service-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,58,122,.92) 0%, rgba(0,58,122,.4) 50%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(0,58,122,.96) 0%, rgba(0,58,122,.6) 60%, rgba(0,58,122,.2) 100%); }
.service-card-content {
  position: relative; z-index: 2;
  padding: 1.75rem; color: #fff;
}
.service-card-tag {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: .5rem;
}
.service-card-content h3 { color: #fff; margin-bottom: .5rem; }
.service-card-content p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 1rem; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--blue-light);
}

/* ── Stats ────────────────────────────────────────────────── */
.stats-band {
  background: var(--blue);
  padding: 3rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem; font-weight: 900; color: var(--white);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: .25rem; }

/* ── Steps / Process ──────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  counter-reset: steps;
}
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  position: absolute; top: -10px; right: -10px;
  font-size: 6rem; font-weight: 900;
  color: var(--blue-pale); line-height: 1;
  pointer-events: none;
}
.step-img {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 8px; margin-bottom: 1.25rem;
}
.step-card h3 { color: var(--grey-800); margin-bottom: .5rem; }

/* ── Coverage section ─────────────────────────────────────── */
.coverage-section { background: var(--grey-100); }
.coverage-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.coverage-map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); height: 400px;
}
.coverage-map iframe { width: 100%; height: 100%; border: none; }

/* ── Packages ─────────────────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.pkg-card {
  border: 2px solid var(--grey-200); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
  background: var(--white);
}
.pkg-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-pale), var(--shadow);
}
.pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 12px; right: -24px;
  background: var(--blue); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .25rem 2rem;
  transform: rotate(45deg);
}
.pkg-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-speed {
  font-size: 2.5rem; font-weight: 900; color: var(--blue); line-height: 1;
}
.pkg-unit { font-size: 1rem; font-weight: 600; color: var(--grey-500); }
.pkg-name { font-size: .95rem; color: var(--grey-500); margin: .5rem 0; }
.pkg-price { font-size: 1.5rem; font-weight: 800; color: var(--grey-800); margin: .75rem 0; }
.pkg-price span { font-size: .85rem; font-weight: 400; color: var(--grey-500); }
.pkg-features { list-style: none; margin: 1rem 0 1.5rem; text-align: left; }
.pkg-features li {
  padding: .35rem 0; font-size: .88rem; color: var(--grey-500);
  border-bottom: 1px solid var(--grey-100);
  display: flex; align-items: center; gap: .5rem;
}
.pkg-features li i { color: var(--blue); font-size: .8rem; }

/* ── Forms ────────────────────────────────────────────────── */
.form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.5rem;
  max-width: 640px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--grey-800); }
.form-group input, .form-group select, .form-group textarea {
  padding: .7rem 1rem; border: 1.5px solid var(--grey-200);
  border-radius: 8px; font-size: .95rem; font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-pale);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Feature list with images ─────────────────────────────── */
.feature-img-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-img-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.feature-img-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,87,184,.2); }
.feature-img-card img { width: 100%; height: 220px; object-fit: cover; }
.feature-img-body { padding: 1.5rem; }
.feature-img-body h3 { color: var(--grey-800); margin-bottom: .5rem; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--blue-pale); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: .95rem; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; color: var(--grey-800); font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--grey-500); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.25rem 0; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--grey-800);
  cursor: pointer;
}
.faq-question i { color: var(--blue); transition: transform .3s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--grey-500); line-height: 1.75; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--grey-800); color: rgba(255,255,255,.8); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding: 4rem 1.5rem 3rem; max-width: 1200px; margin: 0 auto;
}
.footer-logo-img {
  height: 52px; width: auto; object-fit: contain;
  margin-bottom: 1rem;
  background: rgba(255,255,255,.9);
  border-radius: 10px;
  padding: 4px 10px;
}
.footer-logo-fallback .footer-logo-name {
  font-size: 1.5rem; font-weight: 900; color: #fff;
  letter-spacing: .08em; margin-bottom: 1rem; display: block;
}
.footer-tagline { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: .5rem; }
.footer-license { color: rgba(255,255,255,.4); font-size: .75rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 { color: #fff; margin-bottom: 1.25rem; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .6rem;
  color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: .75rem;
}
.footer-contact li i { color: var(--blue-light); margin-top: .2rem; min-width: 14px; }
.footer-contact li a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  font-size: .82rem; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: .5rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-legal a:hover { color: var(--blue-light); }

/* ── Chat / FAB ───────────────────────────────────────────── */
.chat-fab-group {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  z-index: 900;
}
.fab-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: var(--transition);
}
.fab-btn:hover { transform: scale(1.1); }
.fab-whatsapp { background: #25D366; }
.fab-chat     { background: var(--blue); }
.chat-window {
  position: fixed; bottom: 8rem; right: 1.75rem; z-index: 901;
  width: 340px; background: var(--white); border-radius: var(--radius);
  box-shadow: 0 8px 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  max-height: 520px; opacity: 0; visibility: hidden;
  transform: translateY(20px) scale(.97);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.chat-window.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header {
  background: var(--blue); color: #fff; border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.chat-logo { height: 32px; width: auto; object-fit: contain; background: rgba(255,255,255,.9); border-radius: 6px; padding: 2px 6px; }
.chat-header > div { flex: 1; }
.chat-header strong { display: block; font-size: .95rem; }
.chat-status { display: flex; align-items: center; gap: .35rem; font-size: .75rem; opacity: .85; }
.chat-status .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.5;} }
.chat-header button { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg p {
  padding: .6rem .9rem; border-radius: 12px; font-size: .88rem;
  color: var(--grey-800); line-height: 1.5;
}
.chat-msg.bot  p { background: var(--grey-100); }
.chat-msg.user p { background: var(--blue); color: #fff; }
.chat-quick-btns {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem;
}
.chat-quick-btns button {
  font-size: .75rem; padding: .3rem .7rem;
  border: 1.5px solid var(--blue-pale); border-radius: 50px;
  color: var(--blue); background: var(--blue-pale);
  transition: var(--transition);
}
.chat-quick-btns button:hover { background: var(--blue); color: #fff; }
.chat-input-row {
  padding: .75rem; border-top: 1px solid var(--grey-200);
  display: flex; gap: .5rem;
}
.chat-input-row input {
  flex: 1; padding: .55rem .9rem;
  border: 1.5px solid var(--grey-200); border-radius: 50px;
  font-size: .88rem; font-family: inherit;
}
.chat-input-row input:focus { outline: none; border-color: var(--blue); }
.chat-input-row button {
  background: var(--blue); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  min-height: 55vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,58,122,.9) 0%, rgba(0,87,184,.7) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: #fff; max-width: 680px; }
.page-hero-content h1 { color: #fff; margin-bottom: 1rem; }
.page-hero-content p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.75rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .6rem; }

/* ── Alternating content rows ─────────────────────────────── */
.content-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); height: 400px;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 5rem 0; text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Tabs ─────────────────────────────────────────────────── */
.tab-bar {
  display: flex; gap: .5rem; flex-wrap: wrap;
  border-bottom: 2px solid var(--grey-200); margin-bottom: 2.5rem;
}
.tab-btn {
  padding: .75rem 1.5rem; font-size: .9rem; font-weight: 600;
  color: var(--grey-500); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color .2s, border-color .2s;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Highlight boxes ──────────────────────────────────────── */
.highlight-box {
  background: var(--blue-pale); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}

/* ── Utility ──────────────────────────────────────────────── */
.bg-grey  { background: var(--grey-100); }
.bg-blue  { background: var(--blue); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem; flex-shrink: 0;
}
.icon-circle.blue-fill { background: var(--blue); color: #fff; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .4rem 0; font-size: .95rem; color: var(--grey-500);
}
.check-list li i { color: var(--blue); margin-top: .2rem; }

/* ── Scroll animation ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px); transition: all .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .packages-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,2fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { 
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; width: 100%;
    background: #fff; padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--grey-200); }
  .nav-links li a { padding: .85rem 0; display: block; }
  .nav-toggle { display: flex; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border-top: 1px solid var(--grey-200); }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:not(.open) .dropdown { display: none; }
  .grid-2, .content-row, .coverage-wrap { grid-template-columns: 1fr; }
  .grid-3, .feature-img-grid, .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .content-row.reverse { direction: ltr; }
}
@media (max-width: 600px) {
  body { padding-top: 64px; }
  .packages-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 100svh; }
  .chat-window { width: calc(100vw - 2rem); right: 1rem; }
}
