/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand Colors */
  --navy: #061f50;
  --navy2: #031838;
  --green: #00a64f;
  --gold: #e8a51b;
  --red: #f20d1a;
  --blue: #087d9e;

  /* Neutrals & UI Accents */
  --ink: #071b46;
  --muted: #667085;
  --soft: #f4f8ff;
  --line: #e6eaf2;
  --white: #ffffff;
}

/* ==========================================================================
   2. BASE & RESET STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  margin-top: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--green);
}

.section {
  padding: 86px 0;
}

.soft {
  background: var(--soft);
}

/* Common Buttons */
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 13px 22px;
  border-radius: 9px;
  font-weight: 700;
  border: 1px solid var(--navy);
  cursor: pointer;
}

.btn.small {
  padding: 10px 16px;
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
}

.btn.light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ==========================================================================
   3. TOPBAR & SITE HEADER (PHASE 1 - 6)
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #031a42, #082b62);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact,
.topbar-social {
  display: flex;
  gap: 26px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar-social a {
  font-weight: 800;
  font-size: 17px;
}

/* Main Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  box-shadow: 0 5px 18px rgba(6, 31, 80, 0.04);
}

.nav-wrap {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand img {
  width: 115px;
  max-height: 94px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a {
  position: relative;
  font-weight: 650;
  color: #08152f;
  text-decoration: none;
  font-size: 14px;
}

.main-nav > a:hover {
  color: var(--green);
}

.main-nav > a.active:not(.nav-cta) {
  color: var(--blue) !important;
  font-weight: 800;
}

.main-nav > a.active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.main-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 15px 21px;
  border-radius: 9px;
}

.main-nav .nav-cta.active {
  background: var(--green) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
}

/* Phase 6 Header Variant */
.phase6-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(6, 31, 80, 0.07);
}

.phase6-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.phase6-nav .brand img {
  width: 92px;
  max-height: 75px;
}

.phase6-nav .main-nav {
  margin-left: auto;
}

.quick-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: #071f50;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.header-phone i {
  color: var(--green);
  margin-right: 6px;
}

.header-consult {
  background: #071f50;
  color: #fff;
  text-decoration: none;
  padding: 13px 17px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

/* ==========================================================================
   4. PHASE 6 HOMEPAGE (HERO, PARTNERS, COUNTERS)
   ========================================================================== */
.p6-hero {
  padding: 72px 0;
  background: linear-gradient(120deg, #f3f8ff, #fff 52%, #edf7f3);
}

.p6-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.p6-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  color: var(--blue);
}

.p6-hero h1 {
  font-size: clamp(50px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -2.8px;
  color: #071b46;
  margin: 13px 0 22px;
}

.p6-hero h1 span {
  color: var(--green);
}

.p6-hero-copy > p {
  font-size: 18px;
  color: #607088;
  line-height: 1.7;
}

.p6-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.p6-btn {
  display: inline-block;
  border: 0;
  border-radius: 9px;
  padding: 14px 19px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}

.p6-btn.primary {
  background: #071f50;
  color: #fff;
}

.p6-btn.secondary {
  background: #fff;
  color: #071f50;
  border: 1px solid #c6d2e0;
}

.p6-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  color: #42556e;
}

.p6-badges i {
  color: var(--green);
  margin-right: 5px;
}

/* Visual Orbit Core */
.p6-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  width: 390px;
  height: 390px;
  border: 1px dashed #a9bed3;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-orbit:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid #dce6f0;
  border-radius: 50%;
}

.visual-core {
  width: 190px;
  height: 190px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 18px 50px rgba(7, 31, 80, 0.14);
  z-index: 2;
}

