:root {
  --bg: #f6f9f3;
  --surface: #ffffff;
  --surface-soft: #f6fbf5;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #177a45;
  --primary-dark: #0d5b33;
  --navy: #0a3325;
  --navy-soft: #124b36;
  --border: #d6e5d8;
  --success: #0ea85b;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 8px 24px rgba(10, 51, 37, 0.08);
  --shadow-md: 0 16px 40px rgba(10, 51, 37, 0.13);
  --gradient: linear-gradient(135deg, #0a3325 0%, #177a45 55%, #c7a12f 100%);
  --gold: #c7a12f;
  --gold-light: #e7d298;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% -5%, rgba(23, 122, 69, 0.11), transparent 40%), var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

body .container {
  width: min(calc(100% - clamp(2.4rem, 7vw, 5rem)), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-title {
  margin: 0 0 0.8rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.5rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 720px;
}

.section-head {
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.6rem;
  border-radius: 6px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  background: rgba(10, 51, 37, 0.96);
  border-bottom: 1px solid rgba(199, 161, 47, 0.35);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--gold-light);
}

.brand-mark {
  width: 176px;
  height: 54px;
  border-radius: 0;
  background: url("../images/weblogo.png") center / contain no-repeat;
  position: relative;
  box-shadow: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.brand small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  font-weight: 600;
}

.site-header .brand > span:not(.brand-mark) {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
}

.main-nav {
  margin-inline: auto;
}

.main-nav > ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.main-nav > ul > li {
  display: flex;
  align-items: center;
}

.main-nav > ul > li > a,
.mega-btn {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  line-height: 1;
}

.main-nav > ul > li > a:hover,
.mega-btn:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Fallback: keep mobile hamburger icon consistent across pages */
#mobileMenuBtn > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
}

.site-header .btn-outline {
  border-color: rgba(199, 161, 47, 0.7);
  color: var(--gold-light);
  background: transparent;
}

.site-header .btn-primary {
  color: var(--navy);
  background: var(--gold);
}

.site-header .btn-primary:hover {
  background: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  padding: 0.8rem 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: #9ec8aa;
  color: var(--primary-dark);
  background: #fff;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  background: transparent;
}

.btn-sm {
  padding: 0.58rem 0.95rem;
  font-size: 0.84rem;
}

.mega {
  position: relative;
  padding-bottom: 0;
}

.mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.mega-btn {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  line-height: 1.2;
  font: inherit;
  vertical-align: middle;
  appearance: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 860px);
  background: #0a3325;
  border: 1px solid rgba(199, 161, 47, 0.3);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mega:hover .mega-menu,
.mega:focus-within .mega-menu,
.mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.mega-item {
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(199, 161, 47, 0.3);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mega-item:hover {
  background: #fff7e2;
  border-color: #c7a12f;
}

.mega-item h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  color: #e7d298;
}

.mega-item p {
  margin: 0;
  font-size: 0.84rem;
  color: #d6e6dc;
}

.mega-item:hover h4,
.mega-item:hover p {
  color: #0a3325;
}

.hero {
  padding: 5.2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2rem, 1.3rem + 2vw, 3.4rem);
  line-height: 1.12;
  font-family: "Poppins", sans-serif;
  color: var(--navy);
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 620px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-bar {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-chip {
  padding: 0.45rem 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #1a5a39;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-visual {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: linear-gradient(145deg, #0a3325 5%, #177a45 60%, #c7a12f 100%);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-visual::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.16);
  top: -60px;
  right: -40px;
  animation: float 8s ease-in-out infinite;
}

.hero-visual::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.09);
  bottom: -40px;
  left: -20px;
  animation: float 9s ease-in-out infinite reverse;
}

.pulse-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000, transparent 80%);
}

.hero-card {
  position: absolute;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  color: #fff;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  max-width: 220px;
}

.hero-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.hero-card.one {
  top: 20%;
  left: 7%;
}

