/* Genius Services — landing page styles (used by custom Elementor widgets) */
:root {
  --navy: #080F55;
  --navy-2: #111A6E;
  --blue: #4BBFE8;
  --blue-deep: #2A93C4;
  --bg-light: #F1F7FD;
  --bg-soft: #F6F8FC;
  --ink: #111827;
  --muted: #5A6376;
  --line: #E4EAF3;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(8, 15, 85, .08);
  --shadow-sm: 0 6px 20px rgba(8, 15, 85, .06);
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px
}

.eyebrow i {
  font-size: 12px
}

.section {
  padding: 60px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: .25s;
  white-space: nowrap
}

.btn-primary {
  background: var(--blue);
  color: var(--navy)
}

.btn-primary:hover {
  background: #63cbef;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(75, 191, 232, .4)
}

.btn-navy {
  background: var(--navy);
  color: #fff
}

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

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line)
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35)
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy)
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex: none
}

.logo-txt {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .02em;
  line-height: 1;
  color: #fff
}

.logo-txt span {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .34em;
  color: var(--blue);
  margin-top: 3px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none
}

.nav-links a {
  color: #dfe4f5;
  font-weight: 500;
  font-size: 15px;
  transition: .2s
}

.nav-links a:hover {
  color: #fff
}

.nav-links a i {
  font-size: 10px;
  margin-left: 5px;
  opacity: .7
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.phone-mini {
  color: #fff;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px
}

.phone-mini i {
  color: var(--blue)
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  padding: 4px
}

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0c1875 55%, #12207f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
	padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(75, 191, 232, .28), transparent 62%);
  border-radius: 50%
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 92px;
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #5be36a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 227, 106, .2)
}

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  margin-bottom: 20px
}

.hero h1 .hl {
  color: var(--blue)
}

.hero p.lead {
  font-size: 18px;
  color: #c6cdea;
  max-width: 520px;
  margin-bottom: 32px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.stars {
  color: #FFC542;
  letter-spacing: 2px
}

.hero-trust .rate {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 15px
}

.hero-trust .sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .18)
}

.hero-trust small {
  display: block;
  color: #aab2d8;
  font-size: 12.5px;
  margin-top: 2px
}

.hero-visual {
  position: relative
}

.hero-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
  aspect-ratio: 4/4.4;
  background: #c9d3e8
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 17px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
  display: flex;
  align-items: center;
  gap: 12px
}

.float-review {
  bottom: 26px;
  left: -28px
}

.float-review .g {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px
}

.float-review .g i {
  color: #4285F4
}

.float-review .rate {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  color: var(--navy);
  font-size: 18px;
  line-height: 1
}

.float-review small {
  color: var(--muted);
  font-size: 11.5px
}

.float-book {
  top: 24px;
  right: -22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px
}

.float-book .k {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  color: var(--navy);
  font-size: 22px;
  line-height: 1
}

.float-book small {
  color: var(--muted);
  font-size: 11.5px
}

/* TRUST STRIP */
.strip {
  background: var(--bg-light);
  border-bottom: 1px solid var(--line)
}

.strip-in {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy)
}

.strip-item i {
  color: var(--blue-deep);
  font-size: 19px
}

/* CENTER HEAD */
.center-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 54px
}

.center-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px
}

.center-head p {
  color: var(--muted);
  font-size: 17px
}

/* NEED */
.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.need-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: .28s;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.need-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s
}

.need-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.need-card:hover::after {
  transform: scaleX(1)
}

.need-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--blue-deep)
}

.need-card h3 {
  font-size: 19px;
  margin-bottom: 8px
}

.need-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px
}

.need-card .lnk {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-deep)
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .28s
}

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

.svc-thumb {
  aspect-ratio: 16/10;
  background: #dbe3f0;
  position: relative;
  overflow: hidden
}

.svc-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: .5s
}

.svc-card:hover .svc-thumb img {
  transform: scale(1.06)
}

.svc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 15, 85, .85);
  color: #fff;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 5px 11px;
  border-radius: 100px
}

