:root {
  --navy-950: #031B3D;
  --navy-900: #061A3A;
  --navy-800: #0B2E63;
  --navy-700: #0f438c;
  --blue-600: #126BFF;
  --blue-500: #247BFF;
  --blue-soft: #EAF2FF;
  --blue-line: #D9E5F3;
  --bg-white: #FFFFFF;
  --bg-soft: #F6F9FD;
  --white: #ffffff;
  --off-white: #f8fbff;
  --text-main: #061A3A;
  --text-muted: #607089;
  --border: #D9E5F3;
  --green: #25D366;
  --whatsapp: #25D366;
  --gold: #f5b301;
  --shadow: 0 18px 50px rgba(6, 27, 61, 0.08);
  --shadow-soft: 0 10px 30px rgba(6, 27, 61, 0.06);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text-main);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding: 32px 0;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(6, 27, 61, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 32px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-900);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-900);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 12px 26px rgba(6, 39, 90, 0.2);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: #cbd9ea;
}

.btn-whatsapp {
  color: var(--text-main);
  background: var(--white);
  border-color: #cbd9ea;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-arrow {
  transition: transform 200ms ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.wa-dot {
  width: 19px;
  height: 19px;
  border: 2px solid var(--green);
  border-radius: 999px;
  position: relative;
}

.wa-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: -1px;
  bottom: -2px;
  background: var(--green);
  transform: rotate(45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 38px;
}

.hero::before,
.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 245, 255, 0.9), transparent 34%),
    radial-gradient(circle at 17% 65%, rgba(238, 245, 255, 0.6), transparent 28%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
  min-height: 456px;
}

.hero-copy .section-title {
  max-width: 575px;
}

.hero-copy {
  padding-top: 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
}

.journey span:not(:last-child)::after {
  content: "->";
  margin-left: 14px;
  color: var(--navy-700);
}

.globe-scene {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.globe {
  width: min(460px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 35% 24%, #fff 0 14%, #eef4fb 44%, #dfeaf7 72%, #fff 100%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 21px, rgba(6, 39, 90, 0.06) 22px 23px);
  box-shadow: inset -28px -30px 55px rgba(6, 27, 61, 0.08), 0 22px 60px rgba(6, 27, 61, 0.08);
  animation: floatSoft 7s ease-in-out infinite;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(6, 39, 90, 0.16);
  border-radius: 50%;
}

.globe::after {
  inset: 26% 8%;
  transform: rotate(-22deg);
}

.orbit {
  position: absolute;
  width: 96%;
  height: 56%;
  border: 1px solid rgba(6, 39, 90, 0.12);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.pin {
  position: absolute;
  right: 23%;
  top: 36%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy-900);
  transform: rotate(-45deg);
  box-shadow: 0 12px 25px rgba(6, 27, 61, 0.2);
}

.pin::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--white);
}

.pin::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(15, 67, 140, 0.35);
  border-radius: 50%;
  left: -17px;
  top: -17px;
  animation: pulseRing 2.5s ease-out infinite;
}

.search-card {
  position: absolute;
  left: 3%;
  top: 34%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  min-width: 168px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.search-icon {
  width: 30px;
  height: 30px;
  border: 3px solid var(--navy-800);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 3px;
  right: -9px;
  bottom: -5px;
  border-radius: 999px;
  background: var(--navy-800);
  transform: rotate(45deg);
}

.search-card strong,
.mini-label {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-card span {
  color: var(--text-muted);
  font-weight: 800;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6, 27, 61, 0.02);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c9d9ec;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.trust-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
}

.trust-card:last-child {
  border-right: 0;
}

.icon-line {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 28px;
  font-weight: 300;
}

.trust-card h3,
.service-card h3,
.plain-card h3,
.quote-card h3,
.step-card h3,
.faq-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.25;
}

.trust-card p,
.service-card p,
.plain-card p,
.quote-card p,
.step-card p,
.footer p,
.mini-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.engine-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(310px, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 42px;
}

.engine-copy .section-title {
  font-size: clamp(30px, 3vw, 43px);
}

.engine-wheel {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(var(--navy-900) 0 25%, #fff 25% 50%, #fff 50% 75%, #fff 75% 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.engine-wheel::before {
  content: "";
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  z-index: 2;
}

.engine-center {
  position: absolute;
  inset: 34%;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy-900);
  font-weight: 900;
}

.engine-center small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.engine-part {
  position: absolute;
  width: 36%;
  height: 36%;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--navy-900);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  transition: transform 200ms ease;
}

.engine-part:hover {
  transform: scale(1.04);
}

.engine-part.dark {
  color: var(--white);
}

.engine-part:nth-child(2) { left: 9%; top: 9%; }
.engine-part:nth-child(3) { right: 9%; top: 9%; }
.engine-part:nth-child(4) { left: 9%; bottom: 9%; }
.engine-part:nth-child(5) { right: 9%; bottom: 9%; }

.process-list {
  display: grid;
  gap: 22px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.process-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.process-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plain-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px;
}

.quote-engine {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(360px, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--off-white));
}

.quote-engine .section-title {
  font-size: clamp(30px, 3.2vw, 42px);
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  text-align: center;
}

.round-step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid var(--blue-line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.mini-form {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mini-form h3,
.notification h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.field-stack {
  display: grid;
  gap: 9px;
}

.fake-field,
.form-control {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-main);
}

.fake-field {
  color: #8a98ad;
  font-size: 12px;
}

.notification-stack {
  display: grid;
  gap: 13px;
  margin-top: 14px;
}

.notification {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.notification .icon-line {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-link {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 205px;
  padding: 22px;
}

.service-card .icon-line {
  margin-bottom: 18px;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy-900);
  font-weight: 900;
  font-size: 13px;
}

.audit-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 210px minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 14px;
}

.check-list li::before {
  content: "OK";
  margin-right: 8px;
  color: var(--navy-800);
  font-weight: 900;
}

.score-ring {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(var(--navy-900) 0 32%, var(--blue-soft) 32% 100%);
}

.score-ring > div {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  text-align: center;
}

.score-ring strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.score-ring span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.industry-row,
.category-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.industry-item,
.category-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
  color: var(--navy-900);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.industry-item:last-child,
.category-item:last-child {
  border-right: 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 42px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px dotted rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,0.03), 0 0 0 55px rgba(255,255,255,0.02);
}