.hero-card.two {
  bottom: 12%;
  right: 7%;
}

.logo-strip {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.logo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.logo-item {
  min-width: 150px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid #dbe9dd;
  background: #f9fbff;
  color: #8cae95;
  font-weight: 700;
}

.logo-item img {
  width: 118px;
  height: 40px;
  object-fit: contain;
  opacity: 0.76;
}

.grid-4,
.grid-3,
.grid-2,
.grid-6 {
  display: grid;
  gap: 1rem;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: var(--gradient);
  margin-bottom: 0.8rem;
}

.card h3,
.card h4 {
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.project-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0a3325, #177a45);
  position: relative;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.project-thumb::after {
  content: "Live Project Snapshot";
  position: absolute;
  bottom: 0.6rem;
  left: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.case-body {
  padding: 1rem;
}

.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f5c35;
  background: #eaf4ec;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
}

.metric {
  margin: 0.65rem 0;
  color: #0a3325;
  font-weight: 800;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  position: relative;
}

.step span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  margin: 0 auto 0.55rem;
  color: #fff;
  background: var(--gradient);
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial {
  min-width: 100%;
}

.testimonial .card {
  display: grid;
  gap: 0.8rem;
}

.client {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cde5d4, #d3b14d);
}

.stars {
  color: #ffaf13;
  font-size: 0.95rem;
}

.cta-gradient {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b6d2bb;
  border-radius: 10px;
  padding: 0.78rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.insight-card .project-thumb {
  aspect-ratio: 4 / 2.3;
}

.insight-card .project-thumb::after {
  content: "Insight Article";
}

.footer {
  background: linear-gradient(145deg, #0a3325 0%, #124b36 70%, #1a5a39 100%);
  color: #e5f0e3;
  padding: 3.4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.4rem;
}

.footer h4 {
  margin: 0 0 0.8rem;
  font-family: "Poppins", sans-serif;
  color: #d9c176;
}

.footer p,
.footer a {
  color: #d4e7d2;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(184, 214, 192, 0.32);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-mini span {
  border: 1px solid rgba(184, 214, 192, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #128c7e);
  color: #fff;
  padding: 0.68rem 0.9rem;
  box-shadow: 0 14px 28px rgba(10, 51, 37, 0.28);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 51, 37, 0.34);
}

.wa-float-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  position: relative;
}

.wa-float-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: waPulse 1.8s ease-in-out infinite;
}

.wa-float svg {
  width: 17px;
  height: 17px;
  display: block;
}

.wa-chat-bubble {
  position: fixed;
  right: 1.2rem;
  bottom: 5.7rem;
  z-index: 139;
  max-width: 260px;
  border: 1px solid #c9ead2;
  background: #ffffff;
  color: #0a3325;
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 14px 30px rgba(10, 51, 37, 0.16);
  font-size: 0.76rem;
  line-height: 1.35;
}

.wa-chat-bubble::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #c9ead2;
  border-bottom: 1px solid #c9ead2;
  transform: rotate(45deg);
}

.wa-chat-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.wa-chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 6px 14px rgba(10, 51, 37, 0.2);
}

.wa-chat-avatar svg {
  width: 15px;
  height: 15px;
}

.wa-chat-status {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: waStatusPulse 1.8s ease-in-out infinite;
}

.wa-chat-title {
  margin: 0 0 0.05rem;
  font-weight: 800;
  color: #177a45;
}

.wa-chat-sub {
  margin: 0;
  font-size: 0.66rem;
  color: #4b5563;
  font-weight: 600;
}

.wa-typing {
  display: none;
  align-items: center;
  gap: 4px;
  height: 10px;
  margin-top: 0.18rem;
  color: #16a34a;
}

.wa-chat-bubble.is-typing .wa-typing {
  display: inline-flex;
}

.wa-typing span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.25;
  animation: waTyping 900ms ease-in-out infinite;
}