.svc-ico {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy)
}

.svc-body {
  padding: 22px 22px 24px
}

.svc-body h3 {
  font-size: 20px;
  margin-bottom: 9px
}

.svc-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 15px
}

.svc-body .lnk {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.center-btn {
  text-align: center;
  margin-top: 46px
}

/* CTA BAND */
.ctaband {
  background: linear-gradient(120deg, var(--navy), #101d85);
  color: #fff;
  position: relative;
  overflow: hidden
}

.ctaband::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(75, 191, 232, .22), transparent 62%);
  border-radius: 50%
}

.ctaband-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap
}

.ctaband h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  max-width: 640px
}

.ctaband p {
  color: #c3caea;
  margin-top: 8px;
  font-size: 15px;
  max-width: 560px
}

.ctaband-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* ZIGZAG */
.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.zig+.zig {
  margin-top: 104px
}

.zig.rev .zig-media {
  order: 2
}

.zig-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  background: #dbe3f0;
  position: relative
}

.zig-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover
}

.zig-media .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.zig-media .badge i {
  color: var(--blue-deep)
}

.zig h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 18px
}

.zig p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px
}

.ticks {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 13px
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink)
}

.ticks li i {
  color: var(--blue-deep);
  margin-top: 3px;
  font-size: 16px
}

/* WHY */
.why {
  background: var(--bg-light)
}

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

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm)
}

.why-ico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 9px
}

.why-card p {
  color: var(--muted);
  font-size: 14.5px
}

/* BEFORE/AFTER */
.ba-wrap {
  max-width: 820px;
  margin: 0 auto
}

.ba {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: #cdd6e6;
  user-select: none;
  touch-action: none
}

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ba .after-img {
  clip-path: inset(0 0 0 50%)
}

.ba-label {
  position: absolute;
  top: 14px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  color: #fff;
  background: rgba(8, 15, 85, .75);
  padding: 6px 13px;
  border-radius: 100px
}

.ba-label.bl {
  left: 14px
}

.ba-label.al {
  right: 14px
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, .3);
  transform: translateX(-50%)
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  color: var(--navy);
  font-size: 16px
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.step {
  position: relative;
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius)
}

.step .num {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 44px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px
}

.step .sico {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 26px;
  color: var(--bg-light)
}

.step h3 {
  font-size: 20px;
  margin-bottom: 9px
}

.step p {
  color: var(--muted);
  font-size: 14.5px
}

.plan .btn:hover {
	color: #fff !important;
}
/* .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--line)
} */

/* PLANS (no prices) */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch
}

.plan {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  position: relative;
  transition: .25s
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.plan.pop {
  border-color: var(--blue);
  box-shadow: 0 20px 50px rgba(75, 191, 232, .22)
}

.plan .flag {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--blue);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 100px
}

.plan .pico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-deep);
  margin-bottom: 18px
}

.plan h3 {
  font-size: 22px;
  margin-bottom: 8px
}

.plan .desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px
}

.plan ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink)
}

.plan ul li i {
  color: var(--blue-deep)
}

.plan .btn {
  width: 100%;
  justify-content: center
}

/* COMMERCIAL */
.commercial {
  background: linear-gradient(155deg, var(--navy), #0c1875);
  color: #fff;
  position: relative;
  overflow: hidden
}

.commercial::before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(75, 191, 232, .22), transparent 62%);
  border-radius: 50%
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2
}

.commercial .eyebrow {
  color: var(--blue)
}

.commercial h2 {
  color: #fff;
  font-size: clamp(28px, 3.3vw, 40px);
  font-weight: 800;
  margin-bottom: 18px
}

.commercial p {
  color: #c3caea;
  font-size: 16px;
  margin-bottom: 26px
}

.comm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 30px
}

.comm-tags span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 16px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.comm-tags span i {
  color: var(--blue)
}

.comm-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.comm-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 24px 22px
}

.comm-stat i {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 12px
}

.comm-stat .k {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px
}