.visual-core .orbit-logo {
  width: 100%;
  height: 85%;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.orbit-card {
  position: absolute;
  background: #fff;
  padding: 12px 15px;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(7, 31, 80, 0.12);
  z-index: 3;
  color: #071f50;
  font-size: 12px;
}

.orbit-card i {
  color: var(--green);
  margin-right: 6px;
}

.oc1 { top: 15px; left: 38px; }
.oc2 { right: -18px; top: 115px; }
.oc3 { bottom: 20px; right: 35px; }
.oc4 { left: -15px; bottom: 105px; }

/* Partner Strip */
.partner-strip {
  text-align: center;
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid #e5ebf2;
}

.partner-strip p {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
  color: #8190a4;
}

.logo-marquee {
  overflow: hidden;
  margin: 16px 0;
}

.logo-track {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-track span {
  min-width: 180px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #40536b;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(16, 42, 74, 0.06);
}

.partner-strip small,
.metric-note {
  color: #8b97a7;
  font-size: 11px;
}

/* Counters */
.p6-counters {
  background: #071f50;
  color: #fff;
  padding: 34px 0;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-grid > div {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.counter-grid > div:last-child {
  border: 0;
}

.counter-grid strong {
  display: block;
  font-size: 32px;
  color: #f0b23d;
}

.counter-grid span {
  font-size: 12px;
  color: #c4d2e5;
}

.counter-grid small {
  display: block;
  color: #9fb1ca;
  font-size: 10px;
  margin-top: 4px;
}

.counter-text {
  display: block;
  font-size: 30px !important;
  color: #e6b33e;
}

.counter-text i {
  font-size: 29px;
}

/* ==========================================================================
   5. QUIZ FINDER & DYNAMIC SERVICES
   ========================================================================== */
.p6-section {
  padding: 76px 0;
}

.finder-section {
  background: #f4f8fc;
}

.finder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.finder-grid > div > h2,
.p6-heading h2,
.clarity-copy h2,
.faq-layout > div > h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  color: #071b46;
  line-height: 1.12;
  margin: 8px 0 15px;
}

.finder-grid > div > p {
  color: #64738a;
  line-height: 1.7;
}

.finder-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.finder-benefits span {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
  color: #3e526c;
}

.finder-benefits i {
  color: var(--green);
}

/* Quiz Card Component */
.quiz-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(7, 31, 80, 0.10);
}

.quiz-progress {
  height: 4px;
  background: #e7edf4;
  border-radius: 5px;
  margin-bottom: 25px;
}

.quiz-progress span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 5px;
  transition: 0.3s;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step > small {
  font-size: 10px;
  font-weight: 900;
  color: var(--blue);
}

.quiz-step h3 {
  font-size: 25px;
  color: #071f50;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.quiz-options input {
  position: absolute;
  opacity: 0;
}

.quiz-options span {
  display: block;
  border: 1px solid #dbe4ee;
  border-radius: 9px;
  padding: 14px;
  cursor: pointer;
  color: #3f526c;
  font-weight: 700;
}

.quiz-options input:checked + span {
  border-color: var(--green);
  background: #eefaf3;
  color: #08773b;
}

.quiz-options i {
  margin-right: 7px;
}

.quiz-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.quiz-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-contact label:last-child {
  grid-column: 1 / -1;
}

.quiz-contact input {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #d4deea;
  border-radius: 8px;
  margin-top: 6px;
}

/* Dynamic Service Cards */
.p6-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.p6-heading p {
  color: #68778c;
}

.dynamic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dynamic-card {
  background: #fff;
  border: 1px solid #e0e8f1;
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: #071f50;
  transition: 0.25s;
}

.dynamic-card:hover {
  transform: translateY(-7px);
  background: #071f50;
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 31, 80, 0.16);
}

.dynamic-card > i {
  font-size: 28px;
  color: var(--green);
}

.dynamic-card p {
  color: #68778c;
  font-size: 13px;
  line-height: 1.6;
}

.dynamic-card:hover p {
  color: #c7d5e7;
}

.dynamic-card span {
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
}

.dynamic-card:hover span {
  color: #f0b23d;
}

/* ==========================================================================
   6. CALCULATORS SECTION
   ========================================================================== */
.calc-home {
  background: #f5f8fc;
}

.calc-tabs {
  max-width: 900px;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 38px rgba(7, 31, 80, 0.08);
}

.calc-tab-buttons {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 25px;
}

.calc-tab-buttons button {
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-weight: 800;
  color: #6a788d;
  cursor: pointer;
}

.calc-tab-buttons button.active {
  color: #071f50;
  border-bottom: 3px solid var(--green);
}

.mini-calc {
  display: none;
}

.mini-calc.active {
  display: block;
}

.mini-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 18px;
}

