:root {
  --royal: #00BFD4;
  --cyan: #73DF72;
  --navy: #061D36;
  --charcoal: #10283B;
  --muted: #587083;
  --offwhite: #F4FAFB;
  --soft-border: #DCEAEC;
  --white: #FFFFFF;
  --success: #25D366;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 18px 55px -24px rgba(0, 191, 212, .34);
  --shadow-card: 0 10px 32px -22px rgba(7, 21, 46, .32);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  background: var(--white);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { color: white; background: var(--royal); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }
.noscript { margin: 24px; padding: 16px; border: 1px solid var(--soft-border); border-radius: 12px; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  box-shadow: var(--shadow);
}
.brand-word { font-size: 21px; line-height: 1; }
.brand-adz { color: var(--royal); }
.brand-impact { color: var(--cyan); }
.footer .brand-adz, .footer .brand-impact { filter: brightness(1.45); }
.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}
.gradient { background: linear-gradient(90deg, var(--royal), var(--cyan)); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(230, 234, 240, .92);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 18px; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  border-radius: 9px;
  padding: 9px 9px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--royal); background: #F3F4FF; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--soft-border);
  border-radius: 10px;
  color: var(--navy);
  background: white;
}
.mobile-menu { display: none; border-top: 1px solid var(--soft-border); background: white; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding-block: 14px 18px; }
.mobile-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mobile-nav-grid .nav-link { padding: 11px 12px; }
.mobile-actions { display: grid; gap: 8px; margin-top: 14px; }

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(90deg, var(--royal), var(--cyan)); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--soft-border); color: var(--charcoal); background: white; }
.btn-outline:hover { border-color: var(--royal); color: var(--royal); }
.btn-white { color: var(--navy); background: white; }
.btn-whatsapp { color: white; background: var(--success); }
.btn-block { width: 100%; }

.hero, .page-hero { position: relative; overflow: hidden; }
.hero::before, .page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(700px 350px at 7% -15%, rgba(0, 191, 212, .15), transparent 62%),
    radial-gradient(650px 340px at 100% 0%, rgba(115, 223, 114, .11), transparent 62%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .9fr); gap: 62px; align-items: center; padding-block: 82px; }
.page-hero { border-bottom: 1px solid var(--soft-border); background: var(--offwhite); }
.page-hero-inner { position: relative; padding-block: 82px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 191, 212, .18);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--royal);
  background: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; color: var(--navy); letter-spacing: -.035em; }
h1 { margin-top: 18px; max-width: 900px; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; font-weight: 900; }
.page-hero h1 { max-width: 950px; }
.lead { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-tag::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--royal); }

.dashboard-wrap { position: relative; }
.dashboard-wrap::before { position: absolute; inset: -18px; z-index: -1; content: ""; border-radius: 36px; opacity: .2; filter: blur(22px); background: linear-gradient(90deg, var(--royal), var(--cyan)); }
.dashboard { border: 1px solid var(--soft-border); border-radius: 26px; padding: 22px; background: white; box-shadow: var(--shadow-card); }
.dashboard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.label { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.dashboard-title { margin-top: 5px; font-size: 24px; font-weight: 900; }
.live-pill { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 6px 10px; color: var(--royal); background: #EEF1FF; font-size: 11px; font-weight: 900; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.kpi { border: 1px solid var(--soft-border); border-radius: 12px; padding: 12px; background: var(--offwhite); }
.kpi strong { display: block; margin-top: 6px; color: var(--navy); font-size: 16px; }
.chart-box { height: 145px; margin-top: 16px; overflow: hidden; border: 1px solid var(--soft-border); border-radius: 13px; padding: 12px; background: var(--offwhite); }
.mini-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.mini-card { border: 1px solid var(--soft-border); border-radius: 12px; padding: 12px; font-size: 12px; font-weight: 800; }
.progress { height: 8px; margin-top: 9px; overflow: hidden; border-radius: 99px; background: var(--soft-border); }
.progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--royal), var(--cyan)); }

.section { padding-block: 84px; }
.section-offwhite { background: var(--offwhite); }
.section-navy {
  color: white;
  background:
    radial-gradient(1100px 500px at 10% -10%, rgba(0, 191, 212, .35), transparent 60%),
    radial-gradient(800px 450px at 95% 0%, rgba(115, 223, 114, .25), transparent 60%),
    var(--navy);
}
.section-heading { max-width: 790px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-top: 15px; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; font-weight: 900; }
.section-heading p { margin: 15px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-navy .section-heading h2, .section-navy h2, .section-navy h3 { color: white; }
.section-navy .section-heading p { color: rgba(255,255,255,.7); }
.section-navy .eyebrow { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.86); background: rgba(255,255,255,.06); }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.text-link { color: var(--royal); font-size: 14px; font-weight: 800; }
.text-link:hover { text-decoration: underline; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.card {
  position: relative;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: white;
  box-shadow: var(--shadow-card);
}
.card-hover { transition: transform .22s, border-color .22s, box-shadow .22s; }
.card-hover:hover { transform: translateY(-5px); border-color: rgba(0, 191, 212, .28); box-shadow: var(--shadow); }
.card h3 { margin-top: 16px; font-size: 19px; font-weight: 900; }
.card p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.icon-box { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--royal), var(--cyan)); box-shadow: var(--shadow); }
.icon-box.soft { color: var(--royal); background: #EEF1FF; box-shadow: none; }
.icon-box svg { width: 21px; height: 21px; }
.check-row { display: flex; align-items: flex-start; gap: 12px; }
.check-row .icon-box { width: 33px; height: 33px; flex: 0 0 auto; border-radius: 9px; }
.check-row p { margin: 7px 0 0; color: var(--charcoal); font-size: 14px; font-weight: 800; }

.process-card { border: 1px solid rgba(255,255,255,.12); border-radius: 17px; padding: 21px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.process-card .label { color: rgba(255,255,255,.55); }
.process-card h3 { margin-top: 9px; color: white; font-size: 18px; }
.process-card p { margin: 9px 0 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }

.metric-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--soft-border); border-radius: 13px; padding: 16px; background: white; }
.metric-row strong { display: block; color: var(--navy); font-size: 14px; }
.metric-row small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.metric-icon { display: grid; width: 38px; height: 38px; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--royal); background: #EEF1FF; }

.project-card { position: relative; min-height: 310px; overflow: hidden; border: 1px solid var(--soft-border); border-radius: 19px; background: var(--offwhite); }
.project-card.landscape { min-height: 260px; }
.project-bg { position: absolute; inset: 0; opacity: .75; background: radial-gradient(330px 170px at 25% 20%, rgba(0,191,212,.22), transparent 60%), linear-gradient(135deg, rgba(0,191,212,.1), rgba(115,223,114,.04)); transition: transform .5s, opacity .3s; }
.project-card:hover .project-bg { transform: scale(1.05); opacity: 1; }
.project-content { position: absolute; inset: auto 0 0; padding: 22px; }
.project-content .category { color: var(--royal); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.project-content h3 { margin-top: 6px; font-size: 19px; }
.project-content p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }

.definition-list { display: grid; gap: 10px; margin-top: 18px; }
.definition-row { display: grid; grid-template-columns: 105px 1fr; gap: 12px; border-bottom: 1px solid var(--soft-border); padding-bottom: 10px; }
.definition-row:last-child { border-bottom: 0; padding-bottom: 0; }
.definition-row dt { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.definition-row dd { margin: 0; color: var(--charcoal); font-size: 13px; line-height: 1.55; }
.quote { border: 1px solid var(--soft-border); border-radius: 18px; padding: 24px; background: var(--offwhite); }
.quote p { margin: 0; color: var(--charcoal); font-size: 14px; line-height: 1.8; }
.quote footer { margin-top: 14px; color: var(--muted); font-size: 12px; }

.cta-panel { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-panel p { max-width: 700px; margin: 13px 0 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.faq { max-width: 820px; overflow: hidden; border: 1px solid var(--soft-border); border-radius: 20px; background: white; }
.faq-item { border-bottom: 1px solid var(--soft-border); }
.faq-item:last-child { border-bottom: 0; }
.faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; border: 0; padding: 20px 22px; color: var(--navy); background: transparent; text-align: left; font-size: 14px; font-weight: 900; }
.faq-plus { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; border: 1px solid var(--soft-border); border-radius: 50%; color: var(--royal); transition: transform .22s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.filter-bar, .category-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn, .category-chip { border: 1px solid var(--soft-border); border-radius: 999px; padding: 8px 13px; color: var(--charcoal); background: white; font-size: 12px; font-weight: 800; }
.filter-btn:hover, .filter-btn.active { border-color: var(--royal); color: white; background: var(--royal); }

.timeline { position: relative; display: grid; gap: 20px; margin-left: 14px; border-left: 2px solid var(--soft-border); padding-left: 34px; }
.timeline-item { position: relative; }
.timeline-number { position: absolute; top: 0; left: -51px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--royal), var(--cyan)); box-shadow: var(--shadow); font-size: 11px; font-weight: 900; }

.plan { height: 100%; }
.plan.featured { border-color: var(--royal); transform: translateY(-5px); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -13px; left: 23px; border-radius: 99px; padding: 6px 11px; color: white; background: linear-gradient(90deg, var(--royal), var(--cyan)); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan h3 { margin-top: 0; font-size: 21px; }
.feature-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--charcoal); font-size: 13px; }
.feature-list li::before { color: var(--royal); content: "✓"; font-weight: 900; }

.blog-card { overflow: hidden; padding: 0; }
.blog-cover { position: relative; aspect-ratio: 16/9; background: radial-gradient(280px 140px at 28% 28%, rgba(0,191,212,.24), transparent 60%), linear-gradient(135deg, rgba(0,191,212,.12), rgba(115,223,114,.07)), var(--offwhite); }
.blog-body { padding: 22px; }
.blog-body h3 { margin-top: 8px; }
.blog-meta { margin-top: 8px; color: var(--muted); font-size: 11px; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr); gap: 34px; align-items: start; }
.form-card { border: 1px solid var(--soft-border); border-radius: 20px; padding: 30px; background: white; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--soft-border);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--charcoal);
  outline: none;
  background: white;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { min-height: 115px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(0,191,212,.08); }
.consent { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.success-message { display: grid; min-height: 340px; place-items: center; text-align: center; }
.success-mark { display: grid; width: 65px; height: 65px; margin-inline: auto; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--royal), var(--cyan)); font-size: 28px; }
.info-list { display: grid; gap: 12px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--soft-border); border-radius: 17px; padding: 17px; background: white; transition: border-color .2s, transform .2s; }
.info-card:hover { transform: translateY(-2px); border-color: rgba(0,191,212,.35); }
.info-card .icon-box { width: 43px; height: 43px; flex: 0 0 auto; }
.info-card strong { display: block; margin-top: 4px; color: var(--navy); font-size: 14px; }

.newsletter { border: 1px solid var(--soft-border); border-radius: 20px; padding: 30px; background: var(--offwhite); text-align: center; }
.newsletter h3 { font-size: 26px; }
.newsletter p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.newsletter-form { display: flex; max-width: 460px; gap: 8px; margin: 18px auto 0; }
.newsletter-form input { min-width: 0; flex: 1; border: 1px solid var(--soft-border); border-radius: 10px; padding: 12px 13px; outline: none; }

.footer {
  margin-top: 80px;
  color: white;
  background:
    radial-gradient(1000px 500px at 5% -20%, rgba(0,191,212,.38), transparent 60%),
    radial-gradient(800px 400px at 100% 0%, rgba(115,223,114,.25), transparent 60%),
    var(--navy);
}
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 42px; padding-block: 56px 42px; }
.footer-about p { max-width: 410px; margin: 17px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.social-link { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 9px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 900; }
.social-link:hover { border-color: white; color: white; }
.footer h4 { color: white; font-size: 14px; letter-spacing: 0; }
.footer-links { display: grid; gap: 9px; margin: 16px 0 0; padding: 0; list-style: none; }
.footer-links a, .footer-links li { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; color: rgba(255,255,255,.55); font-size: 11px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 13px; }
.legal-links a:hover { color: white; }

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 15px;
  color: white;
  background: var(--success);
  box-shadow: 0 16px 35px -14px rgba(37,211,102,.65);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.empty-state { grid-column: 1 / -1; border: 1px dashed var(--soft-border); border-radius: 18px; padding: 32px; color: var(--muted); text-align: center; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-inner { grid-template-columns: 1fr 420px; gap: 34px; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}
@media (max-width: 900px) {
  .header-actions { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 64px; }
  .dashboard-wrap { max-width: 620px; }
  .page-hero-inner { padding-block: 64px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-panel, .form-layout { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 62px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-word { font-size: 19px; }
  h1 { font-size: 40px; }
  .lead { font-size: 16px; line-height: 1.65; }
  .hero-actions .btn { width: 100%; }
  .section { padding-block: 62px; }
  .section-heading h2 { font-size: 34px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .mini-metrics { grid-template-columns: 1fr; }
  .project-card { min-height: 285px; }
  .form-card { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .consent { grid-column: auto; }
  .newsletter-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-about, .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .definition-row { grid-template-columns: 1fr; gap: 4px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 48px; height: 48px; justify-content: center; padding: 0; }
}

/* =========================================================
   TRENDY TYPOGRAPHY + PREMIUM MOTION UPGRADE
   ========================================================= */
:root {
  --font-display: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --glow: 0 22px 70px -28px rgba(0, 191, 212, .58);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 191, 212, .025), transparent 28rem),
    var(--white);
}

h1, h2, h3, h4, .brand, .btn, .eyebrow, .label, .nav-link {
  font-family: var(--font-display);
}

h1, .section-heading h2, .cta-panel h2 {
  text-wrap: balance;
}

p, .lead {
  text-wrap: pretty;
}

.brand-word {
  letter-spacing: -.055em;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: var(--font-display);
}
.brand-mark::after {
  position: absolute;
  inset: -45%;
  content: "";
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.75) 50%, transparent 62%);
  transform: translateX(-80%) rotate(12deg);
  animation: brandShine 4.8s ease-in-out infinite;
}

.site-header {
  transition: min-height .35s var(--ease-out-expo), box-shadow .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  border-color: rgba(0,191,212,.09);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 45px -32px rgba(7,21,46,.75);
}
.site-header.scrolled .header-inner { min-height: 61px; }

.nav-link {
  position: relative;
  overflow: hidden;
  letter-spacing: -.015em;
}
.nav-link::after {
  position: absolute;
  right: 9px;
  bottom: 4px;
  left: 9px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out-expo);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--royal), var(--cyan), #6f7bff);
  box-shadow: 0 0 16px rgba(115,223,114,.48);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  opacity: .17;
  filter: blur(16px);
  background: radial-gradient(circle, rgba(115,223,114,.2), rgba(0,191,212,.07) 38%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .3s ease;
  will-change: transform;
}

main {
  position: relative;
  z-index: 3;
  animation: pageEnter .75s var(--ease-out-expo) both;
}

.hero::after, .page-hero::after {
  position: absolute;
  top: 10%;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(0,191,212,.07);
  border-radius: 34% 66% 58% 42% / 42% 38% 62% 58%;
  animation: morphOrb 12s ease-in-out infinite alternate, slowSpin 22s linear infinite;
}

.hero-inner > div:first-child {
  animation: heroCopyIn .9s .08s var(--ease-out-expo) both;
}

.eyebrow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -24px rgba(0,191,212,.55);
  animation: eyebrowFloat 4s ease-in-out infinite;
}
.eyebrow::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.8), transparent 75%);
  transform: translateX(-120%);
  animation: pillShimmer 4.5s 1.2s ease-in-out infinite;
}

h1 {
  font-weight: 700;
  letter-spacing: -.065em;
}
.section-heading h2 {
  font-weight: 700;
  letter-spacing: -.055em;
}
.card h3, .project-content h3, .process-card h3 {
  letter-spacing: -.035em;
}