.cta-banner h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.cta-banner p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.quote-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 34px;
}

.quote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(370px, 0.88fr) minmax(260px, 0.55fr);
  gap: 18px;
  align-items: start;
}

.hero-bullets {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 14px;
}

.hero-bullets li::before {
  content: "OK";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid var(--navy-800);
  border-radius: 50%;
  font-size: 11px;
}

.form-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
}

.form-control {
  min-height: 44px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea.form-control {
  min-height: 94px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(15, 67, 140, 0.09);
}

.field-error {
  min-height: 16px;
  color: #b42318;
  font-size: 12px;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px dashed #b8c9de;
  border-radius: 12px;
  color: var(--navy-900);
  text-align: center;
  background: #fbfdff;
}

.legal {
  margin: 12px 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 12px;
}

.form-success {
  display: none;
  margin: 14px 0 0;
  padding: 12px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.08);
  color: #116932;
  font-weight: 800;
  font-size: 14px;
}

.form-success.is-visible {
  display: block;
}

.sample-panel {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.sample-panel h2 {
  margin: 0 0 15px;
  font-size: 17px;
}

.quote-mini-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  margin-bottom: 12px;
}

.quote-thumb {
  width: 62px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #f7f9fc, #e8eef7);
  color: var(--navy-900);
  font-size: 26px;
}

.quote-mini-card h3 {
  margin: 0;
  font-size: 14px;
}

.quote-mini-card p {
  margin: 2px 0;
  color: var(--text-muted);
  font-size: 12px;
}

.price {
  color: #0f9f58;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.mini-btn {
  padding: 6px 10px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 8px;
  color: #108447;
  background: rgba(34, 197, 94, 0.08);
  font-weight: 900;
  font-size: 12px;
}

.category-row {
  grid-template-columns: repeat(10, 1fr);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  padding: 24px;
  text-align: center;
}

.why-grid,
.quote-large-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quote-card {
  padding: 18px;
}

.quote-card .quote-thumb {
  width: 100%;
  height: 96px;
  margin-bottom: 14px;
}