.comm-stat .l {
  color: #c3caea;
  font-size: 14px
}

.pm {
  background: var(--bg-soft)
}

/* AREAS */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.area {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition: .22s;
	      justify-content: center ;
}

.area:hover {
  background: var(--navy);
 color: var(--blue-deep) !important;
  border-color: var(--navy);
  transform: translateY(-3px)
}

.area i {
  color: var(--blue-deep);
  transition: .22s
}

.area:hover i {
  color: var(--blue)
}

/* REVIEWS */
.reviews {
  background: var(--bg-light)
}

.rev-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 44px;
  flex-wrap: wrap
}

.rev-score {
  text-align: center
}

.rev-score .big {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 56px;
  color: var(--navy);
  line-height: 1
}

.rev-score .stars {
  font-size: 20px
}

.rev-score small {
  color: var(--muted);
  font-size: 13px
}

.rev-glogo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  color: var(--navy)
}

.rev-glogo i {
  color: #4285F4;
  font-size: 20px
}

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

.rev-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm)
}

.rev-card .quo {
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 10px
}

.rev-card .stars {
  color: #FFC542;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 13px
}

.rev-card p {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 18px
}

.rev-who {
  display: flex;
  align-items: center;
  gap: 11px
}

.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 16px
}

.rev-who .n {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy)
}

.rev-who .t {
  color: var(--muted);
  font-size: 12.5px
}

/* QUOTE FORM */
.quote {
  background: var(--white)
}

.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: stretch
}

.quote-info {
  background: linear-gradient(155deg, var(--navy), #0e1a80);
  border-radius: 22px;
  padding: 44px 40px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.quote-info::before {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(75, 191, 232, .25), transparent 62%);
  border-radius: 50%
}

.quote-info h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2
}

.quote-info p {
  color: #c3caea;
  font-size: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2
}

.qi-list {
  list-style: none;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 2
}

.qi-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start
}

.qi-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex: none
}

.qi-list li .n {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px
}

.qi-list li .v {
  color: #aeb6de;
  font-size: 13.5px
}

/* .quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow)
} */

.quote-form h3 {
  font-size: 22px;
  margin-bottom: 6px
}

.quote-form .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

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

.field label {
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
  font-size: 13px;
  color: var(--navy)
}

.field label i {
  color: var(--blue-deep);
  margin-right: 6px
}

/* .field input,
.field select,
.field textarea {
  font-family: 'Inter';
  font-size: 14.5px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: .2s;
  width: 100%
} */

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(75, 191, 232, .15)
}

.field textarea {
  resize: vertical;
  min-height: 90px
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 14px
}

.form-note i {
  color: var(--blue-deep);
  margin-right: 5px
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto
}

.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary .ic {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue-deep);
  transition: .25s
}

.faq[open] summary .ic {
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--navy)
}

.faq .ans {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px
}

/* FINAL CTA */
.final {
  background: linear-gradient(155deg, var(--navy), #101d85);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden
}

.final::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(75, 191, 232, .25), transparent 62%);
  border-radius: 50%
}

.final .in {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto
}

.final .fico {
  font-size: 38px;
  color: var(--blue);
  margin-bottom: 18px
}

.final h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  margin-bottom: 18px
}

.final p {
  color: #c6cdea;
  font-size: 18px;
  margin-bottom: 34px
}

.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
/* footer {
  background: #060B3E;
  color: #c3caea;
  padding: 70px 0 0
} */

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-brand .logo {
  margin-bottom: 18px
}

.foot-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 290px;
  margin-bottom: 18px
}

.foot-social {
  display: flex;
  gap: 10px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .2s
}

.foot-social a:hover {
  background: var(--blue);
  color: var(--navy)
}

.foot-col h4 {
  color: #fff;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  margin-bottom: 18px
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 11px
}

.foot-col ul li a {
  font-size: 14px;
  color: #aeb6de;
  transition: .2s
}

.foot-col ul li a:hover {
  color: var(--blue)
}

.foot-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 14px;
  color: #c3caea
}