.text-gradient {
  background-size: 220% auto;
  animation: gradientFlow 5s linear infinite;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  letter-spacing: -.015em;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease, border-color .25s ease, color .25s ease, background .25s ease;
}
.btn::before {
  position: absolute;
  z-index: -1;
  top: -40%;
  bottom: -40%;
  left: -75%;
  width: 45%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease-out-expo), opacity .25s ease;
}
.btn:hover::before { left: 130%; opacity: 1; }
.btn:hover { transform: translateY(-3px) scale(1.015); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary:hover { box-shadow: 0 22px 48px -20px rgba(0,191,212,.65); }

.hero-tag {
  transition: color .25s ease, transform .25s var(--ease-spring);
}
.hero-tag:hover { color: var(--royal); transform: translateY(-2px); }
.hero-tag::before { animation: dotPulse 2s ease-in-out infinite; }
.hero-tag:nth-child(2n)::before { animation-delay: .35s; }
.hero-tag:nth-child(3n)::before { animation-delay: .7s; }

.dashboard-wrap {
  perspective: 1200px;
  animation: dashboardIn 1s .18s var(--ease-out-expo) both;
}
.dashboard-wrap::before {
  opacity: .3;
  animation: dashboardAura 5s ease-in-out infinite alternate;
}
.dashboard {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s ease-out, box-shadow .35s ease;
}
.dashboard:hover { box-shadow: 0 34px 90px -35px rgba(0,191,212,.5); }
.dashboard-head, .kpi-grid, .chart-box, .mini-metrics { transform: translateZ(16px); }
.live-pill::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--royal);
  box-shadow: 0 0 0 0 rgba(0,191,212,.5);
  animation: livePulse 1.8s ease-out infinite;
}
.chart-box svg path:last-child {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawChart 2.1s .75s var(--ease-out-expo) forwards;
}
.progress span {
  transform: scaleX(0);
  transform-origin: left;
  animation: growBar 1.4s 1s var(--ease-out-expo) forwards;
}

.section {
  position: relative;
  overflow: clip;
}
.section > .container { position: relative; z-index: 2; }
.section-offwhite::before {
  position: absolute;
  top: -8rem;
  left: -9rem;
  width: 24rem;
  height: 24rem;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,212,.04), transparent 68%);
}

.card, .project-card, .metric-row, .info-card, .quote, .process-card, .plan {
  will-change: transform;
}
.card {
  overflow: hidden;
  transition: transform .42s var(--ease-out-expo), border-color .28s ease, box-shadow .35s ease;
}
.card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(350px circle at var(--mx, 50%) var(--my, 50%), rgba(115,223,114,.085), transparent 42%);
  transition: opacity .3s ease;
}
.card:hover::after { opacity: 1; }
.card-hover:hover, .card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,191,212,.23);
  box-shadow: var(--glow);
}
.card .icon-box {
  transition: transform .45s var(--ease-spring), border-radius .4s ease, box-shadow .35s ease;
}
.card:hover .icon-box {
  transform: translateY(-3px) rotate(-5deg) scale(1.08);
  border-radius: 16px 10px 16px 10px;
  box-shadow: 0 18px 40px -20px rgba(0,191,212,.7);
}

.project-card {
  isolation: isolate;
  transition: transform .45s var(--ease-out-expo), box-shadow .4s ease, border-color .3s ease;
}
.project-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(130deg, transparent 25%, rgba(255,255,255,.7) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out-expo);
}
.project-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(0,191,212,.22);
  box-shadow: var(--glow);
}
.project-card:hover::before { transform: translateX(120%); }
.project-card:hover .project-bg { transform: scale(1.12) rotate(.6deg); }
.project-content { z-index: 2; }

.metric-row, .info-card, .quote, .process-card {
  transition: transform .35s var(--ease-out-expo), border-color .25s ease, box-shadow .3s ease;
}
.metric-row:hover, .info-card:hover, .quote:hover, .process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,191,212,.22);
  box-shadow: 0 20px 45px -34px rgba(0,191,212,.55);
}
.metric-icon { transition: transform .45s var(--ease-spring), background .3s ease, color .3s ease; }
.metric-row:hover .metric-icon { transform: rotate(8deg) scale(1.1); color: white; background: linear-gradient(135deg, var(--royal), var(--cyan)); }

.timeline-number {
  animation: timelinePulse 2.7s ease-in-out infinite;
}
.timeline-item:nth-child(2n) .timeline-number { animation-delay: .4s; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transition: grid-template-rows .45s var(--ease-out-expo), opacity .3s ease, padding .45s var(--ease-out-expo);
}
.faq-answer > div { min-height: 0; }
.faq-item.open .faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 22px 20px;
  opacity: 1;
}
.faq-item.open .faq-answer { animation: faqFade .45s ease both; }

.filter-btn, .category-chip {
  transition: transform .3s var(--ease-spring), color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.filter-btn:hover, .category-chip:hover { transform: translateY(-2px); }
.filter-btn.active { box-shadow: 0 12px 24px -14px rgba(0,191,212,.65); }

.floating-whatsapp {
  animation: whatsappFloat 3s ease-in-out infinite;
}
.floating-whatsapp::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(37,211,102,.35);
  border-radius: inherit;
  animation: whatsappRing 2.2s ease-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  filter: blur(7px);
  transition:
    opacity .8s var(--ease-out-expo),
    transform .8s var(--ease-out-expo),
    filter .8s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes pageEnter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(28px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes dashboardIn { from { opacity: 0; transform: translateY(35px) scale(.95) rotateY(-5deg); } to { opacity: 1; transform: none; } }
@keyframes brandShine { 0%, 64% { transform: translateX(-90%) rotate(12deg); } 82%, 100% { transform: translateX(90%) rotate(12deg); } }
@keyframes gradientFlow { to { background-position: 220% center; } }
@keyframes eyebrowFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@keyframes pillShimmer { 0%, 65% { transform: translateX(-120%); } 90%, 100% { transform: translateX(120%); } }
@keyframes dotPulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,191,212,.25); } 50% { transform: scale(1.35); box-shadow: 0 0 0 7px rgba(0,191,212,0); } }
@keyframes dashboardAura { from { transform: scale(.96); filter: blur(24px); } to { transform: scale(1.08); filter: blur(30px); } }
@keyframes livePulse { to { box-shadow: 0 0 0 10px rgba(0,191,212,0); } }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
@keyframes growBar { to { transform: scaleX(1); } }
@keyframes morphOrb { 0% { border-radius: 34% 66% 58% 42% / 42% 38% 62% 58%; } 100% { border-radius: 61% 39% 32% 68% / 58% 61% 39% 42%; } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes timelinePulse { 0%,100% { box-shadow: 0 8px 30px -14px rgba(0,191,212,.55); } 50% { box-shadow: 0 8px 36px -8px rgba(115,223,114,.75); } }
@keyframes faqFade { from { transform: translateY(-5px); } to { transform: none; } }
@keyframes whatsappFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes whatsappRing { from { opacity: .8; transform: scale(.88); } to { opacity: 0; transform: scale(1.3); } }

@media (max-width: 900px) {
  .cursor-glow { display: none; }
  .hero::after, .page-hero::after { width: 17rem; height: 17rem; opacity: .65; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .cursor-glow { display: none; }
}


/* =========================================================
   READABILITY UPGRADE — LARGER SUPPORTING TEXT
   ========================================================= */
.nav-link { font-size: 14.5px; padding-inline: 10px; }
.btn { min-height: 46px; padding: 12px 18px; font-size: 15px; }
.eyebrow { padding: 8px 13px; font-size: 12px; }
.lead { max-width: 850px; font-size: 19px; line-height: 1.78; }
.hero-tag { font-size: 12.5px; line-height: 1.45; }
.label { font-size: 11.5px; }
.live-pill { font-size: 12px; }
.kpi strong { font-size: 17px; }
.mini-card { font-size: 13.5px; }
.text-link { font-size: 15px; }
.card p { font-size: 15.5px; line-height: 1.72; }
.check-row p { font-size: 15px; }
.process-card p { font-size: 14.5px; }
.metric-row strong { font-size: 15.5px; }
.metric-row small { font-size: 13.5px; }
.project-content .category { font-size: 11.5px; }
.project-content p { font-size: 13.5px; line-height: 1.65; }
.definition-row dt { font-size: 11.5px; }
.definition-row dd { font-size: 14.5px; }
.quote p { font-size: 15.5px; }
.quote footer { font-size: 13.5px; }
.faq-button, .faq-answer { font-size: 15.5px; }
.filter-btn, .category-chip { padding: 9px 14px; font-size: 13.5px; }
.timeline-number { font-size: 12px; }
.plan-badge { font-size: 10.5px; }
.feature-list li { font-size: 14.5px; line-height: 1.55; }
.blog-meta { font-size: 12.5px; }
.form-field label { font-size: 11.5px; }
.form-field input, .form-field select, .form-field textarea { font-size: 15px; }
.consent { font-size: 13.5px; }
.info-card strong { font-size: 15px; line-height: 1.5; }
.newsletter p { font-size: 14.5px; }
.footer-about p, .footer-links a, .footer-links li { font-size: 14.5px; }
.footer h4 { font-size: 15.5px; }
.footer-bottom { font-size: 12.5px; }
.floating-whatsapp { font-size: 14.5px; }

@media (max-width: 620px) {
  .nav-link { font-size: 14px; }
  .eyebrow { font-size: 11px; letter-spacing: .09em; }
  .lead { font-size: 17px; line-height: 1.72; }
  .hero-tag { font-size: 11.5px; }
  .card p { font-size: 15px; }
  .faq-button, .faq-answer { font-size: 15px; }
  .footer-about p, .footer-links a, .footer-links li { font-size: 14px; }
}

/* =========================================================
   HEADER & SUBMENU UPGRADE — LARGER, CLEANER NAVIGATION
   ========================================================= */
:root { --container: 1240px; }

.header-inner {
  min-height: 82px;
  gap: 22px;
}

.brand { gap: 11px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 17px;
}
.brand-word { font-size: 24px; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  min-height: 48px;
  padding: 13px 14px;
  border: 0;
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  background: transparent;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle svg {
  transition: transform .28s var(--ease-out-expo);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
  color: var(--royal);
  background: #F3F4FF;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown.active .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  z-index: 140;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 230px;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(0, 191, 212, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 65px -28px rgba(7, 21, 46, .55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.98);
  transform-origin: top left;
  transition: opacity .22s ease, visibility .22s ease, transform .28s var(--ease-out-expo);
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu,
.nav-dropdown.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.submenu-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 11px;
  padding: 10px 13px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.submenu-link:hover,
.submenu-link.active {
  color: var(--royal);
  background: #F3F4FF;
  transform: translateX(3px);
}

.header-actions { gap: 10px; }
.header-actions .btn {
  min-height: 50px;
  padding-inline: 18px;
  font-size: 15px;
}
.header-cta { max-width: 170px; }

.site-header.scrolled .header-inner { min-height: 72px; }

.mobile-nav-list { display: grid; gap: 7px; }
.mobile-nav-link,
.mobile-submenu-toggle {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--navy);
  background: transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-submenu-toggle:hover,
.mobile-nav-group.open .mobile-submenu-toggle {
  color: var(--royal);
  background: #F3F4FF;
}
.mobile-submenu-toggle svg { transition: transform .25s var(--ease-out-expo); }
.mobile-nav-group.open .mobile-submenu-toggle svg { transform: rotate(180deg); }
.mobile-submenu {
  display: grid;
  max-height: 0;
  gap: 4px;
  overflow: hidden;
  padding-inline: 9px;
  opacity: 0;
  transition: max-height .32s var(--ease-out-expo), opacity .2s ease, padding .25s ease;
}
.mobile-nav-group.open .mobile-submenu {
  max-height: 260px;
  padding-block: 5px 8px;
  opacity: 1;
}
.mobile-submenu-link {
  display: flex;
  min-height: 43px;
  align-items: center;
  border-left: 2px solid #E8EAFE;
  border-radius: 0 10px 10px 0;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 700;
}
.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  border-left-color: var(--royal);
  color: var(--royal);
  background: #F8F8FF;
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; width: 48px; height: 48px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 74px; }
  .site-header.scrolled .header-inner { min-height: 68px; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-word { font-size: 22px; }
  .menu-toggle { width: 45px; height: 45px; }
}

/* Header CTA — keep complete button label on one line */
.header-actions .btn,
.header-cta {
  white-space: nowrap;
}

.header-cta {
  max-width: none;
  min-width: 210px;
  padding-inline: 21px;
}

/* =========================================================
   GLOBAL WHITESPACE FIX
   Removes the unintended blank strip before the footer on
   every page while keeping normal section spacing intact.
   ========================================================= */
.footer {
  margin-top: 0 !important;
}

main + .footer {
  margin-top: 0 !important;
}

main > :last-child {
  margin-bottom: 0;
}

/* =========================================================
   PRICING CARD CONTENT VISIBILITY FIX
   Keeps the featured badge and complete plan content visible.
   ========================================================= */
.plan {
  display: flex;
  height: auto;
  min-height: 100%;
  flex-direction: column;
  overflow: visible;
}

.plan .feature-list {
  flex: 1 1 auto;
}

.plan .btn-block {
  flex: 0 0 auto;
}

.plan.featured {
  position: relative;
  z-index: 3;
}

.plan-badge {
  z-index: 5;
  white-space: nowrap;
}

/* Prevent the pricing row and its featured label from being clipped. */
.pricing-grid {
  align-items: stretch;
  overflow: visible;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .pricing-grid {
    row-gap: 30px;
  }
}


/* =========================================================
   CONTACT FORM VALIDATION
   Valid phone and email inputs with clear inline feedback.
   ========================================================= */
.field-help,
.field-error {
  display: block;
  margin-top: 7px;
  font-size: 11.5px;
  line-height: 1.5;
}

.field-help {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: #C62828;
  font-weight: 700;
}

.form-field.has-error input {
  border-color: #D32F2F;
  background: #FFF8F8;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, .10);
}

.form-field.has-valid input {
  border-color: #169B62;
  background: #FBFFFD;
  box-shadow: 0 0 0 3px rgba(22, 155, 98, .08);
}

.form-field.has-error .field-help {
  display: none;
}

.form-field input[aria-invalid="true"]:focus {
  border-color: #D32F2F;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, .12);
}

@media (max-width: 620px) {
  .field-help,
  .field-error {
    font-size: 11px;
  }
}


/* Blog articles and generated cover imagery */
.category-chip {
  appearance: none;
  font-family: inherit;
  line-height: 1.2;
  transition: color .2s, background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.category-chip.active {
  border-color: var(--royal);
  color: var(--white);
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  box-shadow: 0 10px 24px -14px rgba(0, 191, 212, .75);
}
.blog-card[hidden] { display: none !important; }
.blog-cover-link { display: block; overflow: hidden; background: var(--offwhite); }
.blog-cover { overflow: hidden; }
.blog-cover-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.75,.2,1), filter .35s;
}
.blog-card:hover .blog-cover-image { transform: scale(1.045); filter: saturate(1.08); }
.blog-body h3 { font-size: 20px; line-height: 1.3; }
.blog-body h3 a { transition: color .2s; }
.blog-body h3 a:hover { color: var(--royal); }
.blog-excerpt {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.blog-meta { font-size: 12px; }

.article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--soft-border);
  background:
    radial-gradient(700px 350px at 8% -10%, rgba(0,191,212,.13), transparent 65%),
    radial-gradient(700px 350px at 100% 0%, rgba(115,223,114,.09), transparent 65%),
    var(--offwhite);
}
.article-hero-inner { padding-block: 64px 70px; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--royal);
  font-size: 14px;
  font-weight: 800;
}
.article-back svg { transform: rotate(180deg); }
.article-category {
  display: table;
  margin-top: 38px;
  border: 1px solid rgba(0,191,212,.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--royal);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.article-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.03;
}
.article-deck {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.article-meta-row span:not(:first-child)::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  content: "";
  border-radius: 50%;
  background: var(--royal);
}
.article-cover {
  overflow: hidden;
  margin: 42px 0 0;
  border: 1px solid rgba(0,191,212,.12);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 32px 80px -42px rgba(0, 0, 80, .5);
}
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.article-section { padding-block: 76px 88px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  justify-content: space-between;
  gap: 68px;
  align-items: start;
}
.article-content {
  min-width: 0;
  color: #243147;
  font-size: 17px;
  line-height: 1.88;
}
.article-content > *:first-child { margin-top: 0; }
.article-content p { margin: 18px 0 0; }
.article-content .article-intro {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.72;
  font-weight: 600;
}
.article-content h2 {
  scroll-margin-top: 108px;
  margin-top: 54px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}