.rating {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.faq-trust {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border: 0;
  background: var(--white);
  color: var(--navy-900);
  text-align: left;
  font-weight: 900;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  max-height: 130px;
}

.trust-box {
  padding: 28px;
}

.trust-box .check-list {
  grid-template-columns: 1fr;
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.badge {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy-900);
  font-weight: 900;
  text-align: center;
}

.content-page {
  padding: 54px 0;
}

.content-shell {
  max-width: 900px;
  margin: 0 auto;
}

.content-shell .card {
  padding: 32px;
}

.content-shell h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.content-shell h2 {
  margin-top: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer {
  color: rgba(255,255,255,0.86);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.35fr 1fr 1.35fr;
  gap: 36px;
  padding: 42px 0;
}

.footer .brand {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
}

.footer .brand img {
  width: 148px;
  filter: none;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

/* Premium correction pass */
:root {
  --navy-900: #062a5e;
  --off-white: #f7fafe;
  --shadow: 0 22px 58px rgba(6, 27, 61, 0.11);
  --shadow-soft: 0 12px 34px rgba(6, 27, 61, 0.075);
}

.section {
  padding: 46px 0;
}

.brand img {
  width: 140px;
}

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

.btn {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 10px;
}

.btn-primary {
  box-shadow: 0 14px 30px rgba(6, 39, 90, 0.24);
}

.card {
  box-shadow: 0 1px 0 rgba(6, 27, 61, 0.02), 0 12px 28px rgba(6, 27, 61, 0.025);
}

.globe-scene {
  min-height: 455px;
}

.globe {
  width: min(500px, 72vw);
  background:
    radial-gradient(circle at 29% 32%, rgba(6, 42, 94, 0.07) 0 1px, transparent 2px) 0 0 / 18px 18px,
    radial-gradient(circle at 72% 42%, rgba(15, 67, 140, 0.06) 0 1px, transparent 2px) 4px 6px / 24px 24px,
    radial-gradient(circle at 35% 24%, #fff 0 14%, #eef4fb 44%, #dfeaf7 72%, #fff 100%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 21px, rgba(6, 39, 90, 0.06) 22px 23px);
  box-shadow: inset -32px -34px 62px rgba(6, 27, 61, 0.09), 0 28px 70px rgba(6, 27, 61, 0.11);
}

.orbit {
  width: 108%;
  height: 62%;
}

.globe-scene::before,
.globe-scene::after {
  content: "";
  position: absolute;
  left: 23%;
  top: 38%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 70px 22px 0 rgba(6, 42, 94, .72), 140px 42px 0 rgba(6, 42, 94, .55), 216px 90px 0 rgba(6, 42, 94, .72);
  opacity: .65;
  animation: pulseRing 3.4s ease-out infinite;
}

.globe-scene::after {
  left: auto;
  right: 13%;
  top: 19%;
  opacity: .32;
  box-shadow: -82px 36px 0 rgba(6,42,94,.45), -152px 72px 0 rgba(6,42,94,.35);
}

.search-card,
.form-card,
.sample-panel,
.mini-form,
.notification,
.trust-strip,
.industry-row,
.category-row,
.audit-card {
  box-shadow: var(--shadow-soft);
}

.trust-strip,
.industry-row,
.category-row {
  background: rgba(255,255,255,.96);
}

.trust-card {
  padding: 30px 32px;
}

.icon-line {
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 22px rgba(6, 27, 61, 0.045);
  font-size: 0;
}

.icon-line svg,
.quote-thumb svg {
  width: 25px;
  height: 25px;
}

.socials svg {
  width: 17px;
  height: 17px;
}

.engine-wheel {
  width: min(405px, 100%);
  background:
    radial-gradient(circle, #fff 0 31%, transparent 32%),
    conic-gradient(from -90deg, var(--navy-900) 0 25%, #fbfdff 25% 50%, #fff 50% 75%, #fbfdff 75% 100%);
  border-color: #cad9eb;
  box-shadow: 0 22px 55px rgba(6, 27, 61, 0.12);
}

.engine-part.dark {
  color: var(--navy-900);
}

.engine-wheel::before {
  background: radial-gradient(circle, #fff, #f8fbff);
  border-color: #d6e2f1;
  box-shadow: inset 0 0 0 8px rgba(238,245,255,.8);
}

.process-list {
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(var(--blue-line), transparent);
}

.plain-card {
  min-height: 142px;
  padding: 30px;
}

.quote-engine {
  padding: 34px;
  background:
    radial-gradient(circle at 80% 16%, rgba(238, 245, 255, 0.95), transparent 35%),
    linear-gradient(135deg, #fff, var(--off-white));
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(10,52,112,.14), rgba(216,228,242,.75)) border-box;
}

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

.audit-card {
  padding: 32px;
  background:
    radial-gradient(circle at 54% 24%, rgba(238,245,255,.9), transparent 30%),
    var(--white);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  margin-right: 10px;
  border-left: 2px solid var(--navy-800);
  border-bottom: 2px solid var(--navy-800);
  transform: rotate(-45deg) translateY(-2px);
}

.hero-bullets li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  margin-right: 12px;
  border: 0;
  border-left: 2px solid var(--navy-800);
  border-bottom: 2px solid var(--navy-800);
  border-radius: 0;
  transform: rotate(-45deg) translateY(-2px);
}

.score-ring {
  background: conic-gradient(var(--navy-900) 0 32%, #d9e7f7 32% 100%);
  box-shadow: 0 18px 38px rgba(6, 27, 61, 0.12);
}

.cta-banner {
  padding: 34px 44px;
  box-shadow: 0 24px 60px rgba(6, 27, 61, 0.18);
}

.hero-float-card {
  position: absolute;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-float-card span {
  display: block;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 13px;
}

.hero-float-1 {
  right: 4%;
  top: 24%;
}

.hero-float-2 {
  right: 8%;
  bottom: 20%;
  animation-delay: .8s;
}

.hero-float-3 {
  left: 8%;
  bottom: 16%;
  animation-delay: 1.3s;
}

/* Final mockup-inspired polish */
.hero-grid {
  min-height: 500px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  opacity: 1;
  transform: scale(1);
  animation: heroVisualIn 900ms ease both 180ms;
}

.hero-glow {
  position: absolute;
  inset: 4% 0 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(234, 242, 251, .95), transparent 32%),
    radial-gradient(circle at 48% 58%, rgba(10, 54, 120, .12), transparent 44%);
  filter: blur(4px);
  animation: glowShift 10s ease-in-out infinite;
}

.visibility-sphere {
  position: relative;
  width: min(520px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.98) 0 12%, rgba(238,245,255,.96) 34%, rgba(218,230,244,.82) 72%, rgba(255,255,255,.92) 100%);
  box-shadow:
    inset -34px -38px 68px rgba(6, 27, 61, .10),
    inset 26px 22px 70px rgba(255,255,255,.9),
    0 34px 78px rgba(6, 27, 61, .12);
  overflow: visible;
  animation: sphereFloat 7.5s ease-in-out infinite;
}

.sphere-grid {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  opacity: .74;
  background:
    radial-gradient(circle at 35% 34%, rgba(6,42,94,.22) 0 1px, transparent 1.6px) 0 0 / 13px 13px,
    radial-gradient(circle at 72% 44%, rgba(6,42,94,.13) 0 1px, transparent 1.8px) 4px 8px / 19px 19px;
  mask-image: radial-gradient(circle, #000 0 68%, transparent 78%);
}

.sphere-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), transparent 38%),
    radial-gradient(circle at 68% 68%, rgba(3,27,61,.08), transparent 30%);
  pointer-events: none;
}

.orbit-ring {
  display: none;
}

.orbit-ring-a {
  width: 124%;
  height: 58%;
}

.orbit-ring-b {
  width: 106%;
  height: 74%;
  animation-duration: 32s;
  animation-direction: reverse;
}

.orbit-ring-c {
  width: 146%;
  height: 40%;
  opacity: .6;
  animation-duration: 40s;
}

.signal-path {
  position: absolute;
  inset: 2% 3%;
  width: 94%;
  height: 92%;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
}

.signal-path path {
  fill: none;
  stroke-linecap: round;
}

.signal-path-track {
  stroke: rgba(6,42,94,.22);
  stroke-width: 2;
  stroke-dasharray: 5 13;
}

.signal-path-flow {
  stroke: var(--navy-900);
  stroke-width: 3.4;
  stroke-dasharray: 28 420;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 4px 8px rgba(6,42,94,.18));
  animation: signalFlow 4.8s linear infinite;
}

.signal-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid #fff;
  box-shadow: 0 0 0 7px rgba(6,42,94,.08), 0 10px 22px rgba(6,27,61,.18);
  z-index: 6;
  animation: nodeTravel 5.2s cubic-bezier(.55, 0, .25, 1) infinite;
}

.signal-node-1 {
  left: 20%;
  top: 48%;
}

.signal-node-2 {
  left: 20%;
  top: 48%;
  animation-delay: 1.1s;
}

.signal-node-3 {
  left: 20%;
  top: 48%;
  animation-delay: 2.2s;
}

.uae-pin {
  position: absolute;
  right: 22%;
  top: 48%;
  width: 58px;
  height: 58px;
  transform: translate(50%, -50%);
  animation: pinFloat 4.8s ease-in-out infinite;
}

.pin-head {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  transform: rotate(-45deg);
  box-shadow: 0 18px 34px rgba(6,27,61,.26);
}

.pin-head::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: #fff;
}

.pin-ripple {
  position: absolute;
  left: 50%;
  top: 64%;
  width: 84px;
  height: 36px;
  border: 2px solid rgba(6,42,94,.20);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pinRipple 3.2s ease-out infinite;
}

.pin-ripple-2 {
  animation-delay: 1.45s;
}

.hero-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(207,221,237,.95);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(6,27,61,.12);
  backdrop-filter: blur(12px);
  animation: cardFloat 6s ease-in-out infinite, cardReveal 750ms ease both;
}