.mini-fields label {
  font-size: 12px;
  font-weight: 800;
  color: #40536d;
}

.mini-fields input {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #d4deea;
  border-radius: 8px;
  margin-top: 7px;
}

.mini-result {
  background: #edf8f2;
  border: 1px solid #c4e8d1;
  border-radius: 10px;
  padding: 18px;
  margin-top: 17px;
}

.mini-result small,
.mini-result strong {
  display: block;
}

.mini-result strong {
  font-size: 27px;
  color: #008c42;
  margin-top: 4px;
}

.mini-result p {
  font-size: 11px;
  color: #66758a;
}

.calc-more {
  text-align: center;
  margin-top: 22px;
}

.calc-more a {
  font-weight: 850;
  color: #071f50;
  text-decoration: none;
}

/* Alternate Calculator Component Styles */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.calculator-card {
  background: #fff;
  border: 1px solid rgba(8, 36, 107, 0.12);
  border-radius: 18px;
  padding: 28px;
}

.calculator-card label {
  display: block;
  margin: 15px 0;
  font-weight: 600;
}

.calculator-card input {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #d8deea;
  border-radius: 9px;
}

.calc-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  background: #f2f7ff;
}

.calc-note {
  font-size: 0.82rem;
  opacity: 0.75;
}

/* ==========================================================================
   7. COMPARISON TABLE & REVIEWS
   ========================================================================== */
.why-compare {
  background: #fff;
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.clarity-copy > p {
  color: #64738a;
  line-height: 1.7;
}

.clarity-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.clarity-copy li {
  margin: 12px 0;
  color: #40536d;
}

.clarity-copy li i {
  color: var(--green);
  margin-right: 8px;
}

.compare-table {
  border: 1px solid #dfe7ef;
  border-radius: 14px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  border-bottom: 1px solid #e5ebf2;
}

.compare-row:last-child {
  border: 0;
}

.compare-row > * {
  padding: 16px;
  margin: 0;
}

.compare-row.head {
  background: #071f50;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.compare-row:not(.head) span {
  color: #40536d;
}

.compare-row:not(.head) b {
  text-align: center;
  color: var(--green);
  background: #f0faf4;
}

.compare-row:not(.head) em {
  font-style: normal;
  color: #7a8798;
  font-size: 12px;
}

/* Reviews / Proofs */
.proof-section {
  background: #f5f8fc;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-placeholder {
  background: #fff;
  border: 1px dashed #ccd7e2;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.review-placeholder > i {
  font-size: 30px;
  color: var(--blue);
}

.review-placeholder h3 {
  color: #071f50;
}

.review-placeholder p {
  color: #7a8798;
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================================================
   8. FAQS & FOOTER
   ========================================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 65px;
}

.faq-layout > div:first-child > p {
  color: #69778c;
}

.faq-layout > div:first-child > a {
  font-weight: 850;
  color: var(--blue);
  text-decoration: none;
}

.faq-list details {
  border-bottom: 1px solid #dfe6ee;
  padding: 17px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #071f50;
  display: flex;
  justify-content: space-between;
}

.faq-list details p {
  color: #68778c;
  line-height: 1.65;
  font-size: 13px;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

/* Premium Footer */
.premium-footer {
  background: radial-gradient(circle at 50% 0, #092c61, #031a42 60%, #02142f);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.15fr 0.9fr;
  gap: 52px;
  padding: 58px 0 35px;
}

.footer-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  width: 180px;
}

.footer-brand p {
  color: #c8d5e9;
  line-height: 1.65;
}

.footer-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
  font-size: 12px;
  color: #e8b34d;
}

.footer-col h4 {
  font-size: 20px;
  margin: 4px 0 22px;
}

.footer-col h4:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 9px;
}

.footer-col > a {
  display: block;
  color: #dbe6f5;
  text-decoration: none;
  margin: 0 0 14px;
}

.footer-col > a:hover {
  color: #fff;
}

