:root {
  --yellow: #fdb913;
  --yellow-dark: #e5a60b;
  --cream: #fff9ed;
  --black: rgb(17, 17, 17);
  --text: #1a1a1a;
  --muted: #666;
  --line: #e8e8e8;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(17, 17, 17, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji"
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 40px 0;
}

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

.section-head h2,
.content-title {
  margin: 6px 0 12px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 2.3rem);
  line-height: 1.15;
  font-weight: 800;
}


.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  color: var(--yellow-dark);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .84rem;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: .25s ease;
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 10px 25px rgba(253, 185, 19, .25);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-0px);
}

.btn-light {
  padding: 15px 20px;
  border-color: var(--line);
  background: var(--white);
}

.btn-light:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-0px);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 10px 28px rgba(253, 185, 19, .4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease, box-shadow .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--yellow-dark);
  box-shadow: 0 12px 32px rgba(229, 166, 11, .45);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  padding: 11px 0;
  transition: .3s ease;
}

.navbar.navbar-solid,
.navbar.scrolled {
  padding: 11px 0;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.navbar .nav-links a {
  color: var(--text);
}

.navbar.navbar-solid .nav-links a,
.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active,
.navbar.navbar-solid .nav-links a:hover,
.navbar.navbar-solid .nav-links a.active,
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--yellow-dark);
}

/* ajay-css */

.about-hero {
  background: var(--black);
  padding: 140px 0 50px;
  color: var(--white);
  overflow: hidden;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 24px;
  color: #a8aeb8;
}

.breadcrumbs a {
  color: #a8aeb8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.breadcrumbs span.current {
  color: var(--yellow);
  font-weight: 700;
}

.about-hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 800px;
  color: var(--white);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.about-hero p {
  font-size: clamp(0.98rem, 2.4vw, 1.15rem);
  color: #c5cad3;
  max-width: 600px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

/* Active & Hover */
.nav-links a:hover,
.nav-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--yellow);
}



.nav-links a:hover::after,
.nav-links a.active::after,
.mobile-menu a:hover::after,
.mobile-menu a.active::after {
    width: 80%;
}


/* ajay-css */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .93rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--yellow-dark);
}

.mobile-toggle {
  display: none;
  padding: 6px;
  border: 0;
  color: var(--black);
  background: transparent;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--cream);
  filter: blur(25px);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.5rem, 5vw, 3.55rem);
  line-height: 1.14;
  letter-spacing: -.04em;
  font-weight: 800;
}

.padding {
padding: 15px 20px;
}
.hero h1 span {
  color: var(--yellow);
}

.hero-copy>p {
  margin: 24px 0 0;
  color: rgba(26, 26, 26, .76);
  font-size: 1.12rem;
  line-height: 1.8;
  font-weight: 300;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.trust-item i,
.trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--yellow-dark) !important;
  stroke: currentColor !important;
  stroke-width: 2.25;
  fill: none !important;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 5% -2% 4% 17%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: var(--yellow);
  content: "";
}

.hero-image {
  width: min(100%, 480px);
  aspect-ratio: 4/5;
  border: 8px solid white;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .2);
}

.rating {
  position: absolute;
  bottom: 35px;
  left: -45px;
  display: flex;
  padding: 15px 20px;
  border-radius: 16px;
  align-items: center;
  gap: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.rating-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--yellow);
  background: var(--cream);
  place-items: center;
}

.rating-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
}

.rating strong,
.rating span {
  display: block;
}

.rating strong {
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 800;
}

.rating span {
  color: var(--muted);
  font-size: .72rem;

}

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.card-swiper {
  position: relative;
}

.card-swiper-dots {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 18px;
  padding: 4px 16px 0;
  max-width: 100%;
}

.card-swiper-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  max-width: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, .22);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.card-swiper-dot.is-active {
  width: 22px;
  background: var(--yellow-dark);
}

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

.download-copy > p {
  margin: 0 0 22px;
  max-width: 42ch;
  color: rgba(17, 17, 17, .78);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
}

.section.get .cta-button-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--yellow);
  box-shadow: none;
}

