/* ============================================================
   AC Net Center — v2, faithful rebuild of the Wix site
   Measurements taken from acnetcenter.wixsite.com/website-1 at 1440px:
   980px content column, header 103px, section heights as on the source.
   Wix-licensed faces are swapped for the closest open equivalents:
     Avenir LT 35 Light  -> Nunito Sans 300
     DIN Next Light      -> Barlow 300
     Brandon Grot. Light -> Josefin Sans 300
     Lulo Clean One Bold -> Montserrat 700 (tracked caps)
   Poppins, Montserrat, Raleway, Roboto, Arial and Helvetica are the same.
   ============================================================ */

:root {
  --teal: #57bbbf;
  --blue: #3078be;
  --bright: #0979e6;
  --red: #f57676;
  --green: #a2d197;
  --navy: #002d8d;
  --purple: #8e5ff9;
  --steel: #5386b8;
  --ink: #292929;
  --gray: #605e5e;
  --light: #f2f2f2;
  --light-2: #f5f5f5;
  --dark: #404040;
  --footer: #a7c5ff;

  --poppins: "Poppins", Arial, sans-serif;
  --montserrat: "Montserrat", Arial, sans-serif;
  --raleway: "Raleway", Arial, sans-serif;
  --roboto: "Roboto", Arial, sans-serif;
  --avenir: "Nunito Sans", "Avenir", "Segoe UI", Arial, sans-serif;
  --din: "Barlow", "DIN Next", Arial, sans-serif;
  --brandon: "Josefin Sans", "Brandon Grotesque", Arial, sans-serif;
  --arial: Arial, Helvetica, sans-serif;
  --helvetica: Helvetica, Arial, sans-serif;

  --col: 980px;
  --wide: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #000;
  font-family: var(--avenir);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
b,
strong {
  font-weight: 700;
}

.col {
  width: 100%;
  max-width: var(--col);
  margin-inline: auto;
  padding-inline: 20px;
}
.wide {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: 20px;
}

/* colour helpers used inline in copy, matching the source's word colouring */
.teal {
  color: var(--teal);
}
.blue {
  color: var(--blue);
}
.bright {
  color: var(--bright);
}
.red {
  color: var(--red);
}
.green {
  color: var(--green);
}
.white {
  color: #fff;
}
.b {
  font-weight: 700;
}
.center {
  text-align: center;
}
.justify {
  text-align: justify;
}
.shadow-text {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 103px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.site-header .wide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  width: 139px;
  height: 50px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav a {
  font-family: var(--montserrat);
  font-size: 17px;
  color: #000;
  padding: 12px 18px;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 43px;
  border-radius: 20px;
  background: var(--purple);
  color: #fff;
  font-family: var(--arial);
  font-size: 16px;
  transition: background 0.2s;
}
.cta:hover {
  background: #7a4ae6;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: #000;
  transition: transform 0.3s, opacity 0.2s;
}
.burger span:nth-child(1) {
  top: 14px;
}
.burger span:nth-child(2) {
  top: 21px;
}
.burger span:nth-child(3) {
  top: 28px;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .site-header {
    height: 80px;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    padding: 8px 0 16px;
  }
  .site-nav[data-open="true"] {
    display: flex;
  }
  .site-nav a {
    padding: 14px 28px;
    font-size: 18px;
  }
  .site-header .cta {
    display: none;
  }
  .site-nav .cta {
    display: inline-flex;
    margin: 10px 28px 0;
  }
  .burger {
    display: block;
  }
}
@media (min-width: 1001px) {
  .site-nav .cta {
    display: none;
  }
}

/* ---------- generic section blocks ---------- */
.section {
  position: relative;
  padding: 80px 0;
}
.bg-light {
  background: var(--light);
}
.bg-light-2 {
  background: var(--light-2);
}
.bg-white {
  background: #fff;
}
.bg-dark {
  background: var(--dark);
}

/* photo band with a dark overlay, as every Wix strip on the source */
.strip {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.strip__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, var(--dim, 0.45));
}

/* short accent underline used under headings on the source */
.rule {
  display: block;
  width: 40px;
  height: 2px;
  background: currentColor;
  margin-top: 22px;
}

/* the source's white pill buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  height: 51px;
  padding: 0 28px;
  border-radius: 30px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-family: var(--arial);
  font-size: 20px;
  transition: background 0.2s, color 0.2s;
}
.btn-pill:hover {
  background: var(--blue);
  color: #fff;
}
.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  height: 45px;
  border-radius: 25px;
  background: var(--bright);
  color: #fff;
  font-family: var(--avenir);
  font-size: 23px;
  font-weight: 300;
  transition: filter 0.2s;
}
.btn-blue:hover {
  filter: brightness(1.1);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--footer);
  color: var(--navy);
  padding: 62px 0 40px;
}
.site-footer .col {
  position: relative;
  padding-left: 50px;
}
.site-footer h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 35px;
  line-height: 1.4;
}
.site-footer h2 .rule {
  width: 30px;
  margin-top: 4px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin-top: 36px;
  display: grid;
  gap: 24px;
  font-family: var(--din);
  font-size: 16px;
}
.site-footer li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer li svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.site-footer li a {
  text-decoration: underline;
}
.site-footer .address {
  margin-top: 26px;
  font-family: var(--din);
  font-size: 16px;
}
.site-footer .address span {
  margin-right: 16px;
}
.site-footer .copy {
  position: absolute;
  right: 20px;
  bottom: 0;
  font-family: var(--avenir);
  font-size: 14px;
}
@media (max-width: 700px) {
  .site-footer .col {
    padding-left: 20px;
  }
  .site-footer .copy {
    position: static;
    margin-top: 28px;
  }
}

/* ============================================================
   HOME
   ============================================================ */
.hero-home {
  height: 746px;
  --dim: 0.32;
}
.hero-home .col {
  max-width: 1176px;
  position: relative;
  height: 100%;
}
.hero-home__title {
  position: absolute;
  top: 100px;
  left: 20px;
  right: 20px;
  height: 260px;
}
.hero-home__title .hire {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 80px;
  line-height: 1.2;
  color: #fff;
}
.hero-home__title .remote {
  position: absolute;
  left: 564px;
  top: 8px;
  font-family: var(--arial);
  font-weight: 700;
  font-size: 85px;
  line-height: 1.15;
  color: var(--teal);
}
.hero-home__title .staff {
  position: absolute;
  left: 702px;
  top: 132px;
  font-family: var(--arial);
  font-weight: 700;
  font-size: 85px;
  line-height: 1.15;
  color: var(--teal);
}
.hero-home__lede {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  width: 948px;
  max-width: calc(100% - 40px);
  font-size: 22px;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-align: center;
  color: #fff;
}
.hero-home__cr {
  position: absolute;
  top: 556px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--arial);
  font-size: 50px;
  color: var(--teal);
}
@media (max-width: 1000px) {
  .hero-home {
    height: auto;
    padding: 70px 0 60px;
  }
  .hero-home__title,
  .hero-home__title .hire,
  .hero-home__title .remote,
  .hero-home__title .staff,
  .hero-home__lede,
  .hero-home__cr {
    position: static;
    transform: none;
    width: auto;
  }
  .hero-home__title {
    height: auto;
    display: grid;
    gap: 4px;
  }
  .hero-home__title .hire {
    font-size: clamp(44px, 9vw, 72px);
  }
  .hero-home__title .remote,
  .hero-home__title .staff {
    font-size: clamp(46px, 10vw, 78px);
    display: inline;
  }
  .hero-home__lede {
    margin-top: 36px;
    text-align: left;
    max-width: none;
  }
  .hero-home__cr {
    margin-top: 32px;
    text-align: left;
    font-size: clamp(34px, 7vw, 50px);
  }
}