.footer-col > a .fa-facebook-f,
.footer-col > a .fa-instagram {
  color: #ffffff;
}

.contact-col > a,
.footer-address {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 12px;
}

.contact-col i,
.footer-address i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0c326b;
  display: grid;
  place-items: center;
  font-style: normal;
}

.contact-col span,
.footer-address span {
  color: #c9d5e6;
}

.contact-col strong {
  display: block;
  color: #fff;
  margin-top: 3px;
}

.footer-address small {
  display: block;
  color: #dbe5f3;
  line-height: 1.5;
  margin-top: 4px;
}

.footer-address .fa-location-dot {
  color: #ffffff;
}

.footer-guidance {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-guidance > div b,
.footer-guidance > div span {
  display: block;
}

.footer-guidance > div span {
  color: #bfcde0;
  margin-top: 5px;
}

.footer-guidance > a {
  padding: 13px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.footer-call {
  background: linear-gradient(135deg, #d89a24, #a66a0a);
}

.footer-wa {
  background: linear-gradient(135deg, #00b85a, #008b40);
}

.footer-wa .fa-whatsapp {
  color: #ffffff;
  font-size: 22px;
}

.footer-book {
  border: 1px solid var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 165, 27, 0.6);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  color: #aebdd2;
  font-size: 13px;
}

.footer-bottom b {
  color: #f1b53f;
}

/* ==========================================================================
   9. FLOATING ACTION CONTROLS & UTILITIES
   ========================================================================== */
.floating-wa,
.floating-call {
  position: fixed;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  z-index: 95;
  font-size: 23px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-wa {
  bottom: 90px;
  background: #00ad50;
}

.floating-wa .fa-whatsapp {
  color: #ffffff;
  font-size: 22px;
}

.floating-call {
  bottom: 28px;
  background: #174bb1;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  background: var(--green);
  color: #fff !important;
  padding: 12px 17px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-contact-bar {
  display: none;
}

/* Anti-Spam Honeypot Field */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 1px !important;
  width: 1px !important;
}

.consent-check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.45;
}

.consent-check input {
  width: auto !important;
  margin-top: 4px;
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1050px) {
  .p6-hero-grid,
  .finder-grid,
  .compare-grid,
  .faq-layout,
  .premium-hero-grid {
    grid-template-columns: 1fr;
  }

  .dynamic-grid,
  .proof-grid,
  .footer-main,
  .footer-guidance,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .p6-visual {
    min-height: 390px;
  }

  .quick-contact .header-phone {
    display: none;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a {
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .phase6-nav {
    min-height: 82px;
  }

  .quick-contact {
    margin-left: auto;
  }

  .header-consult {
    font-size: 11px;
    padding: 10px;
  }

  .p6-hero {
    padding: 45px 0;
  }

  .p6-hero h1 {
    font-size: 47px;
  }

  .p6-visual {
    display: none;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .counter-grid > div {
    border: 0;
  }

  .quiz-options,
  .quiz-contact,
  .dynamic-grid,
  .proof-grid,
  .mini-fields,
  .trust-grid,
  .footer-main,
  .footer-guidance {
    grid-template-columns: 1fr;
  }

  .quiz-contact label:last-child {
    grid-column: auto;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row.head em,
  .compare-row.head b {
    display: none;
  }

  .compare-row:not(.head) {
    padding: 10px;
  }

  .compare-row:not(.head) > * {
    padding: 5px;
  }

  .p6-actions {
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
    border: 0;
    background: var(--navy);
    color: #fff;
    padding: 9px 12px;
    border-radius: 7px;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a.active:not(.nav-cta) {
    background: #eef7f5;
    padding: 10px 12px;
    border-radius: 7px;
  }

  .main-nav > a.active:not(.nav-cta)::after {
    display: none;
  }

  .floating-wa {
    bottom: 82px;
  }

  .floating-call {
    bottom: 20px;
  }
}

@media (max-width: 700px) {
  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  }

  .mobile-contact-bar a {
    flex: 1;
    text-align: center;
    padding: 13px 8px;
    font-weight: 700;
    text-decoration: none;
  }

  body {
    padding-bottom: 48px;
  }
}