.section.get .cta-button-outline:hover {
  background: var(--yellow);
  color: #000;
}
.service-card {
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 268px;
  box-sizing: border-box;
  padding: 28px 18px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  text-align: center;
  background: white;
  box-shadow: 0 10px 28px rgba(17, 17, 17, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card.is-blurb-expanded {
  height: auto;
  min-height: 268px;
}

.valuess {
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 268px;
  box-sizing: border-box;
  padding: 28px 18px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  text-align: center;
  background: white;
  box-shadow: 0 10px 28px rgba(17, 17, 17, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.valuess .service-icon {
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: auto;
}

.valuess h3,
.valuess p {
  width: 100%;
  min-width: 0;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#values .values-grid {
  align-items: start;
}

#values .valuess {
  min-height: 230px;
  padding: 32px 28px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

#values .valuess .service-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 24px;
  border-radius: 14px;
}

#values .valuess h3,
#values .valuess p {
  width: 100%;
  text-align: left;
}

#values .valuess h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  min-height: calc(1.35em * 2);
}

#values .valuess p {
  margin: 0;
  line-height: 1.7;
}

#values .valuess .service-blurb-more {
  display: inline-block;
  margin-top: 6px;
  margin-left: 0;
}

#values .valuess .service-blurb {
  align-items: flex-start;
}

.team-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-role {
  display: block;
  margin: -2px 0 10px;
  color: var(--yellow-dark);
  font-size: .78rem;
  font-weight: 600;
}

.leadership {
  background: var(--cream);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.leadership .team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(17, 17, 17, .05);
  padding: 18px 16px 20px;
}

.leadership .team-avatar {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 0 16px;
  border-radius: 16px;
  border: 0;
  box-shadow: none;
  background: #f4f1ea;
}

.leadership .team-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  flex: 1;
}

.leadership .team-card h3 {
  margin: 0;
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.leadership .team-role {
  margin: 0;
  width: 100%;
  color: var(--yellow-dark);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
}

.leadership .team-role .service-blurb-more {
  display: inline-block;
  margin-top: 4px;
  margin-left: 0;
  color: var(--black);
  font-size: .75rem;
}

.office-card .office-phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--yellow-dark);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.office-card .office-phone:hover {
  text-decoration: underline;
}

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

.check-icon i {
  width: 14px;
  height: 14px;
  stroke: #FDB913;
  color: #FDB913;
}


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

.service-icon {
  display: grid;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 16px;
  color: var(--yellow-dark);
  background: var(--cream);
  place-items: center;
  overflow: hidden;
  transition: .3s ease;
}

.service-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.section-empty {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.service-card:hover .service-icon {
  color: white;
  background: var(--yellow);
}

.service-card h3 {
  margin: 0 0 9px;
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
  max-height: calc(1.35em * 2);
  flex: 0 0 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-blurb {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  flex: 0 0 auto;
}

.service-card .service-blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: calc(1.7em * 2 + 1.2em + 6px);
}

.service-blurb-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-height: calc(1.7em * 2);
  max-height: calc(1.7em * 2);
}

.service-blurb-more {
  display: inline-block;
  margin-left: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--yellow-dark, #c9a227);
  font: inherit;
  font-weight: 600;
  font-size: .78rem;
  line-height: 1.2;
  min-height: 1.2em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Keep layout slot so card heights stay equal when button is not needed */
.service-blurb-more[hidden] {
  visibility: hidden;
  display: inline-block !important;
  pointer-events: none;
}

.service-blurb-more:hover {
  color: var(--black);
}

.service-card.valuess .service-blurb.is-expanded .service-blurb-text,
.service-blurb.is-expanded .service-blurb-text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  min-height: 0;
  max-height: none;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.get {
    color: var(--black);
  background: white;
}
.why {
  color: white;
  background: var(--black);
}
.about-us {
    
  padding: 40px 0 78px;

}
.about-us {
   color: white;
  background: var(--black);
}

.why .section-head h2 {
  color: white;
}

.why .section-head h2 span {
  color: var(--yellow);
}

.why .section-head p {
  color: #aaa;
}

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

.feature-card {
  padding: 26px;
  border: 1px solid #363636;
  border-radius: 14px;
  background: #202020;
  transition: .25s;
}

.feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.feature-card .service-icon {
  margin: 0 0 20px;
  color: var(--yellow);
  background: #333;
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: #aaa;
  font-size: .86rem;
  line-height: 1.7;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-images>img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-images>img:first-child {
  height: 255px;
  margin-top: 35px;
}

.about-images>img:nth-child(2) {
  height: 320px;
}

.about-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  place-items: center;
}

.about-logo img {
  width: 64px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.125rem;
  text-align: justify;
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--yellow-dark);
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--yellow-dark);
}
.stats {
  position: relative;
  color: white;
  background: var(--black);
  overflow: hidden;
}

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