.hero-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff, #f7fafe);
}

.hero-card-search {
  left: 0;
  top: 38%;
  animation-delay: .18s, .22s;
}

.hero-card-google {
  right: 3%;
  top: 22%;
  animation-delay: .55s, .42s;
}

.hero-card-whatsapp {
  right: 2%;
  bottom: 24%;
  animation-delay: .95s, .62s;
}

.hero-card-tracking {
  left: 10%;
  bottom: 15%;
  animation-delay: 1.25s, .82s;
}

.whatsapp-mark {
  color: #fff;
  background: #25D366;
  border-color: rgba(37,211,102,.28);
  font-size: 12px;
  font-weight: 950;
}

.mini-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid var(--navy-900);
  box-shadow: 0 0 0 7px rgba(6,42,94,.07);
}

.tracking-bars {
  width: 24px;
  height: 22px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) 5px 12px / 3px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 7px / 3px 13px no-repeat,
    linear-gradient(currentColor, currentColor) 19px 3px / 3px 17px no-repeat;
}

.market-badge {
  position: absolute;
  left: 48%;
  bottom: 6%;
  z-index: 9;
  padding: 9px 13px;
  border: 1px solid rgba(207,221,237,.95);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: scale(.96) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes sphereFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

@keyframes glowShift {
  0%, 100% { transform: translate(-1%, 0) scale(1); opacity: .85; }
  50% { transform: translate(2%, -2%) scale(1.05); opacity: 1; }
}

@keyframes orbitDrift {
  from { transform: translate(-50%, -50%) rotate(-18deg); }
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes signalFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -448; }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.28); opacity: 1; }
}

@keyframes nodeTravel {
  0% { opacity: 0; transform: translate(0, 0) scale(.8); }
  12% { opacity: 1; }
  36% { transform: translate(108px, -30px) scale(1); }
  68% { transform: translate(238px, 6px) scale(1.05); }
  88% { opacity: 1; transform: translate(302px, 8px) scale(.95); }
  100% { opacity: 0; transform: translate(324px, -4px) scale(.72); }
}

@keyframes pinFloat {
  0%, 100% { transform: translate(50%, -50%) translateY(0); }
  50% { transform: translate(50%, -50%) translateY(-7px); }
}

@keyframes pinRipple {
  0% { opacity: .55; transform: translate(-50%, -50%) scale(.75); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

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

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Transparent visibility-mesh refinement */
.visibility-sphere {
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,.78) 0 12%, rgba(255,255,255,.31) 32%, rgba(234,242,251,.18) 58%, rgba(255,255,255,.08) 76%),
    radial-gradient(circle at 62% 55%, rgba(6,42,94,.07), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(234,242,251,.06));
  border: 1px solid rgba(207, 221, 237, .62);
  box-shadow:
    inset -22px -28px 54px rgba(6, 27, 61, .055),
    inset 30px 26px 66px rgba(255,255,255,.72),
    0 28px 70px rgba(6, 27, 61, .075);
  backdrop-filter: blur(3px);
}

.visibility-sphere::before,
.visibility-sphere::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  pointer-events: none;
}

.visibility-sphere::before {
  border: 1px solid rgba(6,42,94,.10);
  box-shadow:
    inset 0 0 0 24px rgba(255,255,255,.11),
    inset 0 0 0 48px rgba(6,42,94,.035),
    inset 0 0 0 82px rgba(255,255,255,.08);
}

.visibility-sphere::after {
  inset: 14% 7%;
  border-top: 1px solid rgba(6,42,94,.10);
  border-bottom: 1px solid rgba(6,42,94,.07);
  transform: rotate(-10deg);
  opacity: .55;
}

.sphere-grid {
  opacity: .48;
  background:
    radial-gradient(circle at 35% 34%, rgba(6,42,94,.18) 0 1px, transparent 1.5px) 0 0 / 16px 16px,
    radial-gradient(circle at 72% 44%, rgba(6,42,94,.10) 0 1px, transparent 1.7px) 4px 8px / 24px 24px;
}

.sphere-shine {
  opacity: .74;
  background:
    linear-gradient(135deg, rgba(255,255,255,.64), transparent 36%),
    radial-gradient(circle at 72% 72%, rgba(3,27,61,.045), transparent 34%);
}

.hero-glow {
  opacity: .84;
  filter: blur(10px);
}

.hero-card {
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 42px rgba(6,27,61,.10);
}

.uae-map-core {
  position: absolute;
  left: 19%;
  top: 27%;
  width: 64%;
  height: 48%;
  z-index: 4;
  overflow: visible;
  filter: drop-shadow(0 16px 30px rgba(6,42,94,.10));
}

.uae-map-glow {
  fill: rgba(10, 54, 120, .055);
  stroke: rgba(10, 54, 120, .10);
  stroke-width: 1.2;
}

.uae-map-line {
  fill: none;
  stroke: rgba(6,42,94,.28);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-dasharray: 4 7;
  animation: uaeMapPulse 4.8s ease-in-out infinite;
}

.uae-map-dots circle {
  fill: rgba(6,42,94,.58);
  animation: nodePulse 3.6s ease-in-out infinite;
}

.uae-map-dots circle:nth-child(2) { animation-delay: .35s; }
.uae-map-dots circle:nth-child(3) { animation-delay: .7s; }
.uae-map-dots circle:nth-child(4) { animation-delay: 1.05s; }
.uae-map-dots circle:nth-child(5) { animation-delay: 1.4s; }
.uae-map-dots circle:nth-child(6) { animation-delay: 1.75s; }

@keyframes uaeMapPulse {
  0%, 100% { opacity: .55; filter: drop-shadow(0 0 0 rgba(10,54,120,0)); }
  50% { opacity: .92; filter: drop-shadow(0 0 8px rgba(10,54,120,.18)); }
}