.wa-typing span:nth-child(1) { animation-delay: -0.2s; }
.wa-typing span:nth-child(2) { animation-delay: -0.4s; }
.wa-typing span:nth-child(3) { animation-delay: -0.6s; }

.wa-chat-link {
  display: inline-block;
  margin-top: 0.45rem;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #128c7e);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.28);
}

.wa-chat-close {
  position: absolute;
  top: 4px;
  right: 6px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem;
}

.wa-float-text {
  white-space: nowrap;
}

@keyframes waStatusPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes waTyping {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.mobile-quote {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 17, 45, 0.96);
  padding: 0.65rem;
  display: none;
  z-index: 129;
}

.mobile-quote .btn {
  width: 100%;
}

.voice-agent {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 141;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.voice-agent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.voice-agent-card {
  width: min(90vw, 290px);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(199, 161, 47, 0.14), transparent 55%),
    radial-gradient(140% 120% at 100% 0%, rgba(23, 122, 69, 0.18), transparent 60%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.22);
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
}

.voice-agent-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 25% 25%, rgba(199, 161, 47, 0.28), transparent 55%),
    radial-gradient(circle at 75% 15%, rgba(23, 122, 69, 0.26), transparent 60%),
    linear-gradient(120deg, transparent 20%, rgba(23, 122, 69, 0.08) 45%, transparent 70%);
  opacity: 0.55;
  transform: translate3d(-10%, -10%, 0);
  pointer-events: none;
}

.voice-agent.is-speaking .voice-agent-card::before {
  opacity: 0.95;
  animation: mdsMiraSheen 2.6s ease-in-out infinite;
}

.voice-agent-head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
  padding-right: 44px; /* space for the absolute close button */
}

.voice-agent-arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(199, 161, 47, 0.22) 38%, rgba(23, 122, 69, 0.22) 72%, rgba(10, 51, 37, 0.18) 100%);
  border: 1px solid rgba(23, 122, 69, 0.25);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.18);
  position: relative;
}

.voice-agent-arrow::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 47, 0.25);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.voice-agent.is-speaking .voice-agent-arrow {
  animation: mdsMiraPulse 1.1s ease-in-out infinite;
}

.voice-agent.is-speaking .voice-agent-arrow::after {
  opacity: 1;
  transform: scale(1);
}

.voice-agent-meta {
  display: grid;
  gap: 0.08rem;
}

.voice-agent-title-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.voice-agent-title-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 12px rgba(2, 6, 23, 0.16));
}

.voice-agent-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0d5b33;
}