/* concerns */
.concerns {
  background: var(--light-2);
  padding: 82px 0 70px;
}
.concerns .col {
  max-width: 1300px;
}
.concerns h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 65px;
  line-height: 1.55;
  color: var(--ink);
}
.concerns .rule {
  background: #000;
  margin-top: 26px;
}
.concerns .lede {
  margin-top: 56px;
  font-size: 25px;
  color: var(--ink);
  text-align: justify;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 118px;
}
.risk {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 16px 16px 30px;
  min-height: 434px;
  text-align: center;
}
.risk img {
  height: 166px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.risk h3 {
  margin-top: 20px;
  font-family: var(--arial);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
}
.risk p {
  margin-top: 22px;
  font-size: 20px;
  color: var(--gray);
  text-align: justify;
  line-height: 1.2;
}
@media (max-width: 1100px) {
  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concerns h2 {
    font-size: clamp(34px, 6vw, 56px);
  }
}
@media (max-width: 600px) {
  .risk-grid {
    grid-template-columns: 1fr;
  }
  .concerns .lede,
  .risk p {
    text-align: left;
  }
}

/* advantages band */
.band-advantages {
  min-height: 648px;
  display: flex;
  align-items: center;
  --dim: 0.5;
  padding: 60px 0;
}
.band-advantages .col {
  max-width: 1200px;
}
.band-advantages h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 65px;
  line-height: 1.55;
  text-align: center;
}
.band-advantages p {
  margin: 34px auto 0;
  max-width: 1149px;
  font-size: 30px;
  text-align: justify;
  line-height: 1.35;
}
.band-advantages .achieve {
  margin-top: 74px;
  text-align: center;
  font-family: var(--arial);
  font-weight: 700;
  font-size: 60px;
  color: var(--teal);
}
@media (max-width: 1000px) {
  .band-advantages h2 {
    font-size: clamp(32px, 6vw, 56px);
  }
  .band-advantages p {
    font-size: 22px;
    text-align: left;
  }
  .band-advantages .achieve {
    font-size: clamp(32px, 6vw, 52px);
  }
}