/* Award-winning hero redesign: LeadX Growth Engine */
.award-hero {
  min-height: 560px;
  isolation: isolate;
  perspective: 1100px;
}

.console-glow {
  position: absolute;
  inset: 8% 2% 2%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(10, 54, 120, .20), transparent 34%),
    radial-gradient(circle at 56% 56%, rgba(238, 245, 255, .96), transparent 48%),
    radial-gradient(circle at 42% 35%, rgba(255,255,255,.9), transparent 42%);
  filter: blur(8px);
  animation: consoleGlow 9s ease-in-out infinite;
}

.growth-console {
  position: relative;
  width: min(620px, 94vw);
  aspect-ratio: 1.42;
  border: 1px solid rgba(207, 221, 237, .86);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,251,255,.83)),
    radial-gradient(circle at 62% 42%, rgba(10,54,120,.08), transparent 32%);
  box-shadow:
    0 34px 80px rgba(6, 27, 61, .14),
    inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
  transform: rotateX(4deg) rotateY(-7deg);
  animation: consoleFloat 7.5s ease-in-out infinite;
}

.growth-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,42,94,.045) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(6,42,94,.04) 1px, transparent 1px) 0 0 / 34px 34px,
    radial-gradient(circle at 68% 44%, rgba(6,42,94,.12) 0 1px, transparent 1.5px) 0 0 / 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 86%, transparent 100%);
  opacity: .62;
}

.growth-console::after {
  content: "";
  position: absolute;
  inset: 24px 28px;
  border: 1px solid rgba(207, 221, 237, .58);
  border-radius: 20px;
  pointer-events: none;
}

.console-topbar {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(207, 221, 237, .82);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 26px rgba(6, 27, 61, .06);
  backdrop-filter: blur(12px);
}

.console-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10, 54, 120, .28);
}

.console-topbar span:first-child {
  background: var(--green);
}

.console-topbar strong {
  margin-left: 6px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.website-panel {
  position: absolute;
  left: 52px;
  top: 96px;
  z-index: 3;
  width: 210px;
  min-height: 238px;
  padding: 18px;
  border: 1px solid rgba(207, 221, 237, .9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.9));
  box-shadow:
    0 22px 52px rgba(6,27,61,.11),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.website-header {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--navy-900) 0 18%, rgba(6,42,94,.12) 18% 100%);
}

.website-hero-line {
  width: 82%;
  height: 22px;
  margin-top: 22px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

.website-copy-line,
.website-copy-line.short {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(93,111,138,.18);
}

.website-copy-line.short {
  width: 68%;
}

.website-copy-line:not(.short) {
  width: 90%;
}

.website-cta {
  width: 92px;
  height: 26px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 10px 24px rgba(6,42,94,.18);
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.website-grid span {
  height: 46px;
  border: 1px solid rgba(207,221,237,.88);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(238,245,255,.78));
}

.lead-core {
  position: absolute;
  left: 48%;
  top: 50%;
  z-index: 5;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(207, 221, 237, .76);
  border-radius: 50%;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.96), rgba(238,245,255,.56) 38%, rgba(255,255,255,.36) 68%),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(238,245,255,.42));
  box-shadow:
    0 24px 54px rgba(6,27,61,.16),
    inset 0 0 36px rgba(255,255,255,.76);
  transform: translate(-50%, -50%);
}

.lead-core strong {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.04em;
}

.lead-core small {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.core-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(6,42,94,.14);
  border-radius: 50%;
  animation: corePulse 3.8s ease-in-out infinite;
}

.core-ring-b {
  inset: -28px;
  opacity: .52;
  animation-delay: 1.3s;
}

.conversion-flow {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.flow-line {
  fill: none;
  stroke-linecap: round;
}

.flow-line-main {
  stroke: rgba(6,42,94,.62);
  stroke-width: 3;
  stroke-dasharray: 24 330;
  animation: flowDash 4.8s linear infinite;
  filter: drop-shadow(0 6px 8px rgba(6,42,94,.12));
}

.flow-line-alt {
  stroke: rgba(37,211,102,.52);
  stroke-width: 2.4;
  stroke-dasharray: 18 360;
  animation: flowDash 6.2s linear infinite reverse;
}

.flow-dot {
  position: absolute;
  z-index: 6;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 8px rgba(6,42,94,.08), 0 12px 22px rgba(6,27,61,.14);
}

.dot-a {
  left: 17%;
  top: 30%;
  animation: dotMoveA 5.4s cubic-bezier(.5,0,.24,1) infinite;
}

.dot-b {
  left: 20%;
  bottom: 25%;
  background: var(--green);
  animation: dotMoveB 6.4s cubic-bezier(.5,0,.24,1) infinite 1.2s;
}

.dot-c {
  right: 13%;
  top: 48%;
  animation: dotPulse 2.6s ease-in-out infinite;
}

.market-signal-zone {
  position: absolute;
  right: 72px;
  top: 128px;
  z-index: 5;
  width: 142px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207,221,237,.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 58% 48%, rgba(255,255,255,.86), rgba(238,245,255,.45) 58%, rgba(255,255,255,.30)),
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(238,245,255,.30));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 18px 38px rgba(6,27,61,.08);
  overflow: hidden;
}

.market-signal-zone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 35%, rgba(6,42,94,.28) 0 1px, transparent 1.6px) 0 0 / 14px 14px,
    radial-gradient(circle at 70% 62%, rgba(6,42,94,.16) 0 1px, transparent 1.6px) 4px 5px / 18px 18px;
  opacity: .5;
  mask-image: radial-gradient(circle at 55% 50%, #000 0 58%, transparent 82%);
}