.foot-contact i {
  color: var(--blue);
  margin-top: 3px;
  width: 16px;
  text-align: center
}

.foot-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #8b93bd
}

.foot-bottom b {
  color: #c3caea
}

/* MOBILE BAR */
.mbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 9px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px
}

.mbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px;
  border-radius: 10px;
  color: #fff;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 11px
}

.mbar a.q {
  background: var(--blue);
  color: var(--navy)
}

.mbar a i {
  font-size: 16px
}

/* Mobile nav dropdown (works if a header uses .nav-links / .burger classes) */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  padding: 8px 24px 18px;
  z-index: 99;
}

.nav-links.mobile-open a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  width: 100%
}

.nav-links.mobile-open li:last-child a {
  border-bottom: none
}

.burger.active i:before {
  content: "\f00d"
}

/* ============================================================
     RESPONSIVE — mobile-first breakpoints
     1024px  large tablet / small desktop
     900px   tablet (nav -> burger)
     768px   large phone / small tablet
     600px   phone
     480px   small phone
     380px   extra small phone
     ============================================================ */

/* ---------- 1024px ---------- */
@media(max-width:1024px) {
  .wrap {
    padding: 0 20px
  }

  .section {
    padding: 84px 0
  }

  .hero-grid {
    gap: 44px
  }

  .need-grid,
  .svc-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps,
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

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

  .comm-grid {
    gap: 40px
  }
}