.voice-agent-sub {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 800;
  color: rgba(100, 116, 139, 0.95);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice-agent-eq {
  margin-left: auto;
  height: 18px;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  padding-top: 4px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.voice-agent-eq span {
  width: 3px;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(180deg, #c7a12f, #177a45);
  transform-origin: bottom;
  opacity: 0.35;
}

.voice-agent.is-speaking .voice-agent-eq {
  opacity: 0.95;
}

.voice-agent.is-speaking .voice-agent-eq span {
  opacity: 0.95;
  animation: mdsMiraEq 900ms ease-in-out infinite;
}

.voice-agent.is-paused .voice-agent-eq span {
  animation-play-state: paused;
  opacity: 0.35;
}

.voice-agent-eq span:nth-child(1) { animation-delay: -0.20s; }
.voice-agent-eq span:nth-child(2) { animation-delay: -0.55s; }
.voice-agent-eq span:nth-child(3) { animation-delay: -0.32s; }
.voice-agent-eq span:nth-child(4) { animation-delay: -0.68s; }
.voice-agent-eq span:nth-child(5) { animation-delay: -0.41s; }

.voice-agent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.voice-agent-close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.voice-agent-close:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 8px 14px rgba(2, 6, 23, 0.1);
}

.voice-agent-text {
  margin: 0.35rem 0 0.6rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.8rem;
  color: #0f172a;
  background: rgba(2, 6, 23, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  font-weight: 650;
  position: relative;
  z-index: 1;
}

.voice-agent.is-speaking .voice-agent-text {
  background: rgba(23, 122, 69, 0.10);
  border-color: rgba(23, 122, 69, 0.24);
}

.voice-agent-selects {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
}

.voice-agent-select {
  width: 100%;
  border: 1px solid #bbdcc1;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.45rem;
}

.voice-agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.voice-agent-btn {
  border: 1px solid #bbdcc1;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.36rem 0.58rem;
  cursor: pointer;
}

.voice-agent-read {
  color: #0b3a26;
  border-color: #9bc7a7;
  background: #eef8f1;
}

.voice-agent-read.is-on {
  color: #fff;
  border-color: #177a45;
  background: #177a45;
}

.voice-agent-pause {
  color: #0f172a;
}

.voice-agent-speed {
  color: #0f172a;
}

.voice-agent-stop {
  border-color: #ef4444;
  color: #b91c1c;
}

.voice-agent.is-paused .voice-agent-pause {
  border-color: #1e40af;
  color: #fff;
  background: #1d4ed8;
}

@keyframes mdsMiraEq {
  0% { transform: scaleY(0.55); }
  30% { transform: scaleY(1.45); }
  60% { transform: scaleY(0.75); }
  100% { transform: scaleY(0.55); }
}

@keyframes mdsMiraPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes mdsMiraSheen {
  0% { transform: translate3d(-14%, -12%, 0) rotate(-2deg); }
  50% { transform: translate3d(12%, 10%, 0) rotate(2deg); }
  100% { transform: translate3d(-14%, -12%, 0) rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .voice-agent-card::before,
  .voice-agent.is-speaking .voice-agent-card::before,
  .voice-agent.is-speaking .voice-agent-arrow,
  .voice-agent.is-speaking .voice-agent-eq span {
    animation: none !important;
  }
}

.voice-section-active {
  outline: 2px solid rgba(23, 122, 69, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
  transition: outline-color 0.2s ease;
}

.voice-read-here {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(199, 161, 47, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #c7a12f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.voice-read-here::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.5rem;
  background: rgba(10, 51, 37, 0.95);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.voice-read-here::after {
  content: '';
  position: absolute;
  bottom: calc(100% - 0.25rem);
  right: 0.75rem;
  width: 6px;
  height: 6px;
  background: rgba(10, 51, 37, 0.95);
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99999;
}

.voice-read-here.show-tooltip::before,
.voice-read-here.show-tooltip::after {
  opacity: 1;
}

.voice-read-label {
  position: absolute;
  right: 5.6rem; /* sits left of the read button */
  top: 0.75rem;
  z-index: 2;
  background: rgba(199,161,47,0.96);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(10,51,37,0.12);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 620px) {
  .voice-read-label { display: none; }
}

.voice-read-here svg {
  width: 20px;
  height: 20px;
  fill: #c7a12f;
  stroke: none;
}

.voice-read-here img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(10, 51, 37, 0.22));
}

.voice-read-here:hover {
  background: rgba(199, 161, 47, 0.08);
  border-color: rgba(199, 161, 47, 0.7);
  box-shadow: 0 4px 12px rgba(10, 51, 37, 0.12);
}

.voice-read-here:hover::before {
  opacity: 1;
}

.voice-read-here:hover::after {
  opacity: 1;
}

.voice-read-here:hover svg {
  fill: #177a45;
}

.voice-read-here:hover img {
  opacity: 0.9;
}

.mds-voice-tooltip {
  position: fixed;
  z-index: 999999;
  background: rgba(10, 51, 37, 0.95);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  white-space: nowrap;
  max-width: min(86vw, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.mds-voice-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.mds-voice-tooltip::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  background: rgba(10, 51, 37, 0.95);
  transform: rotate(45deg);
}

.mds-voice-tooltip.is-below::after {
  bottom: auto;
  top: -3px;
}

.page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(160deg, rgba(10, 51, 37, 0.95), rgba(23, 122, 69, 0.9));
  color: #fff;
}

.page-hero h1 {
  margin: 0.75rem 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.9rem);
  max-width: 780px;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #d8e6ff;
}

.breadcrumb {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
  padding: 0;
  font-size: 0.84rem;
  color: #d1dfff;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.6rem;
}

.breadcrumb li:last-child::after {
  display: none;
}

.table-stack {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.table-stack th,
.table-stack td {
  border-bottom: 1px solid var(--border);
  padding: 0.8rem;
  text-align: left;
  font-size: 0.93rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem;
}

.faq details + details {
  margin-top: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Enhanced Vision Map Animations */
@keyframes routePulse {
  0%, 100% { stroke-width: 2; stroke-opacity: 0.7; }
  50% { stroke-width: 3; stroke-opacity: 1; }
}

@keyframes countryGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 2px rgba(23, 122, 69, 0.5));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 6px rgba(23, 122, 69, 0.8));
    transform: scale(1.05);
  }
}

@keyframes dataFlow {
  0% { 
    r: 2;
    opacity: 1;
  }
  50% { 
    r: 6;
    opacity: 0;
  }
  100% { 
    r: 2;
    opacity: 1;
  }
}

@keyframes connectionPulse {
  0%, 100% { stroke-width: 1; stroke-opacity: 0.3; }
  50% { stroke-width: 2; stroke-opacity: 0.6; }
}

.vision-map {
  position: relative;
  margin: 2rem 0;
}

.vision-map svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.country-marker {
  animation: countryGlow 3s ease-in-out infinite;
}

.country-marker:nth-child(2) { animation-delay: 0.5s; }
.country-marker:nth-child(3) { animation-delay: 1s; }
.country-marker:nth-child(4) { animation-delay: 1.5s; }
.country-marker:nth-child(5) { animation-delay: 2s; }
.country-marker:nth-child(6) { animation-delay: 2.5s; }

.anim-route {
  animation: routePulse 4s ease-in-out infinite;
  stroke-dashoffset: 0;
}

.moving-dot {
  animation: dataFlow 3s ease-in-out infinite;
}

.data-pulse {
  animation: dataFlow 4s ease-in-out infinite;
}

.vision-map line {
  animation: connectionPulse 3s ease-in-out infinite;
}

.vision-map line:nth-child(1) { animation-delay: 0s; }
.vision-map line:nth-child(2) { animation-delay: 0.5s; }
.vision-map line:nth-child(3) { animation-delay: 1s; }
.vision-map line:nth-child(4) { animation-delay: 1.5s; }
.vision-map line:nth-child(5) { animation-delay: 2s; }

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-wrap {
    display: grid;
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.open {
    max-height: 620px;
    padding-bottom: 0.8rem;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    width: 100%;
    padding: 0.7rem;
    grid-template-columns: 1fr;
    display: none;
    margin-top: 0.6rem;
  }

  .mega.open .mega-menu {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .brand-mark {
    width: 144px;
    height: 42px;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .grid-6,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mobile-quote {
    display: block;
  }

  body.has-mobile-quote main {
    padding-bottom: 64px;
  }
}

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

  .hero {
    padding-top: 4rem;
  }

  .grid-4,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .wa-float {
    padding: 0.68rem;
    border-radius: 999px;
  }

  .wa-float-text {
    display: none;
  }

  .wa-chat-bubble {
    right: 1.1rem;
    bottom: 5.2rem;
    max-width: 220px;
  }

  .voice-agent {
    left: 0.8rem;
    bottom: 5.2rem;
  }

  .voice-agent-card {
    width: min(92vw, 255px);
  }

  .voice-read-here {
    top: 0.55rem;
    right: 0.55rem;
    width: 36px;
    height: 36px;
  }
}