.article-content h3 {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.32;
}
.article-content ul,
.article-content ol {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding-left: 24px;
}
.article-content li { padding-left: 4px; }
.article-content li::marker { color: var(--royal); font-weight: 900; }
.article-content strong { color: var(--navy); }
.article-content a { color: var(--royal); font-weight: 750; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-callout {
  margin-top: 25px;
  border: 1px solid rgba(0,191,212,.14);
  border-left: 4px solid var(--royal);
  border-radius: 14px;
  padding: 20px 22px;
  color: #243147;
  background: linear-gradient(135deg, rgba(0,191,212,.055), rgba(115,223,114,.02));
}
.article-table-wrap {
  overflow-x: auto;
  margin-top: 25px;
  border: 1px solid var(--soft-border);
  border-radius: 16px;
  background: var(--white);
}
.article-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}
.article-table th,
.article-table td {
  border-bottom: 1px solid var(--soft-border);
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
}
.article-table th { color: var(--navy); background: var(--offwhite); font-weight: 900; }
.article-table tr:last-child td { border-bottom: 0; }
.article-sources {
  margin-top: 54px;
  border-top: 1px solid var(--soft-border);
  padding-top: 28px;
}
.article-sources h3 { margin-top: 0; }
.article-sources ul { gap: 7px; }
.checklist { list-style: none; padding-left: 0 !important; }
.checklist li { position: relative; padding-left: 29px; }
.checklist li::before {
  position: absolute;
  top: .35em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  color: var(--white);
  background: var(--royal);
  font-size: 11px;
  font-weight: 900;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}
.article-toc,
.article-side-cta {
  border: 1px solid var(--soft-border);
  border-radius: 18px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.article-toc ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.article-toc li { counter-increment: toc; }
.article-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  transition: color .2s, transform .2s;
}
.article-toc a::before { color: var(--royal); content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 900; }
.article-toc a:hover { color: var(--royal); transform: translateX(3px); }
.article-side-cta { background: linear-gradient(155deg, #07152E, #101F49); }
.article-side-cta .label { color: #AEBBFF; }
.article-side-cta h3 { margin-top: 9px; color: var(--white); font-size: 22px; line-height: 1.25; }
.article-side-cta p { margin: 11px 0 18px; color: #C8D0E3; font-size: 13px; line-height: 1.65; }

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 42px; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .article-hero-inner { padding-block: 44px 48px; }
  .article-category { margin-top: 28px; }
  .article-hero h1 { font-size: 38px; }
  .article-deck { font-size: 17px; line-height: 1.65; }
  .article-meta-row { display: grid; gap: 7px; }
  .article-meta-row span:not(:first-child)::before { display: none; }
  .article-cover { margin-top: 30px; border-radius: 18px; }
  .article-section { padding-block: 50px 62px; }
  .article-content { font-size: 16px; line-height: 1.8; }
  .article-content .article-intro { font-size: 18px; }
  .article-content h2 { margin-top: 42px; font-size: 29px; }
  .article-content h3 { font-size: 21px; }
  .article-callout { padding: 17px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .blog-body h3 { font-size: 19px; }
  .blog-excerpt { font-size: 13.5px; }
}

/* =========================================================
   BLOG THUMBNAIL HEIGHT FIX
   Keeps every blog-card cover compact and prevents the image
   from using its intrinsic/HTML height inside the card.
   ========================================================= */
.blog-cover-link {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
  background: var(--offwhite);
}

.blog-cover-image {
  display: block;
  width: 100%;
  height: 100% !important;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .blog-cover-link {
    height: 210px;
    max-height: 210px;
  }
}

@media (max-width: 620px) {
  .blog-cover-link {
    height: 190px;
    max-height: 190px;
  }
}

/* =========================================================
   COMPACT FOOTER
   Keeps only essential links and reduces vertical height.
   ========================================================= */
.footer-main.footer-main-compact {
  grid-template-columns: minmax(300px, 1.55fr) minmax(155px, .75fr) minmax(155px, .75fr) minmax(220px, 1fr);
  gap: 34px;
  padding-block: 44px 30px;
  align-items: start;
}

.footer-main-compact .footer-about p {
  max-width: 380px;
  margin-top: 14px;
  line-height: 1.65;
}

.footer-main-compact .socials {
  margin-top: 17px;
}

.footer-links.footer-links-compact {
  gap: 7px;
  margin-top: 13px;
}

.footer-links-compact a,
.footer-links-compact li {
  line-height: 1.45;
}

.footer-bottom.footer-bottom-compact {
  padding-block: 16px;
}

@media (max-width: 1120px) {
  .footer-main.footer-main-compact {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer-main-compact .footer-contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  .footer-main.footer-main-compact {
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
  }

  .footer-main-compact .footer-about {
    grid-column: 1 / -1;
  }

  .footer-main-compact .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .footer-main.footer-main-compact {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-block: 38px 26px;
  }

  .footer-main-compact .footer-about,
  .footer-main-compact .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-main-compact .footer-contact {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 24px;
  }
}

@media (max-width: 420px) {
  .footer-main.footer-main-compact {
    grid-template-columns: 1fr;
  }

  .footer-main-compact .footer-about,
  .footer-main-compact .footer-contact {
    grid-column: auto;
  }
}

/* =========================================================
   2026 LOGO & BRAND PALETTE UPDATE
   ========================================================= */
.brand-image-link {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0;
  line-height: 0;
}

.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.site-logo-header {
  width: clamp(190px, 15vw, 228px);
  max-height: 48px;
}

.site-logo-footer {
  width: min(100%, 265px);
  max-height: 56px;
  filter: drop-shadow(0 8px 20px rgba(0, 191, 212, .13));
}

.btn-primary {
  color: #06263A;
  font-weight: 900;
}

.btn-primary:hover {
  color: #041C2E;
}

.filter-btn:hover,
.filter-btn.active {
  color: #06263A;
}

.faq {
  width: 100%;
  max-width: none;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.social-link svg {
  width: 19px;
  height: 19px;
}

.social-link:hover {
  color: #73DF72;
  border-color: rgba(115, 223, 114, .8);
  background: rgba(115, 223, 114, .08);
  transform: translateY(-2px);
}

.footer {
  background:
    radial-gradient(1000px 500px at 5% -20%, rgba(0, 191, 212, .28), transparent 60%),
    radial-gradient(800px 400px at 100% 0%, rgba(115, 223, 114, .18), transparent 60%),
    var(--navy);
}

@media (max-width: 1120px) {
  .site-logo-header {
    width: 198px;
  }
}

@media (max-width: 760px) {
  .site-logo-header {
    width: 178px;
    max-height: 43px;
  }

  .site-logo-footer {
    width: 230px;
  }
}

@media (max-width: 420px) {
  .site-logo-header {
    width: 158px;
  }
}

/* =========================================================
   BACK TO TOP + LIVE EMAIL FORM DELIVERY
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 79;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 191, 212, .28);
  border-radius: 50%;
  color: #06263a;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px -18px rgba(6, 38, 58, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.88);
  cursor: pointer;
  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .3s var(--ease-spring),
    background .25s ease,
    border-color .25s ease;
  backdrop-filter: blur(12px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(115, 223, 114, .9);
  background: linear-gradient(135deg, #00bfd4, #73df72);
  transform: translateY(-3px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 191, 212, .28);
  outline-offset: 4px;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit-status {
  min-height: 22px;
  margin-top: 11px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.form-submit-status.error,
.newsletter-message.error {
  color: #c62828;
}

.form-submit-status a,
.newsletter-message a {
  color: inherit;
  text-decoration: underline;
}

.newsletter-message.success {
  color: #087f5b;
}

.newsletter-message p {
  margin: 14px 0 0;
  font-weight: 800;
}

.button-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -3px;
  animation: buttonSpin .7s linear infinite;
}

.btn:disabled {
  cursor: wait;
  opacity: .75;
  transform: none !important;
}

@keyframes buttonSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 620px) {
  .back-to-top {
    right: 18px;
    bottom: 78px;
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top.visible {
    transition: none;
  }

  .button-spinner {
    animation-duration: 1.4s;
  }
}

/* =========================================================
   HOMEPAGE FLOATING ENQUIRY FORM
   ========================================================= */
.hero-form-wrap {
  align-self: start;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.hero-form-wrap::before {
  opacity: .34;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
}

.hero-lead-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 212, .22);
  border-radius: 26px;
  padding: 27px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 75px -30px rgba(6, 38, 58, .42);
  backdrop-filter: blur(16px);
}

.hero-lead-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--royal), var(--cyan));
}

.hero-form-head {
  margin-bottom: 21px;
}

.hero-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 191, 212, .18);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--royal);
  background: var(--offwhite);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-form-head h2 {
  margin-top: 13px;
  font-size: clamp(27px, 2.5vw, 35px);
  line-height: 1.08;
}

.hero-form-head p {
  max-width: 430px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.hero-form-grid .form-field.full,
.hero-form-grid .consent {
  grid-column: 1 / -1;
}

.hero-lead-card .form-field label {
  font-size: 10px;
}

.hero-lead-card .form-field input,
.hero-lead-card .form-field select,
.hero-lead-card .form-field textarea {
  margin-top: 6px;
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 13px;
}

.hero-lead-card .form-field textarea {
  min-height: 82px;
}

.hero-lead-card .field-error {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.4;
}

.hero-lead-card .consent {
  font-size: 10.5px;
  line-height: 1.45;
}

.hero-lead-card .consent input {
  margin-top: 2px;
  flex: 0 0 auto;
}

.hero-lead-card .btn-block {
  min-height: 50px;
}

.hero-form-success {
  min-height: 500px;
  padding-inline: 12px;
}

@media (max-width: 1120px) {
  .hero-form-wrap {
    max-width: 650px;
    margin: 0;
  }
}

@media (max-width: 620px) {
  .hero-lead-card {
    border-radius: 21px;
    padding: 21px 17px;
  }

  .hero-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-form-grid .form-field.full,
  .hero-form-grid .consent {
    grid-column: auto;
  }

  .hero-form-head h2 {
    font-size: 28px;
  }

  .hero-form-success {
    min-height: 420px;
  }
}

/* =========================================================
   BRAND-GRADIENT HOMEPAGE HEADLINE
   ========================================================= */
.hero .home-hero-title {
  max-width: 830px;
  font-size: clamp(40px, 4.65vw, 62px);
  line-height: 1.055;
  letter-spacing: -.058em;
  color: transparent;
  background:
    linear-gradient(
      105deg,
      var(--navy) 0%,
      #07546a 30%,
      var(--royal) 61%,
      var(--cyan) 100%
    );
  background-size: 160% 100%;
  background-position: 16% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 28px rgba(0, 191, 212, .08));
  animation: heroHeadingGradient 7s ease-in-out infinite alternate;
}

@keyframes heroHeadingGradient {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

@media (max-width: 1120px) {
  .hero .home-hero-title {
    max-width: 780px;
    font-size: clamp(40px, 5.2vw, 58px);
  }
}

@media (max-width: 620px) {
  .hero .home-hero-title {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.07;
    letter-spacing: -.052em;
    background-size: 190% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .home-hero-title {
    animation: none;
    background-position: 50% center;
  }
}

/* =========================================================
   HOMEPAGE HERO GRID ALIGNMENT
   Layout-only refinement: content and form remain unchanged.
   ========================================================= */
.hero .hero-inner {
  grid-template-columns: minmax(0, 1.13fr) minmax(445px, .87fr);
  gap: clamp(46px, 4.4vw, 70px);
  align-items: center;
  padding-block: clamp(62px, 5.2vw, 82px);
}

.hero .hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 710px;
}

.hero .hero-copy .home-hero-title {
  max-width: 690px;
}

.hero .hero-copy .lead {
  max-width: 700px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.68;
}

.hero .hero-copy .hero-actions {
  margin-top: 25px;
}

.hero .hero-copy .hero-tags {
  margin-top: 24px;
}

.hero .hero-form-wrap {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 500px;
  margin: 0;
}

.hero .hero-lead-card {
  width: 100%;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 430px);
    gap: 34px;
    align-items: center;
    padding-block: 60px;
  }

  .hero .hero-copy .home-hero-title {
    font-size: clamp(42px, 5vw, 56px);
  }

  .hero .hero-copy .lead {
    font-size: 15px;
    line-height: 1.62;
  }

  .hero .hero-form-wrap {
    max-width: 430px;
  }
}

@media (max-width: 900px) {
  .hero .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    padding-block: 58px 66px;
  }

  .hero .hero-copy {
    max-width: 760px;
  }

  .hero .hero-copy .lead {
    max-width: 760px;
  }

  .hero .hero-form-wrap {
    justify-self: center;
    align-self: auto;
    width: min(100%, 650px);
    max-width: 650px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero .hero-inner {
    gap: 34px;
    padding-block: 44px 52px;
  }

  .hero .hero-copy .lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero .hero-copy .hero-actions,
  .hero .hero-copy .hero-tags {
    margin-top: 22px;
  }
}

/* =========================================================
   HERO TOP SPACE — 10PX
   ========================================================= */
.hero .hero-inner {
  padding-top: 10px !important;
}

@media (max-width: 900px) {
  .hero .hero-inner {
    padding-top: 10px !important;
  }
}

@media (max-width: 620px) {
  .hero .hero-inner {
    padding-top: 10px !important;
  }
}

/* Homepage hero description paragraph spacing */
.hero .hero-copy .lead .hero-description-gap {
  display: block;
  height: 7px;
}

/* =========================================================
   HERO FORM COLOR-BLEED FIX
   Original form padding is preserved.
   ========================================================= */
.hero .hero-form-wrap::before {
  display: none !important;
}

.hero .hero-lead-card::before {
  top: 0;
  right: 22px;
  left: 22px;
  width: auto;
  height: 3px;
  border-radius: 0 0 999px 999px;
}



/* Clean menu and section flow after removing unused website parts */
.desktop-nav {
  justify-content: center;
}

@media (min-width: 1121px) {
  .header-inner {
    column-gap: 26px;
  }

  .desktop-nav {
    gap: 5px;
  }
}

/* =========================================================
   SITE-WIDE BRAND GRADIENT ON LIGHT BACKGROUNDS
   Dark/navy sections, footer, CTA panels and buttons are
   intentionally excluded to preserve strong readability.
   ========================================================= */
:root {
  --brand-text-gradient:
    linear-gradient(
      105deg,
      var(--navy) 0%,
      #07546a 28%,
      var(--royal) 62%,
      var(--cyan) 100%
    );
}