.stat {
  padding: 5px 25px;
  border-right: 1px solid rgba(253, 185, 19, .15);
  text-align: center;
}

.stat:last-child {
  border: 0;
}

.stat-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border: 1px solid rgba(253, 185, 19, .2);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(253, 185, 19, .1);
  place-items: center;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.stat span {
  color: #aaa;
  font-size: 1rem;
  font-weight: 500;
}

.download {
  position: relative;
  padding: 52px 0 48px;
  background: var(--yellow);
  overflow: hidden;
}

.download::before,
.download::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  pointer-events: none;
  content: "";
}

.download::before {
  top: -120px;
  left: -80px;
  width: 280px;
  height: 280px;
}

.download::after {
  right: -90px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  background: rgba(0, 0, 0, .05);
}

.download-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1140px;
  margin-inline: auto;
}

.download-grid {
  display: grid;
  grid-template-columns: 200px minmax(280px, 360px) 236px;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  row-gap: 24px;
  width: 100%;
}

.download-col {
  display: flex;
  align-items: center;
  min-width: 0;
}

.download-col-phone,
.download-col-copy,
.download-col-qr {
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  margin: 0;
  padding: 8px;
  border-radius: 36px;
  background: var(--black);
  box-shadow: 0 22px 40px rgba(0, 0, 0, .22);
  transform: none;
  transition: transform .35s ease, box-shadow .35s ease;
  flex-shrink: 0;
}

.phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, .26);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.download-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 0;
  width: 100%;
  max-width: 360px;
}

.download-copy h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: .98rem;
  font-weight: 500;
  color: #222;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 16px;
  height: 16px;
  stroke: #FDB913;
  color: #FDB913;
}

.download-copy .check-list {
  margin: 0 0 22px;
  font-size: .98rem;
}

.download-copy .check-list i {
  color: var(--yellow);
  padding: 5px;
  border-radius: 50%;
  background: var(--black);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-copy .store-buttons {
  width: 100%;
}

.download-copy .store-btn {
  flex: 1 1 148px;
  min-width: 0;
  padding: 10px 12px;
}

.download-apps {
  display: grid;
  gap: 18px;
}

.download-audience-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: min(100%, 400px);
  margin: 0 auto 28px;
  padding: 4px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.download-audience-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #444;
  cursor: pointer;
  text-align: left;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.download-audience-tab:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.download-audience-tab-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, .08);
  color: #111;
  place-items: center;
}

.download-audience-tab-icon i,
.download-audience-tab-icon svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.download-audience-tab-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  pointer-events: none;
}

.download-audience-tab-copy strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.download-audience-tab small {
  display: block;
  color: #666;
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.2;
}

.download-audience-tab.is-active {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.download-audience-tab.is-active .download-audience-tab-icon {
  background: rgba(253, 185, 19, .18);
  color: var(--yellow);
}

.download-audience-tab.is-active small {
  color: rgba(255, 255, 255, .72);
}

.download-audience-panel {
  display: none !important;
}

.download-audience-panel.is-active {
  display: grid !important;
}

.download-app-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(0, 0, 0, .06);
}

.download-app-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.download-app-heading h3 {
  margin: 0;
  color: #111;
  font-size: 1.05rem;
  font-weight: 700;
}

.download-app-heading span {
  color: #444;
  font-size: .8rem;
  font-weight: 500;
}

.store-btn {
  display: flex;
  min-width: 160px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  background: var(--black);
  transition: .25s;
}

.store-btn:hover {
  transform: translateY(-3px);
}

.store-btn-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.footer-apps-bar {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  align-items: start;
  gap: 28px 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-apps-intro h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-apps-intro p {
  margin: 0;
  color: #9ca3af;
  font-size: .88rem;
  line-height: 1.45;
}

.footer-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.footer-app-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-app-label {
  margin: 0;
  color: #e5e7eb;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #141414;
  color: #fff;
  text-decoration: none;
  transition: .25s;
}

.footer-store-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
  transform: translateY(-2px);
}

.footer-store-btn svg,
.footer-store-btn i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-store-btn span {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.15;
}