.market-signal-zone strong {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(6,42,94,.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
}

.market-map {
  position: absolute;
  left: 28px;
  top: 34px;
  width: 72px;
  height: 42px;
  border-radius: 999px 18px 16px 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255,255,255,.96) 0 3px, transparent 3.8px),
    linear-gradient(135deg, rgba(6,42,94,.30), rgba(6,42,94,.08));
  clip-path: polygon(0 28%, 18% 16%, 36% 31%, 55% 21%, 77% 34%, 100% 54%, 84% 76%, 57% 71%, 35% 84%, 14% 69%);
  box-shadow:
    inset 0 0 0 1px rgba(6,42,94,.28),
    0 0 22px rgba(10,54,120,.13);
  animation: marketMapPulse 4.4s ease-in-out infinite;
}

.market-pin {
  position: absolute;
  right: 35px;
  top: 36px;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  transform: rotate(-45deg);
  box-shadow: 0 12px 22px rgba(6,27,61,.18);
  animation: marketPinFloat 3.8s ease-in-out infinite;
}

.market-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}

.market-ripple {
  position: absolute;
  right: 20px;
  top: 54px;
  width: 54px;
  height: 24px;
  border: 1px solid rgba(6,42,94,.22);
  border-radius: 50%;
  animation: marketRipple 3.2s ease-out infinite;
}

.uae-intel-badge {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(207,221,237,.9);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 32px rgba(6,27,61,.10);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.uae-mini-map {
  width: 36px;
  height: 18px;
  border-radius: 999px 12px 10px 999px;
  background:
    radial-gradient(circle at 68% 50%, #fff 0 2px, transparent 2.6px),
    linear-gradient(135deg, rgba(6,42,94,.18), rgba(6,42,94,.04));
  clip-path: polygon(0 28%, 20% 17%, 38% 30%, 58% 20%, 82% 35%, 100% 55%, 85% 77%, 56% 72%, 35% 83%, 16% 70%);
  box-shadow: inset 0 0 0 1px rgba(6,42,94,.24), 0 0 18px rgba(10,54,120,.14);
}

.console-card,
.metric-card {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(207,221,237,.9);
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 52px rgba(6,27,61,.13);
  backdrop-filter: blur(15px);
  animation: cardDrift 6s ease-in-out infinite, consoleCardIn 800ms ease both;
}

.console-card {
  min-width: 222px;
  padding: 14px 16px;
  border-radius: 16px;
}

.console-card strong,
.metric-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.console-card span,
.metric-card span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 850;
}

.console-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207,221,237,.9);
  border-radius: 13px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff, #f4f8fe);
}

.console-card-search {
  left: 2%;
  top: 18%;
  animation-delay: .18s, .08s;
}

.console-card-google {
  right: 0;
  top: 18%;
  animation-delay: .75s, .28s;
}

.console-card-whatsapp {
  right: 4%;
  bottom: 19%;
  animation-delay: 1.2s, .48s;
}

.console-card-tracking {
  left: 7%;
  bottom: 13%;
  animation-delay: 1.55s, .68s;
}

.metric-card {
  right: 19%;
  top: 50%;
  display: block;
  min-width: 168px;
  padding: 14px 16px;
  border-radius: 18px;
  transform: translateY(-50%);
  animation-delay: 1.7s, .82s;
}

.metric-card strong {
  color: var(--green);
}

@keyframes consoleFloat {
  0%, 100% { transform: rotateX(4deg) rotateY(-7deg) translateY(0) scale(1); }
  50% { transform: rotateX(3deg) rotateY(-5deg) translateY(-10px) scale(1.01); }
}

@keyframes consoleFloatMobile {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.006); }
}

@keyframes consoleGlow {
  0%, 100% { transform: translateY(0) scale(1); opacity: .82; }
  50% { transform: translateY(-10px) scale(1.05); opacity: 1; }
}

@keyframes corePulse {
  0%, 100% { opacity: .42; transform: scale(.96); }
  50% { opacity: .86; transform: scale(1.05); }
}

@keyframes flowDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -354; }
}

@keyframes dotMoveA {
  0% { opacity: 0; transform: translate(0, 0) scale(.8); }
  15% { opacity: 1; }
  45% { transform: translate(180px, 48px) scale(1); }
  82% { opacity: 1; transform: translate(390px, 64px) scale(.98); }
  100% { opacity: 0; transform: translate(420px, 54px) scale(.7); }
}

@keyframes dotMoveB {
  0% { opacity: 0; transform: translate(0, 0) scale(.8); }
  14% { opacity: 1; }
  52% { transform: translate(205px, -84px) scale(1); }
  86% { opacity: 1; transform: translate(378px, -176px) scale(.95); }
  100% { opacity: 0; transform: translate(408px, -190px) scale(.7); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(.86); box-shadow: 0 0 0 6px rgba(6,42,94,.08), 0 12px 22px rgba(6,27,61,.14); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 18px rgba(6,42,94,.02), 0 16px 30px rgba(6,27,61,.16); }
}

@keyframes marketMapPulse {
  0%, 100% { opacity: .74; filter: drop-shadow(0 0 0 rgba(10,54,120,0)); }
  50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(10,54,120,.20)); }
}

@keyframes marketPinFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@keyframes marketRipple {
  0% { opacity: .48; transform: scale(.72); }
  80%, 100% { opacity: 0; transform: scale(1.48); }
}