.page-hero h1,
.hero .hero-lead-card h2,
.section:not(.section-navy) .section-heading h2,
.section:not(.section-navy) .card h3,
.section:not(.section-navy) .timeline-item h3,
.section:not(.section-navy) .newsletter h3,
.section:not(.section-navy) .metric-row strong,
.section:not(.section-navy) .info-card strong,
.section:not(.section-navy) .faq-button > span:first-child,
.section:not(.section-navy) .check-row p,
.section:not(.section-navy) .card[style*="font-weight"],
.form-card h2,
.success-message h2,
.article-hero h1,
.article-content h2,
.article-content h3,
.article-toc h3,
.article-sources h3,
.blog-body h3,
.blog-body h3 a,
.desktop-nav .nav-link,
.mobile-nav-grid .nav-link {
  color: transparent !important;
  background-image: var(--brand-text-gradient);
  background-size: 145% 100%;
  background-position: 12% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Larger headings receive the same subtle brand movement as the hero. */
.page-hero h1,
.section:not(.section-navy) .section-heading h2,
.article-hero h1 {
  animation: siteHeadingGradient 8s ease-in-out infinite alternate;
}

/* Keep icons, plus signs, form copy and body paragraphs fully readable. */
.faq-plus,
.btn,
.btn *,
.section-navy *,
.footer *,
.article-side-cta *,
.hero-form-kicker,
.form-field label,
.form-field input,
.form-field select,
.form-field textarea,
.consent,
.text-link,
.label,
.eyebrow {
  -webkit-text-fill-color: currentColor;
}

/* Dark sections always retain white headings and text. */
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy strong,
.section-navy .section-heading h2,
.section-navy .process-card h3,
.cta-panel h2,
.article-side-cta h3,
.footer h4 {
  color: white !important;
  background: none !important;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  animation: none !important;
}

/* Buttons preserve their intended high-contrast foreground colors. */
.btn-primary,
.btn-primary *,
.btn-whatsapp,
.btn-whatsapp *,
.btn-white,
.btn-white *,
.btn-outline,
.btn-outline * {
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

@keyframes siteHeadingGradient {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero h1,
  .section:not(.section-navy) .section-heading h2,
  .article-hero h1 {
    animation: none;
    background-position: 45% 50%;
  }
}

/* =========================================================
   UNIFORM BRAND GRADIENT
   Same gradient, direction and position across all light
   background headings and prominent title text.
   ========================================================= */
:root {
  --brand-text-gradient:
    linear-gradient(
      90deg,
      #07546a 0%,
      #00b9cf 52%,
      #10d98b 100%
    );
}

.page-hero h1,
.hero .home-hero-title,
.hero .hero-lead-card h2,
.section:not(.section-navy) .section-heading h2,
.section:not(.section-navy) .card h3,
.section:not(.section-navy) .timeline-item h3,
.section:not(.section-navy) .newsletter h3,
.section:not(.section-navy) .metric-row strong,
.section:not(.section-navy) .info-card strong,
.section:not(.section-navy) .faq-button > span:first-child,
.section:not(.section-navy) .check-row p,
.section:not(.section-navy) .card[style*="font-weight"],
.form-card h2,
.success-message h2,
.article-hero h1,
.article-content h2,
.article-content h3,
.article-toc h3,
.article-sources h3,
.blog-body h3,
.blog-body h3 a,
.desktop-nav .nav-link,
.mobile-nav-grid .nav-link {
  background-image: var(--brand-text-gradient) !important;
  background-size: 100% 100% !important;
  background-position: 0 50% !important;
  background-repeat: no-repeat !important;
  animation: none !important;
}

/* Keep all dark sections and CTA areas readable. */
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy strong,
.section-navy .section-heading h2,
.section-navy .process-card h3,
.cta-panel h2,
.article-side-cta h3,
.footer h4 {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

/* =========================================================
   STATIC TEAL → CYAN TEXT GRADIENT
   Same simple screenshot-style gradient everywhere.
   No animation, no movement, no green shift.
   ========================================================= */
:root {
  --brand-text-gradient:
    linear-gradient(
      90deg,
      #064f68 0%,
      #087b8f 42%,
      #06bfd2 100%
    );
}

.page-hero h1,
.hero .home-hero-title,
.hero .hero-lead-card h2,
.section:not(.section-navy) .section-heading h2,
.section:not(.section-navy) .card h3,
.section:not(.section-navy) .timeline-item h3,
.section:not(.section-navy) .newsletter h3,
.section:not(.section-navy) .metric-row strong,
.section:not(.section-navy) .info-card strong,
.section:not(.section-navy) .faq-button > span:first-child,
.section:not(.section-navy) .check-row p,
.section:not(.section-navy) .card[style*="font-weight"],
.form-card h2,
.success-message h2,
.article-hero h1,
.article-content h2,
.article-content h3,
.article-toc h3,
.article-sources h3,
.blog-body h3,
.blog-body h3 a,
.desktop-nav .nav-link,
.mobile-nav-grid .nav-link {
  color: transparent !important;
  background: var(--brand-text-gradient) !important;
  background-size: 100% 100% !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: none !important;
  transition: none !important;
}

/* Keep dark backgrounds readable and unchanged. */
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy strong,
.section-navy .section-heading h2,
.section-navy .process-card h3,
.cta-panel h2,
.article-side-cta h3,
.footer h4,
.footer a,
.footer p,
.footer li {
  color: white !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
  transition: color .2s ease !important;
}

/* Buttons and interactive labels keep their intended contrast. */
.btn,
.btn *,
.eyebrow,
.hero-form-kicker,
.form-field label,
.form-field input,
.form-field select,
.form-field textarea,
.consent,
.faq-plus,
.text-link,
.label {
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
}

/* =========================================================
   HEADER MENU FIX
   Navigation is excluded from heading gradient treatment.
   ========================================================= */
.desktop-nav .nav-link,
.desktop-nav .nav-dropdown-toggle,
.mobile-nav-link,
.mobile-submenu-toggle,
.mobile-submenu-link,
.submenu-link {
  color: #07546a !important;
  background-color: transparent !important;
  background-image: none !important;
  background-size: auto !important;
  background-position: initial !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
  transition:
    color .2s ease,
    background-color .2s ease,
    transform .2s ease !important;
}

/* Compact and readable desktop hover/active state. */
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
  color: #008ea3 !important;
  background-color: #edfafa !important;
  background-image: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.desktop-nav .nav-link {
  min-height: 46px;
  border-radius: 11px;
  padding: 12px 13px;
}

/* Keep the active underline, but prevent a filled gradient block. */
.desktop-nav .nav-link::after {
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: linear-gradient(90deg, #087b8f, #06bfd2) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* Dropdown arrow remains visible and uses the menu text color. */
.nav-dropdown-toggle svg,
.mobile-submenu-toggle svg {
  color: currentColor !important;
  stroke: currentColor !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Dropdown panel and links remain clean and readable. */
.submenu {
  overflow: hidden;
}

.submenu-link:hover,
.submenu-link.active {
  color: #008ea3 !important;
  background-color: #edfafa !important;
  background-image: none !important;
  transform: translateX(2px);
}

/* Mobile navigation receives the same solid-text treatment. */
.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-submenu-toggle:hover,
.mobile-nav-group.open .mobile-submenu-toggle {
  color: #008ea3 !important;
  background-color: #edfafa !important;
  background-image: none !important;
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  color: #008ea3 !important;
  background-color: #f2fbfb !important;
  border-left-color: #06bfd2;
}

/* Header CTA buttons keep their intended foreground/background. */
.header-actions .btn,
.header-actions .btn * {
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

/* =========================================================
   FINAL STATIC HERO GRADIENT FIX
   One single gradient across the complete title.
   No separate word animation, shimmer or background movement.
   ========================================================= */
.hero .home-hero-title,
.page-hero h1,
.article-hero h1 {
  color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #064f68 0%,
      #087b8f 46%,
      #06bfd2 100%
    ) !important;
  background-size: 100% 100% !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Disable the older animated utility everywhere as a safety fallback. */
.text-gradient,
.page-hero .text-gradient,
.hero .text-gradient,
.article-hero .text-gradient {
  color: inherit !important;
  background: none !important;
  background-size: auto !important;
  background-position: initial !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: inherit !important;
  animation: none !important;
  transition: none !important;
}

/* Remove shimmer pseudo-elements from hero titles, if any older rule targets them. */
.hero .home-hero-title::before,
.hero .home-hero-title::after,
.page-hero h1::before,
.page-hero h1::after,
.article-hero h1::before,
.article-hero h1::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

/* =========================================================
   HEADER PRIMARY CTA COLOR RESTORE
   ========================================================= */
.header-actions .btn-primary {
  color: #06263a !important;
  border-color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9c2 48%,
      #10d98b 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9c2 48%,
      #10d98b 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: 0 12px 28px -15px rgba(0, 191, 210, .55);
}

.header-actions .btn-primary:hover {
  color: #041c2e !important;
  background:
    linear-gradient(
      90deg,
      #05b5ca 0%,
      #00c4b8 48%,
      #0ed17f 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #05b5ca 0%,
      #00c4b8 48%,
      #0ed17f 100%
    ) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -15px rgba(0, 191, 210, .65);
}

.header-actions .btn-primary *,
.header-actions .btn-primary svg {
  color: inherit !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

/* =========================================================
   ABOUT PAGE — WHO WE ARE RESPONSIVE LAYOUT
   ========================================================= */
.about-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, .84fr);
  gap: clamp(48px, 5vw, 78px);
  align-items: center;
}

.about-who-copy {
  min-width: 0;
  max-width: 720px;
}

.about-who-copy .section-heading {
  max-width: 690px;
}

.about-who-copy .section-heading h2 {
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.about-who-description {
  display: grid;
  gap: 18px;
  max-width: 690px;
  margin-top: 24px;
}

.about-who-description p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.about-pillar-card {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.about-pillar-card h3 {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .about-who-copy,
  .about-who-copy .section-heading,
  .about-who-description {
    max-width: 820px;
  }

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

@media (max-width: 820px) {
  .about-who-grid {
    gap: 34px;
  }

  .about-who-copy .section-heading h2 {
    font-size: clamp(35px, 7vw, 46px);
  }

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

  .about-pillar-card {
    min-height: 138px;
  }
}

@media (max-width: 520px) {
  .about-who-grid {
    gap: 28px;
  }

  .about-who-description {
    gap: 14px;
    margin-top: 20px;
  }

  .about-who-description p {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .about-pillar-card {
    min-height: auto;
    padding: 21px;
  }
}

/* =========================================================
   PRICING CARD CTA BUTTON FIX
   ========================================================= */
.pricing-grid .plan .btn-block {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 52px;
  margin-top: 26px !important;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Featured pricing plan */
.pricing-grid .plan.featured .btn-primary {
  color: #06263a !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9c2 48%,
      #10d98b 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9c2 48%,
      #10d98b 100%
    ) !important;
  box-shadow: 0 14px 30px -18px rgba(0, 191, 210, .7);
}

.pricing-grid .plan.featured .btn-primary:hover {
  color: #041c2e !important;
  background:
    linear-gradient(
      90deg,
      #05b5ca 0%,
      #00c4b8 48%,
      #0ed17f 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #05b5ca 0%,
      #00c4b8 48%,
      #0ed17f 100%
    ) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(0, 191, 210, .8);
}

/* Standard pricing plans */
.pricing-grid .plan .btn-outline {
  color: #07546a !important;
  border: 1px solid #b9e2e7 !important;
  background: #ffffff !important;
  background-image: none !important;
}

.pricing-grid .plan .btn-outline:hover {
  color: #008ea3 !important;
  border-color: #06bfd2 !important;
  background: #edfafa !important;
  background-image: none !important;
  transform: translateY(-2px);
}

/* Prevent global heading-gradient rules from affecting button text. */
.pricing-grid .plan .btn-block,
.pricing-grid .plan .btn-block * {
  -webkit-text-fill-color: currentColor !important;
  background-clip: border-box !important;
}

/* =========================================================
   FINAL WEBSITE-WIDE BUTTON COLOR SYSTEM
   No CTA/control uses a plain white background.
   ========================================================= */
:root {
  --button-primary-gradient:
    linear-gradient(90deg, #06bfd2 0%, #00c9c2 48%, #10d98b 100%);
  --button-primary-gradient-hover:
    linear-gradient(90deg, #05aec4 0%, #00baaf 48%, #0dc979 100%);
  --button-secondary-gradient:
    linear-gradient(90deg, #e5f9fc 0%, #e4fff2 100%);
  --button-secondary-gradient-hover:
    linear-gradient(90deg, #d4f5f9 0%, #d5fce8 100%);
  --button-whatsapp-gradient:
    linear-gradient(90deg, #03b96d 0%, #06d987 100%);
}

/* Primary CTA buttons, including Subscribe and all form submissions. */
.btn-primary,
.newsletter-form .btn-primary,
.hero-lead-card .btn-primary,
.form-card .btn-primary,
.header-actions .btn-primary,
.pricing-grid .plan.featured .btn-primary {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--button-primary-gradient) !important;
  background-image: var(--button-primary-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: 0 14px 30px -17px rgba(0, 191, 210, .68);
}

.btn-primary:hover,
.newsletter-form .btn-primary:hover,
.hero-lead-card .btn-primary:hover,
.form-card .btn-primary:hover,
.header-actions .btn-primary:hover,
.pricing-grid .plan.featured .btn-primary:hover {
  color: #031f2e !important;
  background: var(--button-primary-gradient-hover) !important;
  background-image: var(--button-primary-gradient-hover) !important;
  box-shadow: 0 18px 36px -17px rgba(0, 191, 210, .8);
}

/* Secondary buttons use a light teal-mint fill rather than white. */
.btn-outline,
.header-whatsapp,
.success-message .btn-outline,
.pricing-grid .plan .btn-outline {
  color: #07546a !important;
  border-color: #a8dfe5 !important;
  background: var(--button-secondary-gradient) !important;
  background-image: var(--button-secondary-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: 0 10px 24px -20px rgba(7, 84, 106, .5);
}

.btn-outline:hover,
.header-whatsapp:hover,
.success-message .btn-outline:hover,
.pricing-grid .plan .btn-outline:hover {
  color: #006f82 !important;
  border-color: #06bfd2 !important;
  background: var(--button-secondary-gradient-hover) !important;
  background-image: var(--button-secondary-gradient-hover) !important;
  box-shadow: 0 14px 28px -19px rgba(0, 191, 210, .55);
}

/* Buttons previously styled white on dark sections now use the brand gradient. */
.btn-white,
.cta-panel .btn-white,
.section-navy .btn-white {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--button-primary-gradient) !important;
  background-image: var(--button-primary-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: 0 14px 32px -16px rgba(0, 201, 194, .7);
}

.btn-white:hover,
.cta-panel .btn-white:hover,
.section-navy .btn-white:hover {
  color: #031f2e !important;
  background: var(--button-primary-gradient-hover) !important;
  background-image: var(--button-primary-gradient-hover) !important;
}

/* WhatsApp actions retain a distinct green treatment. */
.btn-whatsapp,
.floating-whatsapp {
  color: #ffffff !important;
  border-color: transparent !important;
  background: var(--button-whatsapp-gradient) !important;
  background-image: var(--button-whatsapp-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

.btn-whatsapp:hover,
.floating-whatsapp:hover {
  background: linear-gradient(90deg, #02aa63 0%, #05ca7d 100%) !important;
  background-image: linear-gradient(90deg, #02aa63 0%, #05ca7d 100%) !important;
}

/* Subscribe button: explicit size and guaranteed colored fill. */
.newsletter-form .btn-primary {
  min-width: 132px;
  min-height: 48px;
  border-radius: 11px;
  padding-inline: 22px;
  font-weight: 900;
}

/* Blog filters and chips use colored surfaces. */
.filter-btn,
.category-chip {
  color: #07546a !important;
  border-color: #b2e1e6 !important;
  background: var(--button-secondary-gradient) !important;
  background-image: var(--button-secondary-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

.filter-btn:hover,
.filter-btn.active,
.category-chip:hover,
.category-chip.active {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--button-primary-gradient) !important;
  background-image: var(--button-primary-gradient) !important;
}

/* Mobile menu and Back to Top controls also avoid white backgrounds. */
.menu-toggle,
.back-to-top {
  color: #07546a !important;
  border-color: #a8dfe5 !important;
  background: var(--button-secondary-gradient) !important;
  background-image: var(--button-secondary-gradient) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

.menu-toggle:hover,
.back-to-top:hover,
.back-to-top.visible:hover {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--button-primary-gradient) !important;
  background-image: var(--button-primary-gradient) !important;
}

/* FAQ controls receive a subtle tinted surface instead of plain white. */
.faq-button {
  background:
    linear-gradient(90deg, rgba(229, 249, 252, .8), rgba(228, 255, 242, .72))
    !important;
  background-image:
    linear-gradient(90deg, rgba(229, 249, 252, .8), rgba(228, 255, 242, .72))
    !important;
}

.faq-item.open .faq-button,
.faq-button:hover {
  background:
    linear-gradient(90deg, rgba(212, 245, 249, .95), rgba(213, 252, 232, .9))
    !important;
  background-image:
    linear-gradient(90deg, rgba(212, 245, 249, .95), rgba(213, 252, 232, .9))
    !important;
}

/* Protect all button labels/icons from site-wide heading gradient rules. */
.btn,
.btn *,
.filter-btn,
.filter-btn *,
.category-chip,
.category-chip *,
.menu-toggle,
.menu-toggle *,
.back-to-top,
.back-to-top *,
.faq-button,
.faq-button *,
.floating-whatsapp,
.floating-whatsapp * {
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

.btn:disabled,
button:disabled {
  filter: saturate(.72);
  opacity: .72;
}

@media (max-width: 620px) {
  .newsletter-form .btn-primary {
    width: 100%;
  }
}

/* =========================================================
   REAL WHATSAPP BRAND ICON — WEBSITE-WIDE
   ========================================================= */
.site-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: -0.15em;
}

.whatsapp-brand-icon {
  overflow: visible;
  stroke: none !important;
  shape-rendering: geometricPrecision;
}

/* Brand-green icon on light or outlined WhatsApp controls. */
.header-whatsapp .whatsapp-brand-icon,
.mobile-menu .btn-outline .whatsapp-brand-icon,
.info-card .whatsapp-brand-icon,
.footer-whatsapp-link .whatsapp-brand-icon {
  color: #25D366 !important;
}

/* White brand glyph on green WhatsApp buttons. */
.btn-whatsapp .whatsapp-brand-icon,
.floating-whatsapp .whatsapp-brand-icon {
  color: #ffffff !important;
}

.header-whatsapp,
.btn-whatsapp,
.floating-whatsapp,
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-whatsapp-link {
  width: fit-content;
}

.footer-whatsapp-link .whatsapp-brand-icon {
  width: 17px;
  height: 17px;
}

@media (max-width: 620px) {
  .header-whatsapp .whatsapp-brand-icon,
  .btn-whatsapp .whatsapp-brand-icon,
  .floating-whatsapp .whatsapp-brand-icon {
    flex-shrink: 0;
  }
}

/* =========================================================
   FAQ WHITE BACKGROUND RESTORE
   FAQ rows are content panels, not colored CTA buttons.
   ========================================================= */
.faq,
.faq-item,
.faq-button,
.faq-answer,
.faq-item.open .faq-button,
.faq-button:hover,
.faq-button:focus-visible {
  background: #ffffff !important;
  background-image: none !important;
}

.faq {
  border-color: var(--soft-border);
  box-shadow: 0 18px 48px -34px rgba(6, 38, 58, .24);
}

.faq-item {
  border-bottom-color: var(--soft-border);
}

.faq-plus {
  color: #06aebf !important;
  border-color: #cfe9ec !important;
  background: #ffffff !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

.faq-button:focus-visible {
  outline: 3px solid rgba(6, 191, 210, .18);
  outline-offset: -3px;
}

/* Prevent the website-wide button color system from tinting FAQ content. */
.faq .faq-button,
.faq .faq-button *,
.faq .faq-answer {
  background-image: none !important;
}

/* =========================================================
   HEADER TOP CONTACT BAR
   ========================================================= */
.header-topbar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(6, 191, 210, .14);
  color: #dffcff;
  background:
    linear-gradient(
      90deg,
      #063e55 0%,
      #066d7d 48%,
      #04a99e 100%
    );
}

.header-topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-cta,
.topbar-contact-links,
.topbar-contact-link {
  display: inline-flex;
  align-items: center;
}

.topbar-cta {
  gap: 9px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .025em;
  white-space: nowrap;
}

.topbar-status-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #55f2a5;
  box-shadow: 0 0 0 4px rgba(85, 242, 165, .14);
}

.topbar-status-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(85, 242, 165, .32);
  border-radius: inherit;
}

.topbar-contact-links {
  gap: 14px;
  min-width: 0;
}

.topbar-contact-link {
  gap: 7px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.topbar-contact-link:hover {
  color: #a9ffd3;
  transform: translateY(-1px);
}

.topbar-contact-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #72f1cc;
}

.topbar-contact-link strong {
  font-weight: 850;
}

.topbar-contact-label {
  color: rgba(255, 255, 255, .72);
  font-weight: 650;
}

.topbar-divider {
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, .24);
}

.site-header.scrolled .header-topbar {
  box-shadow: inset 0 -1px rgba(255, 255, 255, .04);
}

@media (max-width: 820px) {
  .header-topbar-inner {
    min-height: 36px;
    gap: 14px;
  }

  .topbar-cta {
    font-size: 11px;
  }

  .topbar-contact-links {
    gap: 10px;
  }

  .topbar-contact-link {
    font-size: 11px;
  }

  .topbar-contact-label {
    display: none;
  }
}

@media (max-width: 620px) {
  .header-topbar-inner {
    min-height: 34px;
    justify-content: center;
    padding-block: 6px;
  }

  .topbar-cta {
    display: none;
  }

  .topbar-contact-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .topbar-contact-link {
    gap: 5px;
    font-size: 10.5px;
  }

  .topbar-contact-link svg {
    width: 14px;
    height: 14px;
  }

  .topbar-divider {
    height: 15px;
  }
}

@media (max-width: 410px) {
  .topbar-contact-link strong {
    font-size: 10px;
  }

  .topbar-contact-link:first-child strong {
    max-width: 105px;
  }

  .topbar-contact-link:last-child strong {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* =========================================================
   TOP BAR SIZE + STICKY BEHAVIOUR CORRECTION
   Top contact bar scrolls away; only main navigation sticks.
   ========================================================= */
.header-stack {
  position: relative;
  z-index: 100;
}

.header-topbar {
  position: relative !important;
  top: auto !important;
  z-index: 1;
}

.header-topbar-inner {
  min-height: 44px;
}

.topbar-cta {
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.2;
}

.topbar-status-dot {
  width: 9px;
  height: 9px;
}

.topbar-contact-links {
  gap: 17px;
}

.topbar-contact-link {
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.2;
}

.topbar-contact-link svg {
  width: 17px;
  height: 17px;
}

.topbar-contact-link strong {
  font-size: 13.5px;
}

.topbar-contact-label {
  font-size: 13px;
}

.topbar-divider {
  height: 20px;
}

/* Only the main navigation header is sticky. */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100;
}

/* The topbar is outside .site-header, so it never follows the sticky state. */
.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

@media (max-width: 820px) {
  .header-topbar-inner {
    min-height: 41px;
  }

  .topbar-cta {
    font-size: 12.5px;
  }

  .topbar-contact-link,
  .topbar-contact-link strong {
    font-size: 12.5px;
  }

  .topbar-contact-link svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 620px) {
  .header-topbar-inner {
    min-height: 39px;
    padding-block: 7px;
  }

  .topbar-contact-link,
  .topbar-contact-link strong {
    font-size: 11.5px;
  }

  .topbar-contact-link svg {
    width: 15px;
    height: 15px;
  }

  .topbar-divider {
    height: 17px;
  }
}

@media (max-width: 410px) {
  .topbar-contact-link strong {
    font-size: 10.8px;
  }
}

/* =========================================================
   FINAL HEADER SETUP
   Top contact bar removed; main header remains sticky.
   ========================================================= */
.header-stack,
.header-topbar {
  display: none !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000;
  width: 100%;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px -24px rgba(6, 38, 58, .45);
  backdrop-filter: blur(18px);
}

/* =========================================================
   CONTACT CARD WHATSAPP ICON VISIBILITY FIX
   ========================================================= */
.info-card .icon-box .whatsapp-brand-icon,
.info-card [class*="icon"] .whatsapp-brand-icon {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.info-card .icon-box:has(.whatsapp-brand-icon) {
  background: linear-gradient(135deg, #25D366 0%, #00b97c 100%) !important;
}

.info-card .icon-box .whatsapp-brand-icon path {
  fill: currentColor !important;
  stroke: none !important;
}

/* =========================================================
   LIVE OFFICE ADDRESS
   ========================================================= */
.footer-address-link {
  display: inline-flex;
  max-width: 330px;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.footer-address-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #39d7c7;
}

.footer-address-link span {
  overflow-wrap: anywhere;
}

.info-card strong {
  overflow-wrap: anywhere;
}

.info-card a,
.info-list > a {
  display: block;
}

@media (max-width: 620px) {
  .footer-address-link {
    max-width: 100%;
  }
}

/* =========================================================
   LOGO VISIBILITY — INLINE ASSET + FORCE-VISIBLE FALLBACK
   ========================================================= */
.brand-image-link {
  position: relative;
  display: inline-flex !important;
  min-width: 158px;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-logo,
.site-logo-header,
.site-logo-footer {
  display: block !important;
  height: auto !important;
  min-height: 1px;
  object-fit: contain !important;
  object-position: left center !important;
  opacity: 1 !important;
  visibility: visible !important;
  clip: auto !important;
  clip-path: none !important;
  transform: none;
}

.site-logo-header {
  width: clamp(190px, 15vw, 235px) !important;
  max-width: 235px;
  max-height: 50px !important;
  filter: none !important;
}

.site-logo-footer {
  width: min(100%, 265px) !important;
  max-height: 58px !important;
  filter: drop-shadow(0 8px 20px rgba(0, 191, 212, .13)) !important;
}

.site-header .brand-image-link,
.footer .brand-image-link {
  background: transparent !important;
  -webkit-text-fill-color: initial !important;
}

@media (max-width: 760px) {
  .brand-image-link {
    min-width: 150px;
  }

  .site-logo-header {
    width: 178px !important;
    max-height: 43px !important;
  }
}

@media (max-width: 420px) {
  .brand-image-link {
    min-width: 138px;
  }

  .site-logo-header {
    width: 158px !important;
  }
}

/* =========================================================
   FOOTER CONTACT ICON ENHANCEMENT
   ========================================================= */
.footer-contact-list {
  display: grid;
  gap: 11px;
}

.footer-contact-list li {
  margin: 0;
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.footer-contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #39d7c7;
}

.footer-contact-link span {
  overflow-wrap: anywhere;
}

.footer-contact-static {
  color: rgba(255,255,255,.92);
}

.footer-contact-static:hover {
  color: rgba(255,255,255,.92);
}

.footer-whatsapp-link svg {
  color: #25D366;
}

.footer-address-link {
  max-width: 100%;
}

@media (max-width: 620px) {
  .footer-contact-link {
    gap: 9px;
  }
}

/* =========================================================
   FLOATING BUTTON POSITION FIX
   WhatsApp left side + Back to Top in sequence
   ========================================================= */
.floating-whatsapp {
  left: 18px !important;
  right: auto !important;
  bottom: 18px !important;
}

.back-to-top {
  left: 18px !important;
  right: auto !important;
  bottom: 84px !important;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    left: 12px !important;
    bottom: 12px !important;
  }

  .back-to-top {
    left: 12px !important;
    bottom: 78px !important;
  }
}

/* =========================================================
   FINAL FLOATING BUTTON POSITIONS
   WhatsApp left, Back to Top right
   ========================================================= */
.floating-whatsapp {
  left: 18px !important;
  right: auto !important;
  bottom: 18px !important;
}

.back-to-top {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
  }

  .back-to-top {
    left: auto !important;
    right: 12px !important;
    bottom: 12px !important;
  }
}

/* =========================================================
   FLOATING WHATSAPP: ICON FIRST, TEXT ON HOVER
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  z-index: 80;
  left: 18px !important;
  right: auto !important;
  bottom: 18px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 52px;
  height: 52px;
  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 999px;
  color: white;
  background: var(--success);
  box-shadow: 0 16px 35px -14px rgba(37,211,102,.65);
  font-size: 13px;
  font-weight: 900;
  transition:
    width .28s ease,
    transform .2s ease,
    box-shadow .2s ease,
    padding .28s ease,
    justify-content .28s ease;
}

.floating-whatsapp span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin-left: 0;
  transition:
    max-width .24s ease,
    opacity .2s ease,
    margin-left .24s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  width: 180px;
  justify-content: flex-start;
  padding: 0 18px;
  transform: translateY(-3px);
}

.floating-whatsapp:hover span,
.floating-whatsapp:focus-visible span {
  max-width: 110px;
  opacity: 1;
  margin-left: 10px;
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37,211,102,.22);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    width: 164px;
  }

  .floating-whatsapp:hover span,
  .floating-whatsapp:focus-visible span {
    max-width: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp,
  .floating-whatsapp span {
    transition: none;
  }
}

/* =========================================================
   HOME PAGE: GROWTH PARTNER POINTS SIZE INCREASE
   ========================================================= */
.trust-row {
  padding: 22px 24px;
}

.trust-row .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.trust-row p {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

@media (max-width: 900px) {
  .trust-row {
    padding: 20px 22px;
  }

  .trust-row p {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .trust-row {
    padding: 18px 18px;
  }

  .trust-row p {
    font-size: 16px;
  }
}

/* =========================================================
   WEBSITE-WIDE PLUS JAKARTA SANS TYPOGRAPHY
   ========================================================= */
html,
body,
button,
input,
select,
textarea,
a,
p,
span,
li,
label,
small,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.nav-link,
.mobile-nav-link,
.submenu-link,
.mobile-submenu-link,
.eyebrow,
.label,
.card,
.footer,
.form-card,
.info-card {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif !important;
}

/* =========================================================
   HOMEPAGE MAIN HEADING SIZE
   Matches "Let’s Grow Your Business"
   ========================================================= */
.home-hero-title {
  font-size: clamp(27px, 2.5vw, 35px) !important;
  line-height: 1.08 !important;
}

/* =========================================================
   HOMEPAGE HERO HEADING — MATCH GROWTH PARTNER HEADING
   ========================================================= */
.home-hero-title {
  font-size: clamp(32px, 4vw, 50px) !important;
  line-height: 1.08 !important;
}

/* =========================================================
   HOMEPAGE HERO HEADING — EXACTLY TWO LINES
   ========================================================= */
.home-hero-title {
  max-width: 760px !important;
}

.home-hero-title .hero-title-line {
  display: block;
}

@media (min-width: 901px) {
  .home-hero-title .hero-title-line {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .home-hero-title .hero-title-line {
    white-space: normal;
  }
}

/* =========================================================
   SITE-WIDE HEADING CLIPPING / DESCENDER FIX
   Prevents right-edge cuts and hidden g/y/p/q/j descenders.
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 100%;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Extra paint room for letters extending below the baseline. */
h1,
h2 {
  padding-bottom: .13em;
  margin-bottom: -.13em;
}

h3,
h4,
h5,
h6 {
  padding-bottom: .09em;
  margin-bottom: -.09em;
}

/* Flex/grid text children must be allowed to shrink instead of clipping. */
.hero-copy,
.page-hero-inner,
.section-heading,
.section-heading-row,
.section-heading-row > *,
.card,
.info-card,
.timeline-item,
.timeline-item > *,
.footer-main > * {
  min-width: 0;
}

/* Keep all major gradient headings safely painted. */
.page-hero h1,
.hero .home-hero-title,
.hero .hero-lead-card h2,
.section-heading h2,
.form-card h2,
.article-hero h1,
.article-content h2,
.article-content h3 {
  overflow: visible !important;
  padding-inline: .035em;
  margin-inline: -.035em;
}

/* Homepage hero: retain two lines on roomy desktop without cutting "impact". */
.hero .hero-copy .home-hero-title {
  width: 100%;
  max-width: 100% !important;
  padding-right: .14em;
  font-size: clamp(32px, 3.3vw, 46px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.055em;
}

.home-hero-title .hero-title-line {
  max-width: 100%;
}

/* Fixed two-line presentation only where sufficient width exists. */
@media (min-width: 1200px) {
  .home-hero-title .hero-title-line {
    white-space: nowrap !important;
  }
}

/* Never force a line beyond its column on medium/tablet screens. */
@media (max-width: 1199px) {
  .home-hero-title .hero-title-line {
    white-space: normal !important;
  }
}

/* Section headings get safe line height for letters such as g and y. */
.section-heading h2,
.hero-form-head h2,
.form-card h2 {
  line-height: 1.14 !important;
}

@media (max-width: 620px) {
  .hero .hero-copy .home-hero-title {
    max-width: 100% !important;
    padding-right: .08em;
    font-size: clamp(32px, 10vw, 44px) !important;
    line-height: 1.15 !important;
  }

  h1,
  h2 {
    padding-bottom: .15em;
    margin-bottom: -.15em;
  }
}

/* =========================================================
   WEBSITE-WIDE HEADING TITLE CASE
   Every heading word begins with a capital letter.
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize !important;
}

/* =========================================================
   DEDICATED FAQS PAGE
   ========================================================= */
.faq-page-hero .hero-copy {
  align-self: center;
}

.faq-page-hero .hero-copy h1 {
  max-width: 720px;
}

@media (max-width: 900px) {
  .faq-page-hero .hero-copy {
    text-align: left;
  }
}

/* =========================================================
   FINAL UNIFORM LARGE HEADING SIZE — WEBSITE-WIDE
   Matches "Your Complete Marketing And Growth Partner"
   ========================================================= */
.home-hero-title,
.page-hero h1,
.faq-page-hero h1,
.article-hero h1,
.section-heading h2,
.cta-panel h2 {
  font-size: clamp(32px, 4vw, 50px) !important;
  line-height: 1.08 !important;
  max-width: 100% !important;
}

/* Safe mobile consistency for every large heading. */
@media (max-width: 620px) {
  .home-hero-title,
  .page-hero h1,
  .faq-page-hero h1,
  .article-hero h1,
  .section-heading h2,
  .cta-panel h2 {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }
}

/* =========================================================
   FAQS PAGE HERO HEADING GRADIENT FIX
   Matches all other major website headings.
   ========================================================= */
.faq-page-hero h1 {
  color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #064f68 0%,
      #087b8f 46%,
      #06bfd2 100%
    ) !important;
  background-size: 100% 100% !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: none !important;
  transition: none !important;
}

/* =========================================================
   FOOTER SERVICES MOBILE LAYOUT FIX
   ========================================================= */
.footer-services-links a {
  display: block;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 620px) {
  .footer-main.footer-main-compact .footer-services-column {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .footer-services-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 9px;
    width: 100%;
  }

  .footer-services-links li {
    min-width: 0;
    margin: 0;
  }

  .footer-services-links a {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .footer-services-links {
    column-gap: 12px;
  }

  .footer-services-links a {
    font-size: 12px;
  }
}

/* =========================================================
   FOOTER SERVICES — DESKTOP + TABLET + MOBILE FIX
   ========================================================= */
@media (min-width: 1121px) {
  .footer-main.footer-main-compact {
    grid-template-columns:
      minmax(280px, 1.2fr)
      minmax(360px, 1.45fr)
      minmax(150px, .65fr)
      minmax(230px, 1fr);
    gap: 32px;
  }

  .footer-services-column {
    min-width: 0;
  }

  .footer-services-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 8px;
    width: 100%;
  }

  .footer-services-links li {
    min-width: 0;
    margin: 0;
  }

  .footer-services-links a {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .footer-main.footer-main-compact .footer-services-column {
    grid-column: 2 / 4;
    min-width: 0;
  }

  .footer-services-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 8px;
    width: 100%;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .footer-main.footer-main-compact .footer-services-column {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .footer-services-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 8px;
    width: 100%;
  }
}

/* =========================================================
   ABOUT PAGE — REDUCED HERO-TO-WHO-WE-ARE GAP
   ========================================================= */
.about-who-section {
  padding-top: 36px !important;
  padding-bottom: 72px;
}

@media (max-width: 900px) {
  .about-who-section {
    padding-top: 30px !important;
    padding-bottom: 62px;
  }
}

@media (max-width: 620px) {
  .about-who-section {
    padding-top: 24px !important;
    padding-bottom: 56px;
  }
}

/* =========================================================
   ABOUT WHO-WE-ARE + PILLAR CARDS TOP ALIGNMENT
   ========================================================= */
.about-who-section .about-who-grid {
  align-items: start !important;
}

.about-who-section .about-who-copy,
.about-who-section .about-pillars-grid {
  align-self: start;
}

/* =========================================================
   SOCIAL ICON ORDER + NON-CLICKABLE PLACEHOLDERS
   ========================================================= */
.social-link-disabled {
  cursor: default;
  opacity: .72;
}

.social-link-disabled:hover {
  transform: none;
}

/* =========================================================
   LEGAL POLICY PAGES
   ========================================================= */
.legal-page-section {
  padding-top: 46px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 210, 190, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.legal-meta-card,
.legal-toc {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 45px -36px rgba(2, 54, 73, .45);
}

.legal-meta-card {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(0, 191, 212, .08), rgba(0, 220, 150, .08)),
    #fff;
}

.legal-meta-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.legal-meta-list > div {
  display: grid;
  gap: 4px;
  padding-top: 13px;
  border-top: 1px solid rgba(5, 112, 134, .12);
}

.legal-meta-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-meta-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.legal-toc {
  padding: 20px;
}

.legal-toc h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.legal-toc-links {
  display: grid;
  gap: 3px;
  max-height: 54vh;
  overflow: auto;
  padding-right: 5px;
  scrollbar-width: thin;
}

.legal-toc-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.legal-toc-link:hover {
  color: #007f91;
  background: rgba(0, 191, 212, .08);
  transform: translateX(3px);
}

.legal-toc-level-3 {
  padding-left: 20px;
  font-size: 11.5px;
}

.legal-document {
  padding: clamp(26px, 4vw, 52px);
  overflow: visible;
  border-radius: 28px;
}

.legal-document-header {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 191, 212, .18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 191, 212, .07), rgba(0, 220, 150, .06));
}

.legal-document-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.legal-status {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #007d8e;
  background: rgba(0, 191, 212, .11);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-document-body {
  color: #355b70;
  font-size: 15px;
  line-height: 1.84;
}

.legal-document-body h2,
.legal-document-body h3 {
  scroll-margin-top: 118px;
  overflow: visible !important;
  text-transform: none !important;
}

.legal-document-body h2 {
  margin: 42px 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(5, 112, 134, .14);
  color: #06697e;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.3;
}

.legal-document-body h2:first-child {
  margin-top: 0;
}

.legal-document-body h3 {
  margin: 28px 0 12px;
  color: #087f92;
  font-size: 19px;
  line-height: 1.4;
}

.legal-document-body p {
  margin: 0 0 16px;
}

.legal-document-body .legal-intro {
  color: #244f64;
  font-size: 16px;
}

.legal-document-body a {
  color: #008ca0;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(0, 170, 190, .35);
  text-underline-offset: 3px;
}

.legal-list {
  display: grid;
  gap: 9px;
  margin: 4px 0 22px;
  padding-left: 24px;
}

.legal-list li {
  padding-left: 4px;
}

.legal-list li::marker {
  color: #00afba;
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 17px;
}

.legal-links a {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }

  .legal-toc-links {
    max-height: 280px;
  }
}

@media (max-width: 680px) {
  .legal-page-section {
    padding-top: 28px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .legal-document-body {
    font-size: 14px;
    line-height: 1.78;
  }

  .legal-document-body h2 {
    margin-top: 34px;
    font-size: 22px;
  }

  .legal-links {
    justify-content: center;
    gap: 8px 14px;
  }
}



/* =========================================================
   SEO-READY STATIC PAGES, BREADCRUMBS & LOCAL LANDING PAGES
   ========================================================= */
html[data-prerendered="true"] .reveal {
  opacity: 1;
  transform: none;
}

.breadcrumbs {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 13px;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--muted); }
.breadcrumbs a { color: var(--royal); font-weight: 700; }
.breadcrumbs span { color: var(--muted); }

.service-detail-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(280px,.75fr); gap: 24px; align-items: start; }
.service-detail-main h2, .local-intro-card h2 { margin-top: 16px; font-size: clamp(26px,3vw,38px); line-height: 1.16; }
.service-local-card { position: sticky; top: 110px; }
.service-bullet-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.service-bullet-list li { position: relative; padding-left: 30px; color: var(--text); line-height: 1.65; }
.service-bullet-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.service-process-list { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.service-process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.service-process-list span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--cyan-soft); color: var(--royal); font-size: 12px; font-weight: 900; }
.service-process-list p { margin: 0; }
.local-seo-strip { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr); gap: 32px; align-items: center; padding: 34px; border: 1px solid var(--border); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.local-seo-strip h2 { margin-top: 14px; font-size: clamp(30px,4vw,48px); }
.local-seo-actions { display: grid; gap: 16px; justify-items: start; }

.cookie-banner { position: fixed; z-index: 120; left: 18px; right: 18px; bottom: 18px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { max-width: 1080px; margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: 0 24px 70px rgba(0,36,60,.22); }
.cookie-banner p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-actions .btn { min-height: 42px; padding: 10px 15px; font-size: 12px; }
.footer-cookie-settings { border: 0; padding: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.footer-cookie-settings:hover { color: white; }
.consent a { text-decoration: underline; }

@media (max-width: 900px) {
  .service-detail-grid, .local-seo-strip, .cookie-banner-inner { grid-template-columns: 1fr; }
  .service-local-card { position: static; }
}
@media (max-width: 620px) {
  .breadcrumbs { padding-inline: 18px; }
  .local-seo-strip { padding: 24px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-banner-inner { padding: 16px; }
  .cookie-actions { display: grid; width: 100%; }
}

/* =========================================================
   BREADCRUMB / PAGE HERO WHITE GAP FIX
   ========================================================= */
.breadcrumbs {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding:
    10px
    max(24px, calc((100% - 1220px) / 2 + 24px))
    5px !important;
  border: 0;
  background: var(--offwhite);
}

.breadcrumbs + .page-hero {
  margin-top: 0 !important;
  border-top: 0;
}

.breadcrumbs + .page-hero .page-hero-inner {
  padding-top: 42px;
}

@media (max-width: 900px) {
  .breadcrumbs {
    padding: 9px 20px 4px !important;
  }

  .breadcrumbs + .page-hero .page-hero-inner {
    padding-top: 36px;
  }
}

@media (max-width: 620px) {
  .breadcrumbs {
    padding: 8px 16px 3px !important;
    font-size: 12px;
  }

  .breadcrumbs + .page-hero .page-hero-inner {
    padding-top: 30px;
  }
}

/* =========================================================
   BREADCRUMB MERGED INTO PAGE HERO PILL
   Removes the separate breadcrumb strip on every page.
   ========================================================= */
.breadcrumbs {
  display: none !important;
}

.page-hero .page-hero-inner {
  padding-top: 58px !important;
}

.page-hero-breadcrumb {
  gap: 8px;
  text-transform: none !important;
  letter-spacing: .035em !important;
  font-size: 12px !important;
}

.page-hero-breadcrumb a {
  color: var(--royal);
  font-weight: 900;
}

.page-hero-breadcrumb a:hover {
  color: var(--cyan);
}

.page-hero-breadcrumb .breadcrumb-separator {
  color: var(--muted);
  font-weight: 700;
}

.page-hero-breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 900px) {
  .page-hero .page-hero-inner {
    padding-top: 46px !important;
  }
}

@media (max-width: 620px) {
  .page-hero .page-hero-inner {
    padding-top: 36px !important;
  }

  .page-hero-breadcrumb {
    font-size: 11px !important;
    gap: 7px;
  }
}

/* =========================================================
   BREADCRUMB PILL — THEME GRADIENT TEXT
   ========================================================= */
.page-hero .page-hero-breadcrumb {
  border-color: rgba(0, 191, 212, .28) !important;
  background:
    linear-gradient(
      105deg,
      rgba(255,255,255,.96) 0%,
      rgba(226,250,247,.94) 100%
    ) !important;
  box-shadow: 0 8px 24px -20px rgba(0, 154, 177, .65);
}

.page-hero .page-hero-breadcrumb a,
.page-hero .page-hero-breadcrumb [aria-current="page"] {
  color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #07546a 0%,
      #008ca5 52%,
      #00bfd4 100%
    ) !important;
  background-size: 100% 100% !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 900;
  animation: none !important;
}

.page-hero .page-hero-breadcrumb a:hover {
  background:
    linear-gradient(
      90deg,
      #00a7be 0%,
      #00d29a 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.page-hero .page-hero-breadcrumb .breadcrumb-separator {
  color: #00a8bd !important;
  -webkit-text-fill-color: #00a8bd !important;
  font-weight: 900;
}

/* =========================================================
   BOOK FREE CONSULTATION PAGE
   ========================================================= */
.consultation-page-section {
  padding-top: 58px;
}

.consultation-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: start;
}

.consultation-form-card {
  padding: 34px;
}

.consultation-form-intro {
  margin-bottom: 26px;
}

.consultation-form-intro h2,
.consultation-overview-card h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.consultation-form-intro p,
.consultation-overview-card p {
  margin-top: 10px;
}

.consultation-side-panel,
.consultation-steps {
  display: grid;
  gap: 14px;
}

.consultation-overview-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(0,210,154,.13), transparent 46%),
    linear-gradient(145deg, #ffffff 0%, #f2fcfc 100%);
}

.consultation-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.consultation-step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #00bfd4 0%, #00d29a 100%);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.consultation-step h3 {
  margin: 2px 0 6px;
  font-size: 18px;
}

.consultation-contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.consultation-contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.consultation-contact-card a:hover {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .consultation-page-layout {
    grid-template-columns: 1fr;
  }

  .consultation-side-panel {
    grid-template-columns: 1fr 1fr;
  }

  .consultation-overview-card,
  .consultation-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .consultation-page-section {
    padding-top: 38px;
  }

  .consultation-form-card {
    padding: 22px;
  }

  .consultation-side-panel {
    grid-template-columns: 1fr;
  }

  .consultation-overview-card,
  .consultation-contact-card {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .consultation-step {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .consultation-step-number {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   SERVICES MEGA MENU + MARKETS MENU
   ========================================================= */
.mega-dropdown .submenu-mega {
  left: 50%;
  width: min(780px, calc(100vw - 72px));
  min-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 10px;
  padding: 16px;
  transform: translate(-31%, 8px) scale(.98);
}

.mega-dropdown:hover .submenu-mega,
.mega-dropdown:focus-within .submenu-mega,
.mega-dropdown.open .submenu-mega {
  transform: translate(-31%, 0) scale(1);
}

.submenu-mega .submenu-link {
  min-height: 46px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .mobile-nav-group.services-menu.open .mobile-submenu {
    max-height: 1100px;
  }

  .mobile-nav-group.services-menu .mobile-submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
  }
}

@media (max-width: 620px) {
  .mobile-nav-group.services-menu .mobile-submenu {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MAIN MENU + SUBMENU — EXACT TYPOGRAPHY MATCH
   ========================================================= */
.desktop-nav .nav-link,
.desktop-nav .nav-dropdown-toggle,
.desktop-nav .submenu-link,
.desktop-nav .submenu-mega .submenu-link {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
}

.desktop-nav .nav-link,
.desktop-nav .nav-dropdown-toggle {
  min-height: 46px !important;
  padding: 11px 12px !important;
}

.desktop-nav .submenu-link,
.desktop-nav .submenu-mega .submenu-link {
  min-height: 46px !important;
  padding: 11px 13px !important;
}

/* Keep the three-column mega menu balanced after matching font sizes. */
.submenu-mega {
  column-gap: 12px !important;
  row-gap: 5px !important;
}

/* Mobile main menu and submenu use the same typography too. */
.mobile-nav-link,
.mobile-submenu-toggle,
.mobile-submenu-link,
.mobile-nav-group.services-menu .mobile-submenu-link {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
}

/* =========================================================
   TEXT COLOUR ONLY — ORIGINAL THEME PRESERVED
   ========================================================= */

/* Headings and important labels use the existing teal-to-cyan brand gradient. */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .faq-button > span:first-child,
  .page-hero-breadcrumb a,
  .page-hero-breadcrumb [aria-current="page"]
) {
  color: transparent !important;
  background-image:
    linear-gradient(
      90deg,
      #07546a 0%,
      #008ea3 52%,
      #00bfd4 100%
    ) !important;
  background-size: 100% 100% !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: none !important;
}

/* Standard light-background copy uses deep brand teal instead of black. */
:where(
  body,
  p,
  li,
  dt,
  dd,
  label,
  small,
  blockquote,
  figcaption,
  .lead,
  .card p,
  .info-card p,
  .timeline-item p,
  .article-content p,
  .article-content li,
  .legal-document-body,
  .legal-document-body p,
  .legal-document-body li,
  .faq-answer,
  .faq-answer div,
  .field-help,
  .form-submit-status,
  .consent,
  .consent a,
  .service-bullet-list li,
  .service-process-list p
) {
  color: #426f7d !important;
}

/* Navigation and links use the existing brand teal palette. */
:where(
  .nav-link,
  .nav-dropdown-toggle,
  .submenu-link,
  .mobile-nav-link,
  .mobile-submenu-toggle,
  .mobile-submenu-link,
  .text-link,
  .page-hero-breadcrumb .breadcrumb-separator
) {
  color: #07546a !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Form text stays readable and theme-aligned. */
input,
select,
textarea,
option {
  color: #07546a !important;
  -webkit-text-fill-color: #07546a !important;
}

input::placeholder,
textarea::placeholder {
  color: #78939b !important;
  opacity: 1;
}

/* Keep all existing button backgrounds and component styling unchanged. */
.btn-primary,
.btn-primary *,
.btn-whatsapp,
.btn-whatsapp *,
button[type="submit"],
button[type="submit"] * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
}

.btn-outline,
.btn-white {
  color: #07546a !important;
  -webkit-text-fill-color: #07546a !important;
}

/* Preserve the original dark-section appearance and readability. */
:where(
  .section-navy h1,
  .section-navy h2,
  .section-navy h3,
  .section-navy h4,
  .section-navy h5,
  .section-navy h6,
  .section-navy p,
  .section-navy li,
  .section-navy a:not(.btn),
  .cta-panel h1,
  .cta-panel h2,
  .cta-panel h3,
  .cta-panel p,
  .footer h1,
  .footer h2,
  .footer h3,
  .footer h4,
  .footer h5,
  .footer h6,
  .footer p,
  .footer li,
  .footer a:not(.btn),
  .footer button:not(.btn),
  .header-topbar,
  .header-topbar *
) {
  color: #ffffff !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Small accents and icons remain in the existing cyan theme. */
:where(
  .eyebrow,
  .label,
  .hero-form-kicker,
  .faq-plus,
  .icon-box,
  .service-process-list span,
  .consultation-step-number
) {
  color: #00a8bd !important;
  -webkit-text-fill-color: currentColor !important;
}

/* =========================================================
   FINAL SITE-WIDE BUTTON VISIBILITY RESTORE
   Restores button surfaces accidentally removed by text rules.
   ========================================================= */
:root {
  --final-primary-button:
    linear-gradient(90deg, #06bfd2 0%, #00c9c2 48%, #10d98b 100%);
  --final-primary-button-hover:
    linear-gradient(90deg, #05aec4 0%, #00baaf 48%, #0dc979 100%);
  --final-secondary-button:
    linear-gradient(90deg, #e5f9fc 0%, #e4fff2 100%);
  --final-secondary-button-hover:
    linear-gradient(90deg, #d4f5f9 0%, #d5fce8 100%);
}

/* Every primary CTA and form button. */
.btn-primary,
a.btn-primary,
button.btn-primary,
button[type="submit"].btn-primary,
.newsletter-form .btn-primary,
.hero-lead-card .btn-primary,
.form-card .btn-primary,
.header-actions .btn-primary,
.pricing-grid .plan.featured .btn-primary {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--final-primary-button) !important;
  background-image: var(--final-primary-button) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #05283a !important;
  box-shadow: 0 14px 30px -17px rgba(0, 191, 210, .68) !important;
  opacity: 1 !important;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
button[type="submit"].btn-primary:hover,
.newsletter-form .btn-primary:hover,
.hero-lead-card .btn-primary:hover,
.form-card .btn-primary:hover,
.header-actions .btn-primary:hover,
.pricing-grid .plan.featured .btn-primary:hover {
  color: #031f2e !important;
  background: var(--final-primary-button-hover) !important;
  background-image: var(--final-primary-button-hover) !important;
  -webkit-text-fill-color: #031f2e !important;
  box-shadow: 0 18px 36px -17px rgba(0, 191, 210, .8) !important;
}

/* Keep primary button labels and icons visible. */
.btn-primary *,
a.btn-primary *,
button.btn-primary *,
button[type="submit"].btn-primary * {
  color: inherit !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Secondary / outline buttons must not appear plain white. */
.btn-outline,
a.btn-outline,
button.btn-outline,
.header-whatsapp,
.success-message .btn-outline,
.pricing-grid .plan .btn-outline {
  color: #07546a !important;
  border-color: #a8dfe5 !important;
  background: var(--final-secondary-button) !important;
  background-image: var(--final-secondary-button) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #07546a !important;
  box-shadow: 0 10px 24px -20px rgba(7, 84, 106, .5) !important;
  opacity: 1 !important;
}

.btn-outline:hover,
a.btn-outline:hover,
button.btn-outline:hover,
.header-whatsapp:hover,
.success-message .btn-outline:hover,
.pricing-grid .plan .btn-outline:hover {
  color: #006f82 !important;
  border-color: #06bfd2 !important;
  background: var(--final-secondary-button-hover) !important;
  background-image: var(--final-secondary-button-hover) !important;
  -webkit-text-fill-color: #006f82 !important;
}

/* CTA buttons previously using the white variant remain clearly visible. */
.btn-white,
a.btn-white,
button.btn-white,
.cta-panel .btn-white,
.section-navy .btn-white {
  color: #05283a !important;
  border-color: transparent !important;
  background: var(--final-primary-button) !important;
  background-image: var(--final-primary-button) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #05283a !important;
  box-shadow: 0 14px 32px -16px rgba(0, 201, 194, .7) !important;
}

.btn-white:hover,
a.btn-white:hover,
button.btn-white:hover,
.cta-panel .btn-white:hover,
.section-navy .btn-white:hover {
  color: #031f2e !important;
  background: var(--final-primary-button-hover) !important;
  background-image: var(--final-primary-button-hover) !important;
  -webkit-text-fill-color: #031f2e !important;
}

/* Disabled controls stay recognisable without disappearing. */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .58 !important;
  cursor: not-allowed;
}

/* =========================================================
   FINAL WHATSAPP CTA BUTTON FIX — HIGHEST PRIORITY
   ========================================================= */
.btn-whatsapp,
a.btn-whatsapp,
button.btn-whatsapp,
.hero-actions .btn-whatsapp,
.cta-actions .btn-whatsapp,
.page-hero .btn-whatsapp,
.hero .btn-whatsapp,
.contact-actions .btn-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 14px 30px -17px rgba(5, 202, 125, .8) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-whatsapp:hover,
a.btn-whatsapp:hover,
button.btn-whatsapp:hover,
.hero-actions .btn-whatsapp:hover,
.cta-actions .btn-whatsapp:hover,
.page-hero .btn-whatsapp:hover,
.hero .btn-whatsapp:hover,
.contact-actions .btn-whatsapp:hover {
  color: #ffffff !important;
  background:
    linear-gradient(
      90deg,
      #049f5b 0%,
      #03b96d 52%,
      #00cb83 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #049f5b 0%,
      #03b96d 52%,
      #00cb83 100%
    ) !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 18px 36px -17px rgba(3, 185, 109, .9) !important;
}

/* Button label and WhatsApp icon remain visible. */
.btn-whatsapp *,
a.btn-whatsapp *,
button.btn-whatsapp * {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Prevent earlier global text-gradient rules from making the label transparent. */
.btn-whatsapp span,
.btn-whatsapp strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* =========================================================
   FINAL UNIFIED BUTTONS + WHITE ICON VISIBILITY
   ========================================================= */
:root {
  --unified-button-bg:
    linear-gradient(90deg, #06bfd2 0%, #00c9bd 48%, #08d987 100%);
  --unified-button-hover:
    linear-gradient(90deg, #04afc4 0%, #00b9ad 48%, #05c978 100%);
}

/* All website CTA buttons use one consistent style. */
.btn,
a.btn,
button.btn,
button[type="submit"].btn,
.newsletter-form .btn,
.cookie-actions .btn {
  color: #ffffff !important;
  border-color: transparent !important;
  background: var(--unified-button-bg) !important;
  background-image: var(--unified-button-bg) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 14px 30px -17px rgba(0, 191, 210, .72) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.btn:hover,
a.btn:hover,
button.btn:hover,
button[type="submit"].btn:hover,
.newsletter-form .btn:hover,
.cookie-actions .btn:hover {
  color: #ffffff !important;
  border-color: transparent !important;
  background: var(--unified-button-hover) !important;
  background-image: var(--unified-button-hover) !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 18px 36px -17px rgba(0, 185, 173, .85) !important;
}

/* Every button label and internal icon remains white and visible. */
.btn *,
a.btn *,
button.btn *,
button[type="submit"].btn * {
  color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn svg,
a.btn svg,
button.btn svg,
button[type="submit"].btn svg {
  color: #ffffff !important;
  fill: none;
  stroke: #ffffff !important;
}

.btn svg [fill="currentColor"],
a.btn svg [fill="currentColor"],
button.btn svg [fill="currentColor"] {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Contact cards, feature cards and check icons must be clearly visible. */
.icon-box,
.info-card .icon-box,
.check-row .icon-box,
.trust-row .icon-box,
.card .icon-box,
.icon-box.soft {
  color: #ffffff !important;
  background:
    linear-gradient(135deg, #06bfd2 0%, #00c9bd 52%, #08d987 100%) !important;
  background-image:
    linear-gradient(135deg, #06bfd2 0%, #00c9bd 52%, #08d987 100%) !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 10px 24px -16px rgba(0, 191, 210, .75) !important;
  opacity: 1 !important;
}

.icon-box svg,
.info-card .icon-box svg,
.check-row .icon-box svg,
.trust-row .icon-box svg,
.card .icon-box svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.icon-box svg [fill="currentColor"],
.info-card .icon-box svg [fill="currentColor"],
.check-row .icon-box svg [fill="currentColor"],
.trust-row .icon-box svg [fill="currentColor"],
.card .icon-box svg [fill="currentColor"] {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Standalone success/check marks should also remain visible. */
.success-mark,
.check-mark,
.faq-plus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Disabled buttons stay visible but clearly disabled. */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .58 !important;
  cursor: not-allowed;
}

/* =========================================================
   FINAL HEADER BUTTON VISIBILITY FIX — MAXIMUM PRIORITY
   ========================================================= */

/* Desktop WhatsApp button: never blank or white-on-white. */
html body .site-header .header-actions a.header-whatsapp.btn.btn-outline {
  min-width: 142px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 12px 28px -17px rgba(5, 202, 125, .82) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Desktop consultation button: white text on the existing brand gradient. */
html body .site-header .header-actions a.header-cta.btn.btn-primary {
  min-height: 48px !important;
  color: #ffffff !important;
  border-color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9bd 48%,
      #08d987 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9bd 48%,
      #08d987 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure both header button labels and icons are visible. */
html body .site-header .header-actions .btn,
html body .site-header .header-actions .btn *,
html body .site-header .mobile-actions .btn,
html body .site-header .mobile-actions .btn * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .site-header .header-actions .btn svg,
html body .site-header .mobile-actions .btn svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

html body .site-header .header-actions .btn svg [fill="currentColor"],
html body .site-header .mobile-actions .btn svg [fill="currentColor"] {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Mobile WhatsApp button receives the same visible treatment. */
html body .site-header .mobile-actions a.btn-outline {
  color: #ffffff !important;
  border-color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #08b96d 0%,
      #05ca7d 52%,
      #00dc91 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Clear hover states without hiding the labels. */
html body .site-header .header-actions a.header-whatsapp.btn.btn-outline:hover,
html body .site-header .mobile-actions a.btn-outline:hover {
  background:
    linear-gradient(
      90deg,
      #049f5b 0%,
      #03b96d 52%,
      #00cb83 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #049f5b 0%,
      #03b96d 52%,
      #00cb83 100%
    ) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .site-header .header-actions a.header-cta.btn.btn-primary:hover {
  background:
    linear-gradient(
      90deg,
      #04afc4 0%,
      #00b9ad 48%,
      #05c978 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #04afc4 0%,
      #00b9ad 48%,
      #05c978 100%
    ) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* =========================================================
   FAQ ICON + SMALL TEXT + FOOTER FINAL FIX
   ========================================================= */
:root {
  --site-small-text-size: 15px;
}

/* FAQ plus/cross remains visible in both closed and open states. */
html body .faq .faq-plus {
  display: grid !important;
  width: 31px !important;
  height: 31px !important;
  flex: 0 0 31px !important;
  place-items: center !important;
  border: 1px solid transparent !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      #06bfd2 0%,
      #00c9bd 52%,
      #08d987 100%
    ) !important;
  background-image:
    linear-gradient(
      135deg,
      #06bfd2 0%,
      #00c9bd 52%,
      #08d987 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 10px 22px -15px rgba(0, 191, 210, .8) !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .faq .faq-item.open .faq-plus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: rotate(45deg) !important;
}

/* Small supporting text is consistent across the website. */
small,
.text-link,
.field-help,
.form-submit-status,
.consent,
.consent a,
.faq-button,
.faq-answer,
.filter-btn,
.category-chip,
.article-meta,
.article-meta-row,
.blog-card-meta,
.legal-meta,
.footer-about p,
.footer-links a,
.footer-links li,
.footer-contact-link,
.footer-contact-static,
.footer-bottom,
.legal-links,
.legal-links a,
.floating-whatsapp {
  font-size: var(--site-small-text-size) !important;
}

/* Footer receives the requested 2–3px size increase. */
.footer h4 {
  font-size: 17px !important;
  line-height: 1.35 !important;
}

.footer-about p,
.footer-links a,
.footer-links li,
.footer-contact-link,
.footer-contact-static {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.footer-bottom,
.footer-bottom a,
.legal-links,
.legal-links a {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.faq-button,
.faq-answer {
  font-size: 15px !important;
}

/* =========================================================
   FOOTER SERVICES — REMOVE UNEVEN WRAPPED-ROW GAPS
   ========================================================= */
.footer-services-links {
  display: block !important;
  width: 100% !important;
  columns: 2;
  column-gap: 20px !important;
  column-fill: balance;
}

.footer-services-links li {
  display: block !important;
  break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 7px !important;
  min-width: 0;
}

.footer-services-links a {
  display: block;
  line-height: 1.5 !important;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Tablet: use three independent columns without shared row heights. */
@media (min-width: 621px) and (max-width: 900px) {
  .footer-services-links {
    columns: 3;
    column-gap: 20px !important;
  }
}

/* Mobile: retain two compact independent columns. */
@media (max-width: 620px) {
  .footer-services-links {
    columns: 2;
    column-gap: 18px !important;
  }
}

/* Very small screens: use one clean column. */
@media (max-width: 420px) {
  .footer-services-links {
    columns: 1;
  }
}

/* =========================================================
   FOOTER SECTION HEADINGS — CLEAR VISUAL HIERARCHY
   ========================================================= */
.footer-column > h4,
.footer-contact > h4 {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px !important;
  padding-bottom: 11px;
  color: #ffffff !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 19px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: -.015em !important;
}

.footer-column > h4::after,
.footer-contact > h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9bd 52%,
      #08d987 100%
    );
  box-shadow: 0 6px 16px -8px rgba(0, 201, 189, .85);
}

/* Keep the first link visually separated from the heading. */
.footer-column > h4 + .footer-links,
.footer-contact > h4 + .footer-links {
  margin-top: 0 !important;
}

@media (max-width: 620px) {
  .footer-column > h4,
  .footer-contact > h4 {
    margin-bottom: 18px !important;
    font-size: 18px !important;
  }
}

/* =========================================================
   FINAL DARK CTA BUTTON TEXT FIX — SITE-WIDE
   Overrides legacy .btn-white dark-text declarations.
   ========================================================= */
html body .section-navy .cta-panel .cta-actions a.btn.btn-white,
html body .section-navy .cta-panel .cta-actions button.btn.btn-white,
html body .section-navy .cta-panel a.btn-white,
html body .section-navy a.btn.btn-white,
html body .cta-panel .cta-actions a.btn.btn-white,
html body .cta-panel a.btn-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: transparent !important;
  background:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9bd 48%,
      #08d987 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #06bfd2 0%,
      #00c9bd 48%,
      #08d987 100%
    ) !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .section-navy .cta-panel .cta-actions a.btn.btn-white *,
html body .section-navy .cta-panel .cta-actions button.btn.btn-white *,
html body .section-navy .cta-panel a.btn-white *,
html body .section-navy a.btn.btn-white *,
html body .cta-panel .cta-actions a.btn.btn-white *,
html body .cta-panel a.btn-white * {
  color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .section-navy .cta-panel .cta-actions a.btn.btn-white svg,
html body .section-navy .cta-panel a.btn-white svg,
html body .section-navy a.btn.btn-white svg,
html body .cta-panel .cta-actions a.btn.btn-white svg,
html body .cta-panel a.btn-white svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

html body .section-navy .cta-panel .cta-actions a.btn.btn-white:hover,
html body .section-navy .cta-panel a.btn-white:hover,
html body .section-navy a.btn.btn-white:hover,
html body .cta-panel .cta-actions a.btn.btn-white:hover,
html body .cta-panel a.btn-white:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background:
    linear-gradient(
      90deg,
      #04afc4 0%,
      #00b9ad 48%,
      #05c978 100%
    ) !important;
  background-image:
    linear-gradient(
      90deg,
      #04afc4 0%,
      #00b9ad 48%,
      #05c978 100%
    ) !important;
}

/* =========================================================
   SERVICE PAGES — HOMEPAGE-STYLE HERO CONSULTATION FORM
   ========================================================= */
.service-detail-hero {
  border-bottom: 1px solid var(--soft-border);
  background: var(--offwhite);
}

.service-detail-hero .hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr);
  gap: 48px;
  align-items: start;
  padding-block: 58px 66px;
}

.service-detail-hero .hero-copy {
  align-self: center;
  max-width: 720px;
}

.service-detail-hero .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.35vw, 62px);
  line-height: 1.04;
}

.service-detail-hero .hero-copy .lead {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-hero .hero-form-wrap {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 500px;
}

.service-detail-hero .hero-lead-card {
  width: 100%;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .service-detail-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 440px);
    gap: 32px;
    padding-block: 52px 60px;
  }

  .service-detail-hero .hero-copy h1 {
    font-size: clamp(38px, 4.7vw, 52px);
  }

  .service-detail-hero .hero-copy .lead {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 900px) {
  .service-detail-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 48px 58px;
  }

  .service-detail-hero .hero-copy {
    max-width: 760px;
  }

  .service-detail-hero .hero-form-wrap {
    justify-self: center;
    width: min(100%, 650px);
    max-width: 650px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .service-detail-hero .hero-inner {
    gap: 32px;
    padding-block: 38px 48px;
  }

  .service-detail-hero .hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .service-detail-hero .hero-copy .lead {
    font-size: 15px;
    line-height: 1.62;
  }

  .service-detail-hero .hero-lead-card {
    padding: 22px;
  }
}

/* =========================================================
   MENU DROPDOWN ARROW — TEXT-SIDE VERTICAL ALIGNMENT
   ========================================================= */
html body .site-header .desktop-nav .nav-dropdown-toggle {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html body .site-header .desktop-nav .nav-dropdown-toggle > svg {
  position: relative !important;
  top: -1px !important;
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  flex: 0 0 14px !important;
  margin: 0 !important;
  align-self: center !important;
  color: currentColor !important;
  stroke: currentColor !important;
  vertical-align: middle !important;
  transform-origin: 50% 50% !important;
}

/* Open/hover rotation keeps the arrow centred beside the label. */
html body .site-header .desktop-nav .nav-dropdown:hover .nav-dropdown-toggle > svg,
html body .site-header .desktop-nav .nav-dropdown:focus-within .nav-dropdown-toggle > svg,
html body .site-header .desktop-nav .nav-dropdown.open .nav-dropdown-toggle > svg {
  transform: rotate(180deg) !important;
}

/* Mobile dropdown arrows receive the same side alignment. */
html body .site-header .mobile-submenu-toggle {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
}

html body .site-header .mobile-submenu-toggle > svg {
  position: relative !important;
  top: -1px !important;
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  flex: 0 0 15px !important;
  margin: 0 !important;
  align-self: center !important;
  color: currentColor !important;
  stroke: currentColor !important;
  transform-origin: 50% 50% !important;
}

html body .site-header .mobile-nav-group.open .mobile-submenu-toggle > svg {
  transform: rotate(180deg) !important;
}

/* =========================================================
   ACTUAL MENU SVG CHEVRON — FINAL POSITION FIX
   ========================================================= */
html body .site-header .desktop-nav .nav-dropdown-toggle {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body .site-header .desktop-nav .nav-dropdown-chevron {
  position: static !important;
  display: block !important;
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  flex: 0 0 13px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
  color: currentColor !important;
  stroke: currentColor !important;
  vertical-align: middle !important;
  transform: translateY(0) rotate(0deg) !important;
  transform-origin: 50% 50% !important;
}

html body .site-header .desktop-nav .nav-dropdown:hover .nav-dropdown-chevron,
html body .site-header .desktop-nav .nav-dropdown:focus-within .nav-dropdown-chevron,
html body .site-header .desktop-nav .nav-dropdown.open .nav-dropdown-chevron {
  transform: translateY(0) rotate(180deg) !important;
}

html body .site-header .nav-chevron {
  display: none !important;
}

html body .site-header .mobile-submenu-toggle {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

html body .site-header .mobile-dropdown-chevron {
  position: static !important;
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  flex: 0 0 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
  color: currentColor !important;
  stroke: currentColor !important;
  transform: translateY(0) rotate(0deg) !important;
  transform-origin: 50% 50% !important;
}

html body .site-header .mobile-nav-group.open .mobile-dropdown-chevron {
  transform: translateY(0) rotate(180deg) !important;
}

/* =========================================================
   DESKTOP MENU ITEMS — PERFECT VERTICAL CENTRING
   ========================================================= */
@media (min-width: 1181px) {
  html body .site-header .desktop-nav {
    display: flex !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .site-header .desktop-nav > .nav-link,
  html body .site-header .desktop-nav > .nav-dropdown,
  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    box-sizing: border-box !important;
    height: 48px !important;
    min-height: 48px !important;
  }

  html body .site-header .desktop-nav > .nav-link,
  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
  }

  html body .site-header .desktop-nav > .nav-dropdown {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-toggle {
    gap: 7px !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-chevron {
    position: static !important;
    top: auto !important;
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    flex: 0 0 13px !important;
    margin: 0 !important;
    align-self: center !important;
    transform: translateY(-.25px) rotate(0deg) !important;
  }

  html body .site-header .desktop-nav .nav-dropdown:hover .nav-dropdown-chevron,
  html body .site-header .desktop-nav .nav-dropdown:focus-within .nav-dropdown-chevron,
  html body .site-header .desktop-nav .nav-dropdown.open .nav-dropdown-chevron {
    transform: translateY(-.25px) rotate(180deg) !important;
  }

  /* Keep the active underline consistently positioned for every menu item. */
  html body .site-header .desktop-nav > .nav-link::after,
  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle::after {
    bottom: 5px !important;
  }
}

/* =========================================================
   DROPDOWN LABEL + CARET — TRUE CENTRE ALIGNMENT
   ========================================================= */
@media (min-width: 1181px) {
  html body .site-header .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .site-header .desktop-nav > .nav-link,
  html body .site-header .desktop-nav > .nav-dropdown,
  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    box-sizing: border-box !important;
    height: 48px !important;
    min-height: 48px !important;
  }

  html body .site-header .desktop-nav > .nav-link {
    display: inline-grid !important;
    place-items: center !important;
    margin: 0 !important;
    padding: 0 13px !important;
    line-height: 1 !important;
  }

  html body .site-header .desktop-nav > .nav-dropdown {
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: grid !important;
    grid-template-columns: max-content 8px !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 7px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border: 0 !important;
    font: inherit !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-label {
    display: flex !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    transform: none !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-caret {
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 5px solid currentColor !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    align-self: center !important;
    justify-self: center !important;
    transform: translateY(0) rotate(0deg) !important;
    transform-origin: 50% 45% !important;
    transition: transform .24s ease !important;
  }

  html body .site-header .desktop-nav .nav-dropdown:hover .nav-dropdown-caret,
  html body .site-header .desktop-nav .nav-dropdown:focus-within .nav-dropdown-caret,
  html body .site-header .desktop-nav .nav-dropdown.open .nav-dropdown-caret {
    transform: translateY(0) rotate(180deg) !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-chevron,
  html body .site-header .desktop-nav .nav-chevron {
    display: none !important;
  }
}

html body .site-header .mobile-submenu-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 10px !important;
  align-items: center !important;
  column-gap: 10px !important;
}

html body .site-header .mobile-dropdown-label {
  display: flex !important;
  align-items: center !important;
  line-height: 1.2 !important;
}

html body .site-header .mobile-dropdown-caret {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  border-top: 6px solid currentColor !important;
  border-right: 5px solid transparent !important;
  border-left: 5px solid transparent !important;
  align-self: center !important;
  justify-self: center !important;
  transform: rotate(0deg) !important;
  transition: transform .24s ease !important;
}

html body .site-header .mobile-nav-group.open .mobile-dropdown-caret {
  transform: rotate(180deg) !important;
}

html body .site-header .mobile-dropdown-chevron {
  display: none !important;
}

/* =========================================================
   DROPDOWN WRAPPER WIDTH + TRUE MENU CENTRING — FINAL
   ========================================================= */
@media (min-width: 1181px) {
  html body .site-header .desktop-nav {
    gap: 5px !important;
  }

  /* The dropdown wrapper must use the full button width.
     This prevents adjacent menu items from overlapping. */
  html body .site-header .desktop-nav > .nav-dropdown {
    display: flex !important;
    width: max-content !important;
    min-width: max-content !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    width: 100% !important;
    min-width: max-content !important;
    flex: 0 0 auto !important;
  }

  /* Keep normal links and dropdown buttons on one exact baseline. */
  html body .site-header .desktop-nav > .nav-link,
  html body .site-header .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    height: 48px !important;
    min-height: 48px !important;
    align-self: center !important;
  }

  html body .site-header .desktop-nav .nav-dropdown-label,
  html body .site-header .desktop-nav .nav-dropdown-caret {
    align-self: center !important;
  }
}

/* =========================================================
   HEADER BALANCED SIDE PADDING + BOLD MENU
   ========================================================= */

/* Header uses its own wider container so both outer sides remain equal. */
html body .site-header .header-inner.container {
  width: min(calc(100% - 48px), 1480px) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

/* Main menu, dropdowns and mobile navigation use one bold weight. */
html body .site-header .desktop-nav .nav-link,
html body .site-header .desktop-nav .nav-dropdown-toggle,
html body .site-header .desktop-nav .submenu-link,
html body .site-header .desktop-nav .submenu-mega .submenu-link,
html body .site-header .mobile-nav-link,
html body .site-header .mobile-submenu-toggle,
html body .site-header .mobile-submenu-link {
  font-weight: 800 !important;
}

/* Keep header content balanced without changing component dimensions. */
@media (min-width: 1181px) {
  html body .site-header .header-inner {
    column-gap: 22px !important;
  }

  html body .site-header .desktop-nav {
    flex: 0 1 auto !important;
    justify-content: center !important;
  }

  html body .site-header .brand-image-link {
    flex: 0 0 auto !important;
  }

  html body .site-header .header-actions {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 1180px) {
  html body .site-header .header-inner.container {
    width: min(calc(100% - 32px), 1480px) !important;
  }
}

@media (max-width: 620px) {
  html body .site-header .header-inner.container {
    width: min(calc(100% - 24px), 1480px) !important;
  }
}

/* =========================================================
   MOBILE HEADER MENU — VIEWPORT SCROLLABLE
   ========================================================= */
@media (max-width: 1180px) {
  /* Keep the page behind the open menu locked. */
  html body.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  /* The mobile menu scrolls independently inside the viewport. */
  html body .site-header .mobile-menu.open {
    display: block !important;
    max-height: calc(100vh - 74px) !important;
    max-height: calc(100dvh - 74px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-padding-block: 16px 28px;
    touch-action: pan-y;
  }

  /* Sticky header becomes slightly shorter after scroll. */
  html body .site-header.scrolled .mobile-menu.open {
    max-height: calc(100vh - 68px) !important;
    max-height: calc(100dvh - 68px) !important;
  }

  html body .site-header .mobile-menu-inner {
    min-height: 0;
    padding-bottom: max(30px, env(safe-area-inset-bottom)) !important;
  }

  /* Open dropdown content must never be clipped by its own container. */
  html body .site-header .mobile-nav-group.open .mobile-submenu {
    max-height: 1200px !important;
    overflow: visible !important;
  }

  html body .site-header .mobile-nav-group.services-menu.open .mobile-submenu {
    max-height: 1800px !important;
  }

  /* Keep action buttons accessible at the bottom of the scroll area. */
  html body .site-header .mobile-actions {
    padding-bottom: 4px;
  }
}

@media (max-width: 620px) {
  html body .site-header .mobile-menu.open {
    max-height: calc(100vh - 68px) !important;
    max-height: calc(100dvh - 68px) !important;
  }
}