.footer-store-btn small {
  color: inherit;
  opacity: .7;
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.footer-store-btn strong {
  font-size: .88rem;
  font-weight: 700;
}

.footer-store-btn:hover small {
  opacity: .85;
}

.store-btn small,
.store-btn strong {
  display: block;
  text-align: left;
}

.store-btn small {
  color: #bbb;
  font-size: .64rem;
}

.qr-card {
  padding: 20px 16px 18px;
  border-radius: 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  transform: none;
  transition: transform .3s ease, box-shadow .3s ease;
  width: 100%;
  max-width: 236px;
  margin: 0;
}

.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .14);
}

.qr-card h3 {
  margin: 0 0 4px;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 800;
}

.qr-card > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .78rem;
}

.qr-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qr-item {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 8px 6px;
  border-radius: 12px;
  background: #f7f7f7;
}

.qr-item a {
  display: block;
  line-height: 0;
}

.qr-item .qr-image {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
}

.qr-item span {
  color: #222;
  font-size: .72rem;
  font-weight: 700;
}

.qr-item-empty {
  min-height: 132px;
  place-content: center;
  color: #999;
}

.qr-item-empty i,
.qr-item-empty svg {
  width: 28px;
  height: 28px;
  color: #bbb;
}

.qr-card-hint {
  margin: 12px 0 0 !important;
  color: #999 !important;
  font-size: .75rem !important;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: auto;
  gap: 14px;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 800;
}

.faq-category::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.faq-list {
  min-width: 0;
  max-width: 100%;
}

.faq-item {
  border: 1px solid #ebe7df;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(17, 17, 17, .03);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.faq-item.open {
  border-color: transparent;
  background: #fff9ed;
  box-shadow: 0 8px 22px rgba(17, 17, 17, .06);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--black);
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-question i,
.faq-question svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #9aa0a6;
  transition: transform .25s ease, color .2s ease;
}

.faq-item.open .faq-question {
  background: transparent;
}

.faq-item.open .faq-question i,
.faq-item.open .faq-question svg {
  color: var(--yellow-dark);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 22px;
  color: #666;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer-inner {
  padding-top: 2px;
  border-top: 1px solid rgba(17, 17, 17, .06);
  padding-bottom: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-item.open .faq-answer {
  max-height: fit-content;
  padding: 0 22px 20px;
}

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

.contact-copy {
  min-width: 0;
}

.contact-copy>p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  min-width: 0;
}

.contact-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-item .service-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 10px;
  background: rgba(253, 185, 19, .18);
}

.contact-item h3,
.contact-item p {
  margin: 0;
}

.contact-item h3 {
  color: var(--black);
  font-size: 1rem;
}

.contact-item p,
.contact-item a {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a {
  color: inherit;
}

.contact-location-card {
  /* margin-top: 34px; */
  margin-top: 8px;
  /* padding: 28px 22px; */
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #fff6df 0%, #fffaf0 100%);
  /* border: 1px solid rgba(253, 185, 19, .18); */
  min-width: 0;
}

.contact-location-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  place-items: center;
  color: var(--yellow-dark);
}

.contact-location-icon i,
.contact-location-icon svg {
  width: 34px;
  height: 34px;
}

.contact-location-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-location-card > p {
  margin: 0;
  color: #555;
  font-size: .95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-map {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, .08);
  background: #fff;
  aspect-ratio: 20 / 9;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.contact-map-link {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #93c5fd;
  background: #fff;
  color: #2563eb;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 17, 17, .12);
  white-space: nowrap;
}

.contact-map-link i,
.contact-map-link svg {
  width: 15px;
  height: 15px;
}

.contact-form {
  padding: 32px;
  border: 1px solid #f0ede7;
  border-radius: var(--radius);
  background: var(--cream);
  min-width: 0;
}

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

.field {
  margin-bottom: 6px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #555;
  font-size: .8rem;
  font-weight: 600;
}

.field label .req {
  display: inline-block;
  margin-left: 3px;
  color: #ef4444;
  font-weight: 700;
  line-height: 1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 9px;
  outline: none;
  background: white;
  color: #111;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.field select::-ms-expand {
  display: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 185, 19, .18);
}

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

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.field-meta .field-hint {
  margin: 0;
  font-size: .78rem;
  color: #64748b;
  line-height: 1.35;
}

.char-count {
  margin: 0;
  margin-left: auto;
  color: #94a3b8;
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.35;
}

.char-count.is-near {
  color: #d97706;
}

.char-count.is-full {
  color: #dc2626;
  font-weight: 600;
}