/* control section */
.control {
  padding: 100px 0 80px;
}
.control .col {
  max-width: 1260px;
}
.control h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 65px;
  line-height: 1.3;
}
.control h2 small {
  display: block;
  font-size: 40px;
  line-height: 1.2;
}
.control .lede {
  margin-top: 50px;
  font-size: 30px;
  line-height: 1.4;
}
.control .lede b {
  font-size: 40px;
  color: var(--blue);
}
.control__grid {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 96px;
}
.framed {
  position: relative;
  width: 100%;
  max-width: 562px;
  padding: 0 28px 28px 0;
}
.framed::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92%;
  height: 92%;
  background: var(--steel);
  z-index: 0;
}
.framed img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 562 / 363;
  object-fit: cover;
  border: 3px solid #fff;
}
.control h3 {
  font-family: var(--arial);
  font-weight: 400;
  font-size: 30px;
}
.control h3 .rule {
  background: #000;
  margin-top: 18px;
}
.control__grid p {
  margin-top: 44px;
  font-size: 22px;
  line-height: 1.32;
  text-align: justify;
  max-width: 484px;
}
@media (max-width: 1000px) {
  .control h2 {
    font-size: clamp(34px, 6vw, 56px);
  }
  .control h2 small {
    font-size: clamp(22px, 4vw, 34px);
  }
  .control .lede {
    font-size: 22px;
  }
  .control .lede b {
    font-size: 28px;
  }
  .control__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .control__grid p {
    text-align: left;
    max-width: none;
  }
}

/* look at the advantages */
.look {
  background: var(--light-2);
  padding: 68px 0 80px;
}
.look .col {
  max-width: 1300px;
}
.look h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 980px;
  margin-inline: auto;
}
.look h2 b {
  font-size: 45px;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 62px;
}
.adv {
  background: #fff;
  border: 1px solid #e3e3e3;
  min-height: 438px;
  padding: 26px 20px 30px;
  text-align: center;
}
.adv img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.adv h3 {
  margin-top: 30px;
  font-family: var(--arial);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
}
.adv h3 b {
  font-size: 50px;
}
.adv p {
  margin-top: 38px;
  font-family: var(--raleway);
  font-size: 22px;
  line-height: 1.15;
}
@media (max-width: 1100px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}

/* dark band */
.more {
  background: var(--dark);
  color: #fff;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.more .col {
  max-width: 1200px;
}
.more h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.6;
  max-width: 1024px;
}
.more h2 b {
  font-weight: 600;
  font-size: 65px;
  color: var(--teal);
}
@media (max-width: 1000px) {
  .more h2 {
    font-size: clamp(30px, 5.5vw, 44px);
  }
  .more h2 b {
    font-size: clamp(36px, 7vw, 56px);
  }
}

/* benefit boxes */
.benefits {
  background: var(--light-2);
  padding: 106px 0 110px;
}
.benefits .col {
  max-width: 1280px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px 8px;
}
.box {
  color: #fff;
  min-height: 393px;
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-rows: 247px 1fr;
}
.box--teal {
  background: var(--teal);
}
.box--blue {
  background: var(--blue);
}
.box--red {
  background: var(--red);
}
.box--gray {
  background: #ccc;
  color: #000;
}
.box__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-family: var(--arial);
  font-size: 32px;
  line-height: 1.05;
}
.box--red .box__title,
.box--gray .box__title {
  color: #000;
}
.box--red .box__title b,
.box--gray .box__title b {
  color: #fff;
}
.box__art {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.box__art img {
  max-height: 247px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.box__text {
  grid-column: 1 / -1;
  padding: 24px 40px;
  text-align: center;
  font-family: var(--raleway);
  font-size: 20px;
  line-height: 1.2;
}
.box--gray .box__text {
  color: var(--gray);
}
@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 1fr;
  }
}
@media (max-width: 560px) {
  .box {
    grid-template-columns: 1fr;
    grid-template-rows: auto 200px auto;
  }
  .box__title {
    font-size: 26px;
  }
}