@keyframes cardDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes consoleCardIn {
  from { opacity: 0; translate: 0 18px; scale: .96; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}

.hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 66%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.globe-scene {
  isolation: isolate;
  overflow: visible;
}

.globe-scene .orbit {
  z-index: 0;
  box-shadow:
    0 0 0 42px rgba(6, 42, 94, 0.025),
    0 0 0 84px rgba(6, 42, 94, 0.018);
}

.globe-scene .globe {
  z-index: 1;
}

.globe-scene .search-card,
.globe-scene .hero-float-card {
  z-index: 4;
}

.search-card {
  min-width: 204px;
}

.hero-float-card {
  min-width: 218px;
  border-color: #cfdded;
  background: rgba(255,255,255,.96);
}

.hero-float-1 {
  right: 7%;
  top: 24%;
}

.hero-float-2 {
  right: 6%;
  bottom: 23%;
}

.hero-float-3 {
  left: 12%;
  bottom: 18%;
}

.trust-strip {
  margin-top: 8px;
}

.trust-strip.reveal {
  opacity: 1;
  transform: none;
}

.engine-wheel::before {
  z-index: 2;
}

.engine-center {
  z-index: 8;
}

.engine-part {
  z-index: 7;
}

.engine-part.dark {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(3, 27, 61, .25);
}

.engine-part:not(.dark) {
  color: var(--navy-900);
}

.engine-center {
  inset: 31.5%;
}

.engine-center small {
  max-width: 110px;
}

.section-head {
  margin-bottom: 22px;
}

.service-card h3 {
  min-height: 42px;
}

.section-head.center {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
}

.section-head.center .section-text {
  max-width: 720px;
  margin-inline: auto;
}

.seo-system {
  background:
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.system-grid .plain-card {
  display: block;
  min-height: 220px;
}

.system-grid .plain-card .icon-line {
  margin-bottom: 20px;
}

.system-grid .plain-card h3 {
  margin: 0 0 10px;
}

.system-grid .plain-card p {
  margin: 0;
  max-width: 28ch;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(217, 229, 243, .95);
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 107, 255, .28);
  box-shadow: 0 20px 42px rgba(6, 26, 58, .10);
}

.service-card a {
  margin-top: auto;
  transition: color 200ms ease, transform 200ms ease;
}

.service-card:hover a {
  color: var(--blue-600);
  transform: translateX(3px);
}

.sample-work {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(6, 26, 58, .10);
}

.work-shot {
  min-height: 168px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(217,229,243,.95);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(6,26,58,.06) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(6,26,58,.045) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(145deg, #fff, #eef5ff);
}

.work-shot span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy-900);
  font-weight: 950;
}

.work-shot strong {
  color: var(--navy-900);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-card small {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-600);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.work-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.work-card a {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 950;
}

.audit-premium {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, .85fr);
  padding: 34px;
  background:
    radial-gradient(circle at 86% 20%, rgba(18,107,255,.10), transparent 34%),
    linear-gradient(135deg, #fff, var(--bg-soft));
}

.audit-premium h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.audit-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.audit-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(217,229,243,.9);
  border-radius: 12px;
  background: #fff;
}

.audit-row span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audit-row strong {
  color: var(--navy-900);
  text-align: right;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
}

.whatsapp-float {
  pointer-events: none;
}

.whatsapp-button {
  pointer-events: auto;
}

.whatsapp-bubble {
  display: none;
}

.industry-row {
  grid-template-columns: repeat(8, 1fr);
}

.footer-main {
  gap: 42px;
  padding: 46px 0;
}

.footer .btn {
  box-shadow: none;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at 78% 18%, rgba(234, 242, 251, .92), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: 42px;
  align-items: center;
}

.service-visual {
  min-height: 330px;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(238,245,255,.98), transparent 38%),
    #fff;
  box-shadow: var(--shadow);
}

.visual-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.visual-card:nth-child(2) {
  margin-left: 38px;
}

.visual-card:nth-child(3) {
  margin-right: 30px;
}

.service-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-content-grid .plain-card {
  display: block;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-links a {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy-900);
  background: #fff;
  font-weight: 900;
  font-size: 13px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy-900);
}

.breadcrumb span:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--text-muted);
}

.seo-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, var(--bg-soft));
  box-shadow: var(--shadow-soft);
}

.seo-editorial a {
  color: var(--blue-600);
  font-weight: 900;
}

.seo-side-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(217,229,243,.95);
  border-radius: 16px;
  background: #fff;
}

.seo-side-list strong {
  color: var(--navy-900);
}

.seo-side-list span {
  color: var(--text-muted);
  font-size: 14px;
}

.seo-link-grid,
.related-grid,
.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seo-link-card,
.related-card,
.blog-topic-card {
  display: block;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.seo-link-card:hover,
.related-card:hover,
.blog-topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18,107,255,.30);
  box-shadow: 0 18px 38px rgba(6,26,58,.08);
}

.seo-link-card .icon-line,
.related-card .icon-line,
.blog-topic-card .icon-line {
  margin-bottom: 14px;
}

.seo-link-card h3,
.related-card h3,
.blog-topic-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.seo-link-card p,
.related-card p,
.blog-topic-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.location-chips span {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy-900);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.service-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-deep-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-deep-card h2 {
  margin-top: 0;
}

.service-deep-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.whatsapp-button {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
  animation: whatsPulse 2.4s ease-in-out infinite;
  pointer-events: auto;
}

.whatsapp-button svg {
  width: 31px;
  height: 31px;
}

.whatsapp-bubble {
  display: none;
}

.whatsapp-bubble.is-visible {
  display: none;
}

.whatsapp-bubble p {
  margin: 5px 0 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.whatsapp-bubble a {
  color: #128c47;
  font-weight: 900;
}

.whatsapp-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 900;
}

body.menu-open {
  overflow: hidden;
}

@keyframes whatsPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

.fade-up-1,
.fade-up-2,
.fade-up-3,
.fade-up-4 {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 700ms ease forwards;
}