.form-status {
  min-height: 22px;
  margin: 5px 0 12px;
  color: #286b38;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

footer {
  padding: 65px 0 28px;
  color: oklch(70.4% .04 256.788);
  background: var(--black);
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.5fr 1.2fr;
  gap: 45px;
  min-width: 0;
}

.footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  min-width: 0;
  align-items: start;
}

.footer-links-row > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.footer-links-row li {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.footer-logo {
  height: 42px;
  margin-bottom: 20px;
}

footer p,
footer li {
  font-size: .85rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

footer h3 {
  margin: 0 0 20px;
  color: white;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 1.3em;
}

footer ul {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
  min-width: 0;
}

footer a {
  display: inline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-links-row a {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

@media (min-width: 681px) {
  .footer-links-row a {
    max-width: min(100%, 25ch);
  }
}

footer a:hover {
  color: var(--yellow);
}

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

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #282828;
  place-items: center;
}

.socials a:hover {
  color: var(--black);
  background: var(--yellow);
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  padding: 11px;
  border: 0;
  border-radius: 7px 0 0 7px;
  color: white;
  outline: 0;
  background: #282828;
}

.newsletter button {
  padding: 0 13px;
  border: 0;
  border-radius: 0 7px 7px 0;
  color: var(--black);
  background: var(--yellow);
  font-weight: 600;
}

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
}

.coming-soon-overlay[hidden] {
  display: none !important;
}

.coming-soon-dialog {
  position: relative;
  width: min(100%, 380px);
  padding: 32px 28px 26px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  animation: comingSoonIn .22s ease-out;
}

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

.coming-soon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111;
  cursor: pointer;
}

.coming-soon-close svg {
  width: 16px;
  height: 16px;
}

.coming-soon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(253, 185, 19, .18);
  color: var(--yellow-dark);
}

.coming-soon-icon svg {
  width: 28px;
  height: 28px;
}

.coming-soon-dialog.is-success .coming-soon-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 163, 74, .28);
  animation: successPop .35s ease-out;
}

.coming-soon-dialog.is-success .coming-soon-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.5;
}

.coming-soon-dialog.is-success h3 {
  color: #14532d;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(.7);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.coming-soon-dialog h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.35rem;
  font-weight: 800;
}

.coming-soon-dialog p {
  margin: 0 0 20px;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.55;
}

.coming-soon-dialog .btn {
  min-width: 120px;
}

.footer-bottom {
  display: flex;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid #292929;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a.active {
  color: var(--yellow);
  font-weight: 600;
}