/* three steps */
.steps {
  padding: 42px 0 60px;
}
.steps .col {
  max-width: 1300px;
}
.steps__title {
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
}
.steps__title b {
  font-family: var(--poppins);
  font-size: 60px;
  font-weight: 700;
}
.steps__sub {
  margin-top: 32px;
  font-size: 50px;
  text-align: center;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 262px);
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
}
.step {
  text-align: center;
}
.step__tab {
  display: block;
  padding: 18px 10px;
  font-family: var(--arial);
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.step__tab--blue {
  background: var(--blue);
}
.step__tab--teal {
  background: var(--teal);
}
.step__tab--red {
  background: var(--red);
}
.step__card {
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.step__card img {
  max-height: 100%;
  width: auto;
}
.steps__cta {
  text-align: center;
  margin-top: 130px;
}
.steps__closing {
  margin: 100px 0 0;
  text-align: right;
  font-size: 30px;
  font-weight: 700;
  padding-right: 120px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .steps__title {
    font-size: 24px;
  }
  .steps__title b {
    font-size: clamp(32px, 7vw, 52px);
  }
  .steps__sub {
    font-size: clamp(26px, 5.5vw, 44px);
  }
  .step-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 262px));
  }
  .steps__cta {
    margin-top: 60px;
  }
  .steps__closing {
    padding-right: 0;
    text-align: center;
    margin-top: 48px;
    font-size: 24px;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.hero-services {
  height: 590px;
  --dim: 0.48;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-services h1 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 80px;
  line-height: 1.3;
}
.hero-services p {
  margin-top: 40px;
  font-size: 50px;
  line-height: 1.5;
}
.hero-services p b {
  font-size: 65px;
}
.hero-services p small {
  font-size: 40px;
}
.reliable {
  background: var(--light);
  padding: 58px 0 80px;
}
.reliable h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--gray);
  letter-spacing: 2px;
}
.reliable h2 b {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 65px;
  color: var(--blue);
  letter-spacing: 0;
}
.reliable h2 img {
  display: inline-block;
  width: 79px;
  height: 79px;
  vertical-align: middle;
  margin-left: 20px;
}
.reliable p {
  margin-top: 60px;
  font-family: var(--poppins);
  font-weight: 200;
  font-size: 20px;
  line-height: 1.5;
  max-width: 980px;
}
.reliable .cr {
  display: block;
  margin-top: 10px;
  font-family: var(--avenir);
  font-weight: 700;
  font-size: 45px;
  color: var(--blue);
}
.areas {
  padding: 56px 0 60px;
}
.areas .col {
  display: grid;
  grid-template-columns: 542px 1fr;
  gap: 0;
  align-items: start;
}
.areas .framed {
  max-width: 508px;
  padding: 0 26px 26px 0;
}
.areas .framed img {
  aspect-ratio: 508 / 335;
}
.areas h3 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 20px;
  color: var(--gray);
}
.areas p {
  margin-top: 40px;
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--gray);
}
.areas .rule {
  width: 50px;
  height: 1px;
  background: #000;
  margin-top: 60px;
}
.motivated {
  background: var(--light);
  padding: 66px 0 40px;
}
.motivated .col {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 40px;
  align-items: start;
}
.motivated h2 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 45px;
  line-height: 1.5;
  color: var(--gray);
}
.motivated h2 .big {
  font-size: 60px;
}
.motivated p {
  margin-top: 30px;
  font-family: var(--poppins);
  font-weight: 200;
  font-size: 20px;
  line-height: 1.7;
  text-align: justify;
  max-width: 541px;
}
.framed--teal {
  margin-top: 40px;
  max-width: 529px;
  padding: 0 36px 36px 0;
}
.framed--teal::after {
  background: var(--teal);
}
.framed--teal img {
  aspect-ratio: 493 / 326;
}
@media (max-width: 1000px) {
  .hero-services h1 {
    font-size: clamp(44px, 9vw, 72px);
  }
  .hero-services p {
    font-size: clamp(26px, 5vw, 40px);
  }
  .hero-services p b {
    font-size: clamp(30px, 6vw, 52px);
  }
  .hero-services p small {
    font-size: clamp(22px, 4.5vw, 34px);
  }
  .reliable h2 {
    font-size: clamp(30px, 6vw, 48px);
  }
  .reliable h2 b {
    font-size: clamp(34px, 7vw, 56px);
  }
  .reliable .cr {
    font-size: clamp(28px, 6vw, 40px);
  }
  .areas .col,
  .motivated .col {
    grid-template-columns: minmax(0, 1fr);
  }
  .areas p {
    font-size: clamp(26px, 5.5vw, 36px);
  }
  .motivated h2 {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .motivated h2 .big {
    font-size: clamp(34px, 7vw, 52px);
  }
  .motivated p {
    text-align: left;
    max-width: none;
  }
  .framed--teal {
    margin-top: 0;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.hero-about {
  height: 457px;
  --dim: 0.4;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-about h1 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 100px;
  letter-spacing: 6px;
}
.we-are {
  background: var(--light);
  padding: 58px 0 60px;
}
.we-are .col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.we-are h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 70px;
  letter-spacing: 6px;
  color: var(--teal);
}
.we-are h2 .rule {
  width: 80px;
  height: 1px;
  background: var(--teal);
  margin-top: 8px;
}
.we-are p {
  margin-top: 50px;
  font-size: 22px;
  line-height: 1.7;
  text-align: justify;
  max-width: 473px;
}
.we-are p b {
  font-size: 25px;
}
.we-are p + p {
  margin-top: 0;
}
.framed--team {
  margin-top: 48px;
  max-width: 440px;
  padding: 0 32px 32px 0;
  margin-left: auto;
}
.framed--team::after {
  background: var(--teal);
}
.framed--team img {
  aspect-ratio: 408 / 422;
  border: 0;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 465px;
}
.values__left {
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px;
}
.values__left > div {
  width: 470px;
  max-width: 100%;
}
.values__left h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 80px;
  line-height: 1.15;
}
.values__left h2 small {
  display: block;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 40px;
  padding-left: 10px;
}
.values__left .rule {
  width: 26px;
  margin-top: 26px;
  margin-left: 10px;
}
.values__right {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 60px 40px 60px 100px;
}
.values__right ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  font-family: var(--montserrat);
  font-size: 32px;
}
.values__right li {
  display: flex;
  align-items: center;
  gap: 40px;
}
.values__right li::before {
  content: "\2713";
  font-family: var(--arial);
  font-size: 30px;
  color: #000;
}
.values__right li b {
  font-size: 35px;
}
.committed {
  background: #fff;
  padding: 0 0 20px;
}
.committed .col {
  position: relative;
  min-height: 395px;
  z-index: 1;
}
.committed__blue {
  position: absolute;
  left: -50vw;
  right: 50%;
  top: 0;
  height: 125px;
  background: var(--blue);
}
.committed__boxes {
  position: absolute;
  left: 345px;
  top: -125px;
  width: 620px;
  height: 340px;
}
.committed__boxes span {
  position: absolute;
  border: 4px solid var(--blue);
}
.committed__boxes span:nth-child(1) {
  left: 0;
  top: 0;
  width: 250px;
  height: 213px;
}
.committed__boxes span:nth-child(2) {
  left: 185px;
  top: 108px;
  width: 245px;
  height: 222px;
  background: #fff;
}
.committed__boxes img {
  position: absolute;
  left: 350px;
  top: 30px;
  width: 340px;
  max-width: none;
}
.committed__text {
  position: absolute;
  left: 38px;
  top: 78px;
  font-family: var(--montserrat);
  color: var(--blue);
}
.committed__text h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}
.committed__text p {
  margin-top: 8px;
  padding-left: 6px;
  font-size: 25px;
}
.committed__line {
  position: absolute;
  left: 38px;
  top: 268px;
  width: 267px;
  height: 2px;
  background: var(--blue);
}
.why {
  background: var(--light);
  padding: 74px 0 80px;
}
.why .col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.why h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 70px;
  letter-spacing: 4px;
  color: var(--teal);
  white-space: nowrap;
}
.why h2 .rule {
  width: 80px;
  height: 1px;
  background: var(--teal);
  margin-top: 8px;
}
.why p {
  margin-top: 56px;
  font-size: 22px;
  line-height: 1.7;
  text-align: justify;
  max-width: 422px;
}
.why__map {
  margin-top: 240px;
  display: grid;
  justify-items: start;
  gap: 60px;
}
.why__map img:first-child {
  width: 532px;
  max-width: 100%;
}
.why__map img:last-child {
  width: 213px;
}
.share {
  background: #fff;
  padding: 120px 0 90px;
  text-align: center;
}
.share h2 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  max-width: 1058px;
  margin-inline: auto;
}
.share h2 b {
  font-size: 50px;
  color: var(--blue);
}
.share__btns {
  margin-top: 66px;
  display: flex;
  justify-content: center;
  gap: 76px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .hero-about h1 {
    font-size: clamp(48px, 11vw, 90px);
  }
  .we-are .col,
  .why .col {
    grid-template-columns: minmax(0, 1fr);
  }
  .we-are h2,
  .why h2 {
    font-size: clamp(38px, 8vw, 60px);
    white-space: normal;
  }
  .we-are p,
  .why p {
    text-align: left;
    max-width: none;
  }
  .framed--team {
    margin-left: 0;
  }
  .values {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .values__left > div {
    width: auto;
  }
  .values__left {
    justify-content: flex-start;
    padding: 50px 24px;
  }
  .values__left h2 {
    font-size: clamp(44px, 9vw, 70px);
  }
  .values__right {
    padding: 40px 24px;
  }
  .values__right ul {
    font-size: 24px;
  }
  .values__right li b {
    font-size: 27px;
  }
  .committed .col {
    min-height: 0;
    padding-top: 40px;
  }
  .committed__blue,
  .committed__boxes,
  .committed__line {
    display: none;
  }
  .committed__text {
    position: static;
  }
  .why__map {
    margin-top: 20px;
  }
  .share h2 {
    font-size: clamp(24px, 5vw, 34px);
  }
  .share h2 b {
    font-size: clamp(28px, 6vw, 42px);
  }
  .share__btns {
    gap: 24px;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-page {
  padding: 36px 0 40px;
}
.gallery-page .col {
  max-width: 1300px;
}
.gallery-page h1 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 8px;
  line-height: 1.2;
}
.gallery-page h1 .rule {
  width: 80px;
  height: 2px;
  background: #000;
  margin-top: 0;
}
.gallery-page .intro {
  margin-top: 64px;
  font-size: 50px;
  line-height: 1.6;
}
.gallery-page .intro b {
  font-size: 65px;
  color: var(--teal);
}
.gallery-page .meet {
  margin-top: 50px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
}
.mosaic {
  margin: 60px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 54px;
  grid-auto-flow: dense;
  gap: 10px;
}
.mosaic figure {
  margin: 0;
  overflow: hidden;
  background: #eee;
  grid-column: span var(--c, 4);
  grid-row: span var(--r, 4);
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mosaic figure:hover img {
  transform: scale(1.04);
}
.m-a {
  grid-column: span 6;
  grid-row: span 6;
}
.m-b {
  grid-column: span 3;
  grid-row: span 3;
}
.m-c {
  grid-column: span 6;
  grid-row: span 5;
}
.m-d {
  grid-column: span 3;
  grid-row: span 3;
}
.m-e {
  grid-column: span 4;
  grid-row: span 4;
}
.m-f {
  grid-column: span 4;
  grid-row: span 8;
}
.m-g {
  grid-column: span 8;
  grid-row: span 8;
}
.m-h {
  grid-column: span 4;
  grid-row: span 4;
}
.m-i {
  grid-column: span 6;
  grid-row: span 12;
}
.m-j {
  grid-column: span 5;
  grid-row: span 7;
}
.m-k {
  grid-column: span 3;
  grid-row: span 5;
}
.m-l {
  grid-column: span 4;
  grid-row: span 5;
}
.m-m {
  grid-column: span 7;
  grid-row: span 7;
}
.m-n {
  grid-column: span 5;
  grid-row: span 5;
}
.m-o {
  grid-column: span 12;
  grid-row: span 7;
}
@media (max-width: 1000px) {
  .gallery-page h1 {
    font-size: clamp(44px, 10vw, 72px);
  }
  .gallery-page .intro {
    font-size: clamp(24px, 5vw, 40px);
  }
  .gallery-page .intro b {
    font-size: clamp(28px, 6vw, 50px);
  }
  .gallery-page .meet {
    font-size: clamp(28px, 6vw, 48px);
  }
  .mosaic {
    grid-auto-rows: 34px;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .mosaic figure {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .mosaic .m-a,
  .mosaic .m-i,
  .mosaic .m-o {
    grid-column: span 2 !important;
  }
}

/* ============================================================
   CONTACT / JOBS
   ============================================================ */
.hero-building {
  height: 538px;
  --dim: 0.25;
  display: flex;
  align-items: center;
}
.hero-building .col {
  max-width: 1300px;
}
.hero-building h1 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 100px;
  line-height: 1;
}
.hero-building h1 small {
  display: block;
  font-family: var(--avenir);
  font-weight: 300;
  font-size: 45px;
  letter-spacing: 2px;
  margin-top: 6px;
  padding-left: 6px;
}
.hero-building .addr {
  margin-top: 90px;
  padding-left: 60px;
  font-size: 25px;
  line-height: 1.1;
}
.hero-building .addr .cr {
  font-family: var(--brandon);
  font-size: 40px;
  letter-spacing: 1px;
}
.hero-building .apply {
  margin: 72px 0 0 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 239px;
  height: 63px;
  border-radius: 20px;
  border: 2px solid var(--teal);
  background: rgba(237, 241, 243, 0.92);
  color: #4c4c4c;
  font-family: var(--arial);
  font-size: 26px;
  transition: background 0.2s;
}
.hero-building .apply:hover {
  background: var(--teal);
  color: #fff;
}
.hero-jobs {
  height: 509px;
}
.hero-jobs .addr {
  margin-top: 40px;
  padding-left: 0;
}
.jobs-band {
  min-height: 424px;
  --dim: 0.55;
  display: flex;
  align-items: center;
}
.jobs-band .col {
  max-width: 1300px;
}
.jobs-band .addr {
  font-size: 25px;
  line-height: 1.1;
}
.jobs-band .addr .cr {
  font-family: var(--brandon);
  font-size: 40px;
  letter-spacing: 1px;
}
.jobs-band .addr .edif {
  display: block;
  margin-top: 30px;
}
.pin-band {
  position: relative;
  height: 262px;
  --dim: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray);
}
.pin-band::before {
  background: rgba(255, 255, 255, 0.72);
}
.pin-band .label {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
}
.pin-band svg {
  width: 30px;
  height: 44px;
  margin: 0 auto;
}
.form-wrap {
  background: #fff;
  padding: 100px 0 60px;
}
.contact-card {
  width: 806px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.18);
  padding: 50px 96px 60px;
}
.contact-card h2 {
  font-family: var(--arial);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.5px;
}
.contact-card form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}
.field {
  display: grid;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-family: var(--din);
  font-weight: 300;
  font-size: 23px;
  color: var(--gray);
}
.field input,
.field textarea {
  border: 0;
  border-bottom: 1px solid #b0b0b0;
  background: transparent;
  padding: 6px 0;
  font-family: var(--din);
  font-size: 18px;
  color: #000;
  border-radius: 0;
}
.field textarea {
  min-height: 70px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}
.send {
  grid-column: 1 / -1;
  justify-self: start;
  width: 142px;
  height: 41px;
  border: 0;
  border-radius: 30px;
  background: var(--teal);
  color: #fff;
  font-family: var(--arial);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: filter 0.2s;
}
.send:hover {
  filter: brightness(1.08);
}
.form-note {
  grid-column: 1 / -1;
  font-family: var(--din);
  font-size: 15px;
  color: var(--gray);
}
@media (max-width: 1000px) {
  .hero-building h1 {
    font-size: clamp(52px, 12vw, 90px);
  }
  .hero-building h1 small {
    font-size: clamp(26px, 6vw, 40px);
  }
  .hero-building .addr {
    padding-left: 0;
    margin-top: 50px;
  }
  .hero-building .apply {
    margin-left: 0;
  }
  .contact-card {
    padding: 40px 24px;
  }
  .contact-card form {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-head {
  padding: 46px 0 40px;
  text-align: center;
}
.pricing-head h1 {
  font-family: var(--arial);
  font-weight: 700;
  font-size: 85px;
}
.pricing-head p {
  margin: 28px auto 0;
  max-width: 980px;
  font-size: 20px;
  color: var(--gray);
  line-height: 1.4;
}
.pricing-head p b {
  font-size: 30px;
  color: var(--bright);
}
.plan-card {
  width: 512px;
  max-width: 100%;
  margin: 46px auto 0;
  background: #fff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 40px 48px 50px;
  text-align: left;
}
.plan-card h2 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.3;
}
.plan-card h2 small {
  display: block;
  font-size: 25px;
}
.plan-card .intro {
  margin-top: 30px;
  font-size: 18px;
  color: #000;
  text-align: left;
}
.plan-card .price {
  margin: 40px 0 0;
  text-align: center;
  color: var(--bright);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.plan-card .price .cur {
  font-family: var(--avenir);
  font-weight: 800;
  font-size: 25px;
  align-self: flex-start;
  margin-top: 4px;
}
.plan-card .price .amt {
  font-family: var(--roboto);
  font-weight: 700;
  font-size: 65px;
  line-height: 1;
}
.plan-card .price .per {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 16px;
}
.plan-card h3 {
  margin-top: 46px;
  font-family: var(--helvetica);
  font-weight: 700;
  font-size: 25px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: grid;
  gap: 18px;
}
.plan-card li {
  display: flex;
  gap: 16px;
  font-size: 16px;
  line-height: 1.3;
}
.plan-card li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.plan-card .btn-blue {
  margin: 44px auto 0;
  display: flex;
}
.calc-intro {
  background: var(--light);
  padding: 40px 0 44px;
  text-align: center;
}
.calc-intro p {
  font-size: 20px;
  line-height: 1.4;
}
.calc-intro p b.hf {
  font-size: 30px;
  color: var(--bright);
}
.calc-intro .adjust {
  margin-top: 26px;
  font-weight: 700;
}
.calc {
  padding: 50px 0 80px;
}
.calc__inputs {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-family: var(--helvetica);
  font-size: 16px;
}
.calc__inputs label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc__inputs input {
  width: 74px;
  height: 36px;
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  background: #fff;
  padding: 0 8px;
  font-family: var(--helvetica);
  font-size: 16px;
}
.calc__inputs input::-webkit-outer-spin-button,
.calc__inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc__inputs input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.total-box {
  width: 716px;
  max-width: 100%;
  margin: 46px auto 0;
  background: #fff;
  border: 1px solid #c8c8c7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 26px 40px 30px;
  text-align: center;
}
.total-box .l1 {
  font-size: 23px;
  font-weight: 700;
}
.total-box .l2 {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.total-box .from {
  font-size: 23px;
}
.total-box .where {
  font-size: 30px;
  font-weight: 700;
}
.total-box .cur {
  font-family: var(--avenir);
  font-weight: 800;
  font-size: 27px;
  color: var(--bright);
  margin-left: 20px;
}
.total-box .amt {
  font-family: var(--roboto);
  font-weight: 700;
  font-size: 60px;
  color: var(--bright);
  line-height: 1;
}
.total-box .per {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  color: var(--bright);
}
.period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}
.period input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.period .track {
  width: 44px;
  height: 22px;
  border-radius: 100px;
  background: #9a9a9a;
  position: relative;
  transition: background 0.25s;
}
.period .track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
}
.period input:checked + .track {
  background: var(--bright);
}
.period input:checked + .track::after {
  transform: translateX(22px);
}

.cost {
  width: 490px;
  max-width: 100%;
  margin: 30px auto 0;
  border: 1px solid #b8cbe6;
  font-family: var(--helvetica);
  font-size: 16px;
  color: var(--navy);
}
.cost__head {
  background: #e2edfb;
  padding: 8px 12px;
  text-align: right;
  font-family: var(--avenir);
  font-weight: 700;
  font-size: 15px;
}
.cost__head span {
  display: inline-block;
  width: 110px;
  text-align: center;
}
.row {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  padding: 12px 12px 12px 10px;
  background: var(--light-2);
  border-top: 1px solid #b8cbe6;
}
.row .amt {
  text-align: center;
}
.row--toggle {
  cursor: pointer;
  grid-template-columns: 1fr 110px 32px;
  padding-right: 6px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  user-select: none;
}
.row--toggle .chev {
  width: 16px;
  height: 16px;
  justify-self: center;
  transition: transform 0.3s;
}
.row--toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}
.row--toggle .lbl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.row--total {
  background: #e2edfb;
  font-weight: 700;
  grid-template-columns: 1fr 110px;
}
.row--total .lbl {
  text-align: right;
  padding-right: 10px;
}
.sub {
  background: #fff;
  border-top: 1px solid #b8cbe6;
  padding: 10px 12px 12px 30px;
  color: #000;
  display: grid;
  gap: 4px;
}
.sub[hidden] {
  display: none;
}
.sub .item {
  display: grid;
  grid-template-columns: 1fr 60px 110px;
  align-items: center;
  min-height: 26px;
}
.sub .item .lbl {
  font-size: 14px;
  font-style: italic;
  padding-left: 8px;
}
.sub .item .pct {
  font-size: 12px;
  font-style: italic;
  text-align: right;
  padding-right: 6px;
}
.sub .item .amt {
  text-align: center;
  font-size: 16px;
}
.sub .item--opt .lbl {
  font-style: normal;
  font-family: var(--avenir);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.sub .group-lbl {
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}
.chk {
  width: 14px;
  height: 14px;
  flex: none;
  accent-color: var(--bright);
}
.chk:disabled {
  opacity: 0.55;
}
.mini-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mini-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mini-toggle .track {
  width: 32px;
  height: 16px;
  border-radius: 100px;
  background: #9a9a9a;
  position: relative;
  transition: background 0.25s;
}
.mini-toggle .track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
}
.mini-toggle input:checked + .track {
  background: var(--bright);
}
.mini-toggle input:checked + .track::after {
  transform: translateX(16px);
}
.calc .btn-blue {
  margin: 50px auto 0;
  display: flex;
}
@media (max-width: 700px) {
  .pricing-head h1 {
    font-size: clamp(44px, 12vw, 72px);
  }
  .plan-card {
    padding: 30px 22px 36px;
  }
  .total-box {
    padding: 22px 16px;
  }
  .total-box .amt {
    font-size: 48px;
  }
  .sub .item {
    grid-template-columns: 1fr 50px 80px;
  }
  .row {
    grid-template-columns: 1fr 80px;
  }
  .row--toggle {
    grid-template-columns: 1fr 80px 28px;
  }
  .cost__head span {
    width: 80px;
  }
}

/* ============================================================
   PROFILE
   ============================================================ */
.profile-frame {
  padding: 0 0 60px;
}
.profile-frame .col {
  max-width: 980px;
}
.profile-frame .viewer {
  height: 1233px;
  background: #5d5d5d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.profile-frame .viewer p {
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.5;
}
.profile-frame .viewer a {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .profile-frame .viewer {
    height: 520px;
  }
}

/* ---------- contact map (a Wix Google Maps element on the source, 803x440) ---------- */
.map-wrap {
  background: #fff;
  padding: 60px 0 0;
}
.map-wrap iframe {
  display: block;
  width: 803px;
  max-width: 100%;
  height: 440px;
  margin: 0 auto;
  border: 0;
}