.fade-up-2 { animation-delay: 100ms; }
.fade-up-3 { animation-delay: 200ms; }
.fade-up-4 { animation-delay: 300ms; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 0.55; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (max-width: 1120px) {
  .nav {
    gap: 18px;
  }

  .hero-grid,
  .quote-layout,
  .engine-grid,
  .quote-engine,
  .audit-card {
    grid-template-columns: 1fr;
  }

  .quote-layout {
    gap: 22px;
  }

  .trust-strip,
  .why-grid,
  .quote-large-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card:nth-child(2) {
    border-right: 0;
  }

  .trust-card:nth-child(1),
  .trust-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

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

  .seo-link-grid,
  .related-grid,
  .blog-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-editorial {
    grid-template-columns: 1fr;
  }

  .industry-row,
  .category-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .award-hero {
    min-height: 620px;
  }

  .growth-console {
    width: min(570px, 92vw);
  }

  .console-card-search {
    left: 0;
    top: 10%;
  }

  .console-card-google {
    right: 0;
    top: 10%;
  }

  .console-card-whatsapp {
    right: 0;
    bottom: 12%;
  }

  .console-card-tracking {
    left: 0;
    bottom: 10%;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .nav {
    position: fixed;
    inset: 86px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav a::after {
    bottom: 8px;
    left: 14px;
    right: auto;
    width: 34px;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-grid {
    min-height: auto;
  }

  .globe-scene {
    min-height: 360px;
  }

  .trust-strip,
  .three-grid,
  .split-row,
  .step-row,
  .why-grid,
  .quote-large-grid,
  .faq-trust,
  .contact-grid,
  .form-grid,
  .steps-line {
    grid-template-columns: 1fr;
  }

  .trust-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .work-grid,
  .seo-link-grid,
  .related-grid,
  .blog-topic-grid,
  .industry-row,
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-deep-grid {
    grid-template-columns: 1fr;
  }

  .quote-engine,
  .audit-card,
  .cta-banner {
    padding: 22px;
  }

  .audit-premium {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .check-list,
  .badge-row {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .service-hero-grid,
  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 10px;
  }

  .award-hero {
    min-height: 600px;
    width: 100%;
    overflow: hidden;
  }

  .growth-console {
    width: min(520px, 94vw);
    transform: none;
    animation-name: consoleFloatMobile;
  }

  .website-panel {
    left: 34px;
    top: 92px;
    width: 190px;
    min-height: 218px;
  }

  .lead-core {
    left: 58%;
    width: 132px;
    height: 132px;
  }

  .market-signal-zone {
    right: 34px;
    top: 118px;
    width: 124px;
    height: 102px;
  }

  .conversion-flow {
    transform: scale(.94);
    transform-origin: center;
  }

  .console-card {
    min-width: 198px;
    padding: 12px 13px;
  }

  .console-card-search {
    left: 2%;
    top: 4%;
  }

  .console-card-google {
    right: 2%;
    top: 18%;
  }

  .console-card-whatsapp {
    right: 4%;
    bottom: 9%;
  }

  .console-card-tracking {
    left: 4%;
    bottom: 5%;
  }

  .metric-card {
    right: 8%;
    top: 50%;
  }

  .visibility-sphere {
    width: min(390px, 86vw);
  }

  .hero-card {
    min-width: 188px;
    padding: 12px 13px;
    gap: 10px;
  }

  .hero-card-icon {
    width: 36px;
    height: 36px;
  }

  .hero-card strong {
    font-size: 11px;
  }

  .hero-card span {
    font-size: 12px;
  }

  .hero-card-search {
    left: 0;
    top: 20%;
  }

  .hero-card-google {
    right: 0;
    top: 9%;
  }

  .hero-card-whatsapp {
    right: 0;
    bottom: 20%;
  }

  .hero-card-tracking {
    left: 0;
    bottom: 9%;
  }

  .signal-node,
  .market-badge {
    display: none;
  }

  .whatsapp-bubble {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-button {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav {
    inset: 74px 12px auto;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .form-card .btn {
    width: 100%;
  }

  .globe-scene {
    min-height: 295px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .award-hero {
    min-height: 620px;
  }

  .growth-console {
    width: min(360px, 94vw);
    aspect-ratio: .86;
    border-radius: 22px;
  }

  .growth-console::after {
    inset: 18px;
  }

  .console-topbar {
    left: 18px;
    right: 18px;
    top: 16px;
  }

  .console-topbar strong {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .website-panel {
    left: 28px;
    top: 78px;
    width: 158px;
    min-height: 190px;
    padding: 14px;
  }

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

  .website-grid span:last-child {
    display: none;
  }

  .lead-core {
    left: 64%;
    top: 45%;
    width: 112px;
    height: 112px;
  }

  .lead-core strong {
    font-size: 21px;
  }

  .lead-core small {
    margin-top: 6px;
    font-size: 8px;
  }

  .conversion-flow,
  .flow-dot,
  .market-signal-zone,
  .metric-card {
    display: none;
  }

  .uae-intel-badge {
    left: 26px;
    right: auto;
    bottom: 24px;
    font-size: 9px;
  }

  .console-card {
    min-width: 0;
    width: min(225px, 72vw);
    gap: 10px;
    padding: 11px;
    border-radius: 14px;
  }

  .console-card strong {
    font-size: 10px;
  }

  .console-card span {
    font-size: 11px;
  }

  .console-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .console-card-search {
    left: 2%;
    top: 0;
  }

  .console-card-google {
    right: 2%;
    top: 17%;
  }

  .console-card-whatsapp {
    right: 2%;
    bottom: 8%;
  }

  .console-card-tracking {
    left: 2%;
    bottom: 2%;
  }

  .visibility-sphere {
    width: min(310px, 82vw);
  }

  .hero-card {
    min-width: 162px;
    max-width: 178px;
    padding: 10px;
  }

  .hero-card-icon {
    display: none;
  }

  .hero-card-search {
    left: 2%;
    top: 12%;
  }

  .hero-card-google {
    right: 0;
    top: 3%;
  }

  .hero-card-whatsapp {
    right: 0;
    bottom: 19%;
  }

  .hero-card-tracking {
    left: 2%;
    bottom: 7%;
  }

  .signal-path {
    opacity: .55;
  }

  .search-card {
    left: 0;
    top: 18%;
    padding: 14px;
  }

  .pin {
    right: 18%;
  }

  .services-grid,
  .work-grid,
  .seo-link-grid,
  .related-grid,
  .blog-topic-grid,
  .industry-row,
  .category-row {
    grid-template-columns: 1fr;
  }

  .seo-editorial {
    padding: 24px;
  }

  .audit-premium {
    padding: 24px;
  }

  .audit-row {
    display: grid;
    gap: 4px;
  }

  .audit-row strong {
    text-align: left;
  }

  .industry-item,
  .category-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* WordPress theme integration */
.nav ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after { transform: scaleX(1); }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.post-card .section-text { margin-bottom: 18px; }
.alignwide { max-width: 1180px; margin-left: auto; margin-right: auto; }
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor { color: inherit; }
@media (max-width: 980px) { .nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; } }