.section.get {
        /* background-color: #ffffff;
        padding: 80px 20px; */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* font-family: sans-serif; */
    }
    .section.get h1 {
        font-size: 2.3rem;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 0px;
        margin-top: 0;
        
    }
    .section.get p {
        font-size: 1.125rem;
        /* color: #9ca3af; */
        font-weight: 300;
        margin-bottom: 25px;
        
        line-height: 1.5;
    }
    .section.get .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 200px;
        background-color: var(--yellow);
        color: #000000;
        font-weight: 700;
        font-size: 1.05rem;
        padding: 15px 28px;
        border-radius: 8px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 10px 20px -5px rgba(253, 189, 26, 0.4);
        transition: background-color 0.2s ease;
    }
    .section.get .cta-button:hover {
        background: var(--yellow-dark);
    }
    .section.get .cta-button svg,
    .section.get .cta-button i {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

@media (max-width: 1200px) and (min-width: 1025px) {
  .download-grid {
    grid-template-columns: 184px minmax(260px, 340px) 220px;
    column-gap: 28px;
  }

  .phone-mockup {
    width: 184px;
    height: 368px;
  }

  .download-copy {
    max-width: 340px;
  }

  .qr-card {
    max-width: 220px;
  }
}

@media (max-width: 1024px) {

  .nav-links,
  .desktop-download {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    width: 100%;
    max-height: 0;
    padding: 0 20px;
    background: white;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: .3s;
  }

  .mobile-menu.open {
    max-height: 520px;
    padding: 14px 20px 24px;
  }

  .mobile-menu a {
    padding: 11px 7px;
    font-weight: 600;
  }

  .mobile-menu .btn {
    margin-top: 8px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-grid {
    gap: 14px;
  }

  .contact-location-card {
    margin-top: 28px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy > p {
    order: 2;
    margin-top: 4px;
  }

  .trust-row {
    order: 3;
    margin-top: 10px;
    padding-top: 14px;
    gap: 8px 14px;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  .trust-item i,
  .trust-item svg {
    width: 14px;
    height: 14px;
  }

  .hero-visual {
    order: 4;
    max-width: 420px;
    width: 100%;
    margin: 8px auto 0;
    justify-content: center;
  }

  .hero-actions {
    order: 5;
    margin-top: 4px;
  }

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

  .about-hero {
    padding: 120px 0 44px;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
  }

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

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

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

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

  .about-images {
    order: 2;
    max-width: 650px;
    margin: auto;
  }

  .download-wrap {
    max-width: 920px;
  }

  .download {
    padding: 44px 0 40px;
  }

  .download-audience-tabs {
    width: min(100%, 420px);
    margin-bottom: 24px;
  }

  .download-grid {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 32px;
    row-gap: 18px;
    align-items: center;
    justify-content: center;
  }

  .download-col-phone {
    grid-row: 1 / span 2;
    justify-content: center;
    align-self: center;
  }

  .download-col-copy {
    justify-content: flex-start;
  }

  .download-col-qr {
    grid-column: 2;
    justify-content: flex-start;
  }

  .download-copy {
    max-width: none;
    width: 100%;
    text-align: left;
  }

  .download-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  }

  .download-copy .check-list {
    width: auto;
    max-width: none;
    margin: 0 0 18px;
    text-align: left;
  }

  .store-buttons {
    justify-content: flex-start;
  }

  .phone-mockup {
    width: 176px;
    height: 352px;
    transform: none;
  }

  .qr-card {
    transform: none;
    margin: 0;
    max-width: 236px;
    padding: 18px 14px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-row {
    grid-column: 1 / -1;
  }

  .footer-apps-bar {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .download {
    padding: 32px 0 28px;
  }

  .download::before {
    top: -70px;
    left: -50px;
    width: 170px;
    height: 170px;
  }

  .download::after {
    right: -60px;
    bottom: -80px;
    width: 190px;
    height: 190px;
  }

  .download-wrap {
    max-width: 400px;
  }

  .download-audience-tabs {
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    padding: 4px;
    border-radius: 14px;
  }

  .download-audience-tab {
    min-height: 52px;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .download-audience-tab-icon {
    width: 28px;
    height: 28px;
  }

  .download-audience-tab-icon i,
  .download-audience-tab-icon svg {
    width: 15px;
    height: 15px;
  }

  .download-audience-tab-copy strong {
    font-size: .84rem;
  }

  .download-audience-tab small {
    font-size: .64rem;
  }

  .download-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    justify-items: stretch;
    width: 100%;
  }

  .download-col,
  .download-col-phone,
  .download-col-copy,
  .download-col-qr {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    grid-row: auto;
    grid-column: auto;
    align-self: stretch;
  }

  .download-col-copy {
    order: 1;
  }

  .download-col-phone {
    order: 2;
  }

  .download-col-qr {
    display: none;
  }

  .download-copy {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    text-align: left;
  }

  .download-copy h2 {
    margin: 0 0 14px;
    max-width: none;
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 1.85rem);
    line-height: 1.2;
  }

  .download-copy .check-list {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 18px;
    padding: 0;
    text-align: left;
  }

  .download-copy .check-list li {
    margin-bottom: 10px;
    font-size: .95rem;
  }

  .download-copy .check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .download-copy .check-icon svg {
    width: 13px;
    height: 13px;
  }

  .download-copy .store-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    margin: 0;
  }

  .download-copy .store-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 12px 16px;
  }

  .phone-mockup {
    width: min(168px, 46vw);
    height: auto;
    aspect-ratio: 200 / 400;
    margin: 4px auto 0;
    transform: none;
  }

  .phone-mockup:hover,
  .qr-card:hover {
    transform: none;
  }
}

@media (max-width: 680px) {

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section.get h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .section {
    padding: 30px 0;
  }

  .download {
    padding: 28px 0 24px;
  }

  .section.get {
    padding: 30px 16px 24px;
  }

  .section.get p {
    margin: 14px 0 20px;
  }

  footer {
    padding-top: 24px;
  }

  .about-hero {
    padding: 110px 0 40px;
  }

  .about-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .about-hero h1 br {
    display: none;
  }

  .about-hero p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #d0d4db;
  }

  .breadcrumbs {
    font-size: 0.82rem;
    margin-bottom: 18px;
  }

  .navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, .97);
  }

  .logo img {
    height: 32px;
  }

  .hero {
    padding: 58px 0 24px;
  }

  .about-images {
    max-width: 460px;
    gap: 12px;
  }

  .about-images > img {
    height: 200px;
  }

  .about-images > img:first-child {
    height: 200px;
    margin-top: 0;
  }

  .about-images > img:nth-child(2) {
    height: 200px;
  }

  .about-logo {
    width: 76px;
    height: 76px;
  }

  .about-logo img {
    width: 48px;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    line-height: 1.18;
    letter-spacing: -.03em;
  }

  .hero-copy > p {
    margin-top: 6px;
    font-size: .88rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 8px;
    gap: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: .9rem;
  }

  .trust-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .trust-item {
    font-size: 0.72rem;
  }

  .trust-item i,
  .trust-item svg {
    width: 13px;
    height: 13px;
  }

  .hero-visual {
    padding-left: 0;
    max-width: min(88vw, 290px);
    margin-top: 8px;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-width: 5px;
  }

  .rating {
    bottom: 12px;
    left: -6px;
    padding: 9px 11px;
    gap: 8px;
    border-radius: 12px;
  }

  .rating-icon {
    width: 34px;
    height: 34px;
  }

  .rating-icon svg {
    width: 16px;
    height: 16px;
  }

  .rating strong {
    font-size: .95rem;
  }

  .rating span {
    font-size: .7rem;
  }

  .services-grid,
  .services-page-grid,
  .features-grid,
  .stats-grid,
  .download-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links-row {
    display: flex;
    gap: 24px;
    grid-column: auto;
  }

  .footer-apps {
    grid-template-columns: 1fr;
  }

  .footer-store-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }

  .footer-links-row > div {
    flex: 1;
    min-width: 0;
  }

  .card-swiper {
    margin-inline: -16px;
  }

  .card-swiper-track.values-grid,
  .card-swiper-track.services-grid,
  .card-swiper-track.services-page-grid,
  .card-swiper-track.leadership-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 4px 16px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .card-swiper-track.values-grid::-webkit-scrollbar,
  .card-swiper-track.services-grid::-webkit-scrollbar,
  .card-swiper-track.services-page-grid::-webkit-scrollbar,
  .card-swiper-track.leadership-grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }

  .card-swiper-track.values-grid > .valuess,
  .card-swiper-track.services-grid > .valuess,
  .card-swiper-track.services-page-grid > .valuess,
  .card-swiper-track.leadership-grid > .team-card {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    max-width: 300px;
    min-width: 0;
    height: auto;
    scroll-snap-align: center;
  }

  .card-swiper-dots {
    display: flex;
  }

  .service-card {
    padding: 25px;
  }

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

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 16px;
    border-right: 1px solid rgba(253, 185, 19, .15);
    border-bottom: 1px solid rgba(253, 185, 19, .15);
  }

  .stat:nth-child(even) {
    border-right: 0;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .stat strong {
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .stat span {
    display: block;
    min-height: 1.4em;
    line-height: 1.4;
  }

  .download-copy h2 {
    font-size: clamp(1.4rem, 6.2vw, 1.7rem);
  }

  .download-audience-tab small {
    display: none;
  }

  .download-audience-tab {
    min-height: 46px;
    justify-content: center;
  }

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

  #contact.section {
    padding: 30px 0 30px;
  }

  .contact-copy .content-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .contact-details {
    gap: 18px;
    margin-top: 24px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item .service-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .contact-location-card {
    margin-top: 24px;
    padding: 22px 16px;
  }

  .contact-location-card h3 {
    font-size: 1.05rem;
  }

  .contact-map {
    aspect-ratio: 4 / 3;
    margin-top: 16px;
  }

  .contact-map iframe {
    min-height: 180px;
  }

  .contact-map-link {
    bottom: 10px;
    padding: 9px 14px;
    font-size: .8rem;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 13px;
    text-align: center;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .container.download-wrap {
    width: min(100% - 24px, 1180px);
  }

  .download-audience-tab-copy strong {
    font-size: .8rem;
  }

  .phone-mockup {
    width: min(150px, 44vw);
  }
}

@media (max-width: 360px) {
  .download-audience-tab-icon {
    display: none;
  }

  .download-copy h2 {
    font-size: clamp(1.3rem, 7vw, 1.5rem);
  }
}