/* ---------- 900px : tablet — nav becomes burger ---------- */
@media(max-width:900px) {

  .hero-grid,
  .comm-grid,
  .zig,
  .foot-grid,
  .quote-grid {
    grid-template-columns: 1fr
  }

  .zig.rev .zig-media {
    order: 0
  }

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

  .steps,
  .plans {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

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

  .nav-links,
  .phone-mini {
    display: none
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .hero {
    padding-bottom: 8px
  }

  .hero-grid {
    padding: 56px 0 64px;
    text-align: center
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions {
    justify-content: center
  }

  .hero-trust {
    justify-content: center
  }

  .hero-visual {
    max-width: 100%;
    margin: 36px auto 0
  }

  .float-review {
    left: -14px
  }

  .float-book {
    right: -10px
  }

  .section {
    padding: 64px 0
  }

  .zig+.zig {
    margin-top: 56px
  }

  .center-head {
    margin-bottom: 40px
  }

  .ctaband-in {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding: 38px 0
  }

  .comm-grid {
    text-align: left
  }

  .step:nth-child(2)::after,
  .step:nth-child(1)::after {
    display: none
  }

  .mbar {
    display: grid
  }

  body {
    padding-bottom: 66px
  }
}

/* ---------- 768px : large phones ---------- */
@media(max-width:768px) {
  .wrap {
    padding: 0 20px
  }

  .need-grid,
  .svc-grid,
  .why-grid,
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .steps,
  .plans {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

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

  .quote-grid {
    gap: 28px
  }

  .comm-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .comm-tags {
    gap: 9px
  }

  .comm-tags span {
    font-size: 13px;
    padding: 8px 13px
  }

  .section {
    padding: 56px 0
  }

  .zig+.zig {
    margin-top: 48px
  }

  h1 {
    font-size: clamp(30px, 7vw, 44px)
  }

  .center-head h2,
  .g-title {
    font-size: clamp(24px, 5.5vw, 34px)
  }

  .center-head {
    margin-bottom: 34px
  }

  .center-head p {
    font-size: 15.5px
  }

  .zig {
    gap: 34px
  }

  .zig h2,
  .zig .g-title {
    font-size: clamp(22px, 5.2vw, 30px)
  }

  .rev-top {
    gap: 18px
  }

  .rev-score .big {
    font-size: 44px
  }

  .quote-info,
  .quote-form {
    padding: 32px 26px;
    border-radius: 18px
  }

  .final h2,
  .final .g-title {
    font-size: clamp(26px, 6.5vw, 36px)
  }

  .final p,
  .final .g-sub {
    font-size: 16px
  }
}

/* ---------- 600px : phones ---------- */
@media(max-width:600px) {

  .need-grid,
  .svc-grid,
  .why-grid,
  .rev-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .strip-in {
    justify-content: center;
    gap: 16px 22px
  }

  .strip-item {
    font-size: 13px
  }

  .hero-visual {
    max-width: 100%
  }

  .float-card {
    padding: 11px 13px;
    gap: 9px
  }

  .float-review {
    left: -6px;
    bottom: 16px
  }

  .float-book {
    right: -6px;
    top: 16px
  }

  .float-book .k {
    font-size: 18px
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .hero-actions {
    flex-direction: column
  }

  .svc-body {
    padding: 18px 18px 20px
  }

  .why-card {
    padding: 24px 20px
  }

  .need-card {
    padding: 24px 20px
  }

  .plan {
    padding: 28px 24px
  }

  .comm-stat {
    padding: 18px 14px
  }

  .ba-wrap {
    padding: 0 4px
  }

  .g-acc-head {
    padding: 18px 18px;
    font-size: 15px
  }

  .g-acc-body-inner {
    padding: 0 18px 18px
  }

  .quote-info,
  .quote-form {
    padding: 26px 20px
  }

  .qi-list li {
    gap: 12px
  }

  .qi-ico {
    width: 38px;
    height: 38px
  }
}

/* ---------- 480px : small phones ---------- */
@media(max-width:480px) {
  .wrap {
    padding: 0 16px
  }

  .need-grid,
  .svc-grid,
  .why-grid,
  .rev-grid,
  .plans,
  .steps {
    grid-template-columns: 1fr
  }

  .area-grid,
  .comm-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .step:not(:last-child)::after {
    display: none
  }

  .section {
    padding: 48px 0
  }

  .zig+.zig {
    margin-top: 40px
  }

  .center-head {
    margin-bottom: 28px
  }

  h1 {
    font-size: clamp(28px, 8vw, 38px)
  }

  .hero p.lead {
    font-size: 16px
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 13px;
    text-align: center
  }

  .hero-trust {
    gap: 16px
  }

  .hero-visual {
    max-width: 100%;
    margin-top: 28px
  }

  .float-card {
    position: static;
    margin: 10px auto 0;
    box-shadow: var(--shadow-sm)
  }

  .float-review,
  .float-book {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center
  }

  .nav {
    height: 64px
  }

  .logo-mark {
    width: 34px;
    height: 34px
  }

  .logo-txt {
    font-size: 16px
  }

  .strip-in {
    gap: 12px 16px;
    padding: 16px 0
  }

  .strip-item {
    font-size: 12.5px
  }

  .strip-item i {
    font-size: 16px
  }

  .center-head h2,
  .g-title {
    font-size: clamp(22px, 6.5vw, 28px)
  }

  .center-head p,
  .g-sub {
    font-size: 14.5px
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 10px
  }

  .need-ico,
  .why-ico {
    width: 48px;
    height: 48px;
    font-size: 20px
  }

  .svc-thumb {
    aspect-ratio: 16/11
  }

  .svc-body h3 {
    font-size: 18px
  }

  .zig-media {
    border-radius: 16px
  }

  .zig-copy h2,
  .zig .g-title {
    font-size: clamp(21px, 6vw, 26px)
  }

  .ticks li {
    font-size: 14.5px
  }

  .plan {
    padding: 26px 22px
  }

  .plan .price,
  .plan h3 {
    font-size: 19px
  }

  .comm-tags span {
    font-size: 12.5px;
    padding: 7px 12px
  }

  .comm-stat .k {
    font-size: 26px
  }

  .area-grid {
    gap: 10px
  }

  .area {
    padding: 13px 12px;
    font-size: 13.5px
  }

  .rev-score .big {
    font-size: 38px
  }

  .rev-glogo {
    padding: 12px 16px;
    font-size: 14px
  }

  .rev-card {
    padding: 20px
  }

  .quote-info h2,
  .quote-info .g-title {
    font-size: 24px
  }

  .quote-form h3 {
    font-size: 19px
  }

  .field input,
  .field select,
  .field textarea {
    padding: 12px 13px;
    font-size: 14px
  }

  .g-acc-head {
    font-size: 14.5px;
    padding: 16px
  }

  .g-acc-ic {
    width: 22px;
    height: 22px;
    font-size: 11px
  }

  .final .fico {
    font-size: 30px
  }

  .final h2,
  .final .g-title {
    font-size: clamp(24px, 7.5vw, 32px)
  }

  .final-actions {
    flex-direction: column;
    width: 100%
  }

  .final-actions .btn {
    width: 100%;
    justify-content: center
  }

  .foot-grid {
    gap: 30px;
    padding-bottom: 34px
  }

  .foot-brand p {
    max-width: 100%
  }

  .foot-bottom {
    font-size: 11.5px;
    line-height: 1.7;
    padding: 18px 0
  }

  .mbar a {
    font-size: 10px;
    gap: 2px
  }

  .mbar a i {
    font-size: 15px
  }
}

/* ---------- 380px : extra small phones ---------- */
@media(max-width:380px) {
  .wrap {
    padding: 0 14px
  }

  h1 {
    font-size: 26px
  }

  .hero-badge {
    font-size: 11px
  }

  .btn {
    padding: 13px 20px;
    font-size: 14px
  }

  .center-head h2,
  .g-title {
    font-size: 21px
  }

  .need-grid,
  .svc-grid,
  .why-grid,
  .rev-grid {
    grid-template-columns: 1fr
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .comm-tags {
    gap: 7px
  }

  .foot-col {
    min-width: 0
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto
  }
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px
}

/* ============================================================
   Update pack: FA icon (font + svg) support, accordion animation
   ============================================================ */

/* Elementor ICONS control may output <i> (font) or <svg>; style both */
.need-ico i,
.need-ico svg,
.why-ico i,
.why-ico svg,
.svc-ico i,
.svc-ico svg,
.pico i,
.pico svg,
.step .sico,
.step .sico svg,
.qi-ico i,
.qi-ico svg,
.strip-item i,
.strip-item svg,
.area i,
.area svg,
.comm-tags span i,
.comm-tags span svg,
.comm-stat i,
.comm-stat svg,
.eyebrow i,
.eyebrow svg,
.zig-media .badge i,
.zig-media .badge svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -.1em
}

.why-ico svg {
  fill: #fff
}

.svc-ico {
  overflow: hidden
}

/* Proper accordion (JS driven, smooth default animation) */
.g-acc {
  max-width: 820px;
  margin: 0 auto
}

.g-acc-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s, border-color .25s
}

.g-acc-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm)
}

.g-acc-head {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.g-acc-head .q-txt {
  flex: 1
}

.g-acc-ic {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue-deep);
  transition: transform .35s ease, background .25s, color .25s
}

.g-acc-item.active .g-acc-ic {
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--navy)
}

.g-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4, 0, .2, 1)
}

.g-acc-body-inner {
  padding: 22px 24px 22px;
  color: var(--muted);
  font-size: 15px
}

/* step icon now wrapped in span.sico */
.step .sico {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 26px;
  color: var(--bg-light);
  line-height: 1
}

.step .sico i,
.step .sico svg {
  width: 1em;
  height: 1em;
  fill: currentColor
}

/* WYSIWYG-rendered text blocks (wpautop adds <p> tags) — keep spacing tight */
.g-card-text p,
.g-sub p,
.g-desc p,
.rev-card p p {
  margin: 0 0 8px
}

.g-card-text p:last-child,
.g-sub p:last-child,
.g-desc p:last-child {
  margin-bottom: 0
}

.g-card-title {
  color: inherit
}

/* Quote form shortcode area — empty on the live site until a shortcode is set */
.quote-form-shortcode {
  min-height: 0
}

.quote-form-placeholder {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  background: var(--bg-soft);
}

.quote-form-placeholder i {
  color: var(--blue-deep);
  margin-right: 6px
}