:root {
  color-scheme: light;
  --g1-blue: #0b5cab;
  --g1-blue-dark: #073b70;
  --g1-navy: #092747;
  --g1-ink: #142235;
  --g1-muted: #526172;
  --g1-surface: #ffffff;
  --g1-page: #f4f8fb;
  --g1-border: #d8e2ec;
  --g1-focus: #b94d00;
  --g1-success: #176b42;
  --g1-success-bg: #e8f6ed;
  --g1-error: #a63131;
  --g1-error-bg: #fff0f0;
  --g1-yellow: #ffd849;
  --g1-yellow-soft: #fff6c9;
  --g1-blue-soft: #eaf5ff;
  --g1-shadow: 0 14px 36px rgb(23 45 71 / 12%);
  --g1-shadow-lg: 0 28px 72px rgb(6 45 85 / 16%);
  --g1-radius-sm: 14px;
  --g1-radius-lg: 24px;
  --g1-radius-xl: 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.g1-site {
  min-width: 320px;
  margin: 0;
  color: var(--g1-ink);
  background: var(--g1-page);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-inline-size: 100%;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--g1-focus);
  outline-offset: 3px;
}

.g1-site-container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.g1-skip-link {
  position: fixed;
  z-index: 100;
  inset: 12px auto auto 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 9px;
  color: #fff;
  background: var(--g1-navy);
  font-weight: 800;
  text-decoration: none;
}

.g1-skip-link:focus {
  transform: translateY(0);
}

.g1-site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(216 226 236 / 82%);
  background: rgb(255 255 255 / 93%);
  backdrop-filter: blur(14px);
}

.g1-site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.g1-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--g1-navy);
  font-size: 1.125rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.g1-site-brand__mark {
  display: inline-grid;
  inline-size: 36px;
  block-size: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--g1-navy);
  background: var(--g1-yellow);
  box-shadow: inset 0 -3px 0 rgb(154 104 0 / 14%);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.g1-site-nav ul,
.g1-site-footer__links,
.g1-language-flag-list,
.g1-check-list,
.g1-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.g1-site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.g1-site-nav a {
  display: inline-flex;
  min-block-size: 42px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--g1-ink);
  font-size: 0.925rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.g1-site-nav a:hover,
.g1-site-nav a[aria-current='page'] {
  color: var(--g1-blue-dark);
  background: var(--g1-blue-soft);
}

.g1-site-nav a[aria-current='page'] {
  box-shadow: inset 0 0 0 1px rgb(11 92 171 / 14%);
}

.g1-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.g1-button {
  display: inline-flex;
  min-block-size: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.g1-button:hover {
  transform: translateY(-2px);
}

.g1-button--primary {
  color: #fff;
  background: var(--g1-blue);
  box-shadow: 0 10px 20px rgb(11 92 171 / 25%);
}

.g1-button--primary:hover {
  background: var(--g1-blue-dark);
  box-shadow: 0 14px 28px rgb(11 92 171 / 30%);
}

.g1-button--secondary {
  border-color: var(--g1-border);
  color: var(--g1-navy);
  background: #fff;
}

.g1-button--secondary:hover {
  border-color: #a9c9e6;
  background: var(--g1-blue-soft);
}

.g1-eyebrow {
  margin: 0 0 14px;
  color: var(--g1-blue-dark);
  font-size: 0.8125rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.g1-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3faff 0%, #ffffff 48%, #e7f5ff 100%);
}

.g1-hero::before,
.g1-hero::after {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  content: '';
  pointer-events: none;
}

.g1-hero::before {
  inset: -190px -210px auto auto;
  inline-size: 520px;
  block-size: 520px;
  background: rgb(255 216 73 / 36%);
}

.g1-hero::after {
  inset: auto auto -230px -180px;
  inline-size: 490px;
  block-size: 490px;
  background: rgb(11 92 171 / 8%);
}

.g1-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  min-block-size: 0;
  padding-block: clamp(48px, 5vw, 76px);
}

.g1-hero h1,
.g1-page-hero h1,
.g1-section-heading h2,
.g1-download-panel h2 {
  margin: 0;
  color: var(--g1-navy);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.g1-hero h1 {
  max-inline-size: 780px;
  font-size: clamp(2.7rem, 5.3vw, 4.6rem);
}

.g1-hero__lede,
.g1-page-hero__lede,
.g1-section-heading p,
.g1-copy,
.g1-download-panel p {
  color: var(--g1-muted);
}

.g1-hero__lede {
  max-inline-size: 660px;
  margin: 24px 0 30px;
  font-size: clamp(1.08rem, 1.75vw, 1.3rem);
  line-height: 1.6;
}

.g1-hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 23px 0 0;
  color: var(--g1-navy);
  font-size: 0.91rem;
  font-weight: 730;
}

.g1-hero__assurance span::before {
  margin-inline-end: 7px;
  color: var(--g1-success);
  content: '✓';
}

.g1-hero__visual {
  position: relative;
  justify-self: center;
  inline-size: min(100%, 310px);
}

.g1-hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: 8% -13% auto auto;
  inline-size: 83%;
  aspect-ratio: 1;
  border-radius: 32% 68% 64% 36% / 35% 31% 69% 65%;
  background: var(--g1-yellow);
  content: '';
  transform: rotate(12deg);
}

.g1-hero__phone {
  inline-size: min(100%, 340px);
  block-size: auto;
  margin-inline: auto;
  filter: drop-shadow(0 25px 30px rgb(4 39 70 / 25%));
}

.g1-stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.g1-stat-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgb(216 226 236 / 88%);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--g1-shadow);
}

.g1-stat {
  padding: 22px clamp(15px, 3vw, 34px);
  text-align: center;
}

.g1-stat + .g1-stat {
  border-inline-start: 1px solid var(--g1-border);
}

.g1-stat strong,
.g1-stat span {
  display: block;
}

.g1-stat strong {
  color: var(--g1-blue-dark);
  font-size: 1.36rem;
  font-weight: 860;
}

.g1-stat span {
  margin-top: 2px;
  color: var(--g1-muted);
  font-size: 0.875rem;
}

.g1-section {
  padding-block: clamp(66px, 9vw, 116px);
}

.g1-section--white {
  background: #fff;
}

.g1-section--soft {
  background: linear-gradient(180deg, #f5faff 0%, #eef7fd 100%);
}

.g1-section-heading {
  max-inline-size: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.g1-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.g1-section-heading h2,
.g1-download-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.g1-section-heading p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.g1-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.g1-feature-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--g1-border);
  border-radius: var(--g1-radius-lg);
  background: #fff;
  box-shadow: 0 10px 25px rgb(23 45 71 / 5%);
}

.g1-feature-card img {
  inline-size: 58px;
  block-size: 58px;
  object-fit: contain;
}

.g1-feature-card h3 {
  margin: 22px 0 8px;
  color: var(--g1-navy);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.g1-feature-card p {
  margin: 0;
  color: var(--g1-muted);
}

.g1-app-gallery {
  padding: clamp(14px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid #cfe2f2;
  border-radius: var(--g1-radius-xl);
  background: linear-gradient(145deg, #fff 0%, #f3f9fe 62%, #fff8d7 100%);
  box-shadow: var(--g1-shadow);
}

.g1-app-gallery__viewport {
  display: flex;
  overflow-x: auto;
  margin: 0;
  padding: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  list-style: none;
}

.g1-app-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.g1-app-gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.g1-app-gallery__slide figure {
  display: grid;
  max-inline-size: 560px;
  gap: 20px;
  margin: 0 auto;
}

.g1-app-gallery__screen {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9e8f4;
  border-radius: 28px;
  background: radial-gradient(circle at 84% 18%, #ffe276 0 15%, transparent 15.5%), linear-gradient(145deg, #eaf7ff 0%, #fff 72%);
}

.g1-app-gallery__slide img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}

.g1-app-gallery figcaption {
  display: grid;
  gap: 4px;
  max-inline-size: 430px;
  margin-inline: auto;
  color: var(--g1-muted);
  text-align: center;
}

.g1-app-gallery figcaption strong {
  color: var(--g1-navy);
  font-size: 1.1rem;
}

.g1-app-gallery__controls {
  display: grid;
  grid-template-columns: auto minmax(150px, auto) auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.g1-app-gallery__button {
  display: inline-flex;
  min-block-size: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid #bdd8ec;
  border-radius: 11px;
  color: var(--g1-blue-dark);
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.g1-app-gallery__button:hover:not(:disabled) {
  border-color: var(--g1-blue);
  background: var(--g1-blue-soft);
  transform: translateY(-1px);
}

.g1-app-gallery__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.g1-app-gallery__status {
  color: var(--g1-navy);
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
}

.g1-app-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}

.g1-app-gallery__dot {
  display: grid;
  inline-size: 30px;
  block-size: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.g1-app-gallery__dot span {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 999px;
  background: #adc8dc;
  transition: inline-size 160ms ease, background-color 160ms ease;
}

.g1-app-gallery__dot[aria-pressed='true'] span {
  inline-size: 20px;
  background: var(--g1-blue);
}

.g1-language-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
}

.g1-language-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--g1-radius-xl);
  color: #fff;
  background: var(--g1-navy);
  box-shadow: var(--g1-shadow-lg);
}

.g1-language-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.g1-language-panel p {
  margin: 18px 0 0;
  color: #d8e7f5;
  font-size: 1.06rem;
}

.g1-language-flags-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--g1-border);
  border-radius: var(--g1-radius-xl);
  background: #fff;
  box-shadow: var(--g1-shadow);
}

.g1-language-flags-panel .g1-eyebrow {
  margin: 0;
}

.g1-language-flag-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.g1-language-flag-list li {
  display: grid;
  min-block-size: 98px;
  place-items: center;
  gap: 7px;
  padding: 13px 8px;
  border: 1px solid #dce9f3;
  border-radius: 16px;
  color: var(--g1-navy);
  background: #f6fbff;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.g1-language-flag-list img {
  inline-size: 46px;
  block-size: 46px;
}

.g1-language-flags-panel__note {
  margin: 19px 0 0;
  color: var(--g1-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.g1-guide-card {
  display: flex;
  min-block-size: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--g1-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(23 45 71 / 5%);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.g1-guide-card > img {
  inline-size: 100%;
  aspect-ratio: 16 / 8.5;
  background: #eaf4fb;
  object-fit: cover;
}

.g1-guide-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}

.g1-guide-card__label {
  color: var(--g1-blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.g1-guide-card__title {
  margin-top: 9px;
  color: var(--g1-navy);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.g1-guide-card__description {
  margin-top: 9px;
  color: var(--g1-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.g1-guide-card__link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--g1-blue-dark);
  font-size: 0.9rem;
  font-weight: 820;
}

.g1-driving-tips-page .g1-guide-grid {
  max-inline-size: 1004px;
  margin-inline: auto;
}

.g1-driving-tips-page .g1-guide-card {
  max-inline-size: 320px;
  justify-self: center;
}

.g1-driving-tips-page .g1-guide-card > img {
  block-size: 180px;
}

.g1-driving-tips-page .g1-guide-card > img.g1-guide-card__image--contain {
  object-fit: contain;
}

.g1-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(28px, 6vw, 64px);
  overflow: hidden;
  border-radius: var(--g1-radius-xl);
  background: linear-gradient(130deg, #073b70, #0d6bb8);
  box-shadow: var(--g1-shadow-lg);
}

.g1-download-panel h2 {
  color: #fff;
}

.g1-download-panel p {
  max-inline-size: 620px;
  margin: 15px 0 25px;
  color: #deedfb;
  font-size: 1.05rem;
}

.g1-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.g1-store-badges a {
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.g1-store-badges a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.g1-store-badges img {
  display: block;
  inline-size: auto;
}

.g1-store-badges .g1-store-badges__apple {
  block-size: 48px;
}

.g1-store-badges .g1-store-badges__google {
  block-size: 72px;
}

.g1-store-badges--compact .g1-store-badges__apple {
  block-size: 40px;
}

.g1-store-badges--compact .g1-store-badges__google {
  block-size: 60px;
}

.g1-download-panel__qr {
  display: flex;
  gap: 14px;
}

.g1-qr-code {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.g1-qr-code__image {
  display: grid;
  inline-size: 128px;
  aspect-ratio: 1;
  place-items: center;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.g1-qr-code__image img {
  inline-size: 100%;
  max-block-size: 100%;
  block-size: auto;
  object-fit: contain;
}

.g1-qr-code:hover .g1-qr-code__image {
  box-shadow: 0 10px 22px rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}

.g1-page-hero {
  background: linear-gradient(135deg, #eef8ff 0%, #ffffff 60%, #fff9d8 100%);
}

.g1-page-hero__inner {
  max-inline-size: 850px;
  padding-block: clamp(62px, 9vw, 108px);
}

.g1-page-hero h1 {
  font-size: clamp(2.65rem, 6vw, 4.75rem);
}

.g1-page-hero__lede {
  max-inline-size: 740px;
  margin: 21px 0 0;
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  line-height: 1.62;
}

.g1-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
}

.g1-contact-intro-card,
.g1-contact-details-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--g1-radius-xl);
}

.g1-contact-intro-card {
  display: grid;
  align-content: space-between;
  gap: 34px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #073b70 0%, #0b5cab 62%, #1377c8 100%);
  box-shadow: var(--g1-shadow-lg);
}

.g1-contact-intro-card__image {
  inline-size: min(100%, 214px);
  block-size: auto;
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgb(0 29 58 / 24%);
}

.g1-contact-intro-card .g1-eyebrow {
  color: #ffe376;
}

.g1-contact-intro-card h2,
.g1-contact-details-card h2,
.g1-contact-next-step h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.05rem);
  font-weight: 860;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.g1-contact-intro-card h2 {
  color: #fff;
}

.g1-contact-intro-card p:not(.g1-eyebrow) {
  margin: 18px 0 0;
  color: #d8e7f5;
  font-size: 1.03rem;
  line-height: 1.62;
}

.g1-contact-details-card {
  border: 1px solid var(--g1-border);
  background: #fff;
  box-shadow: var(--g1-shadow);
}

.g1-contact-details-card h2,
.g1-contact-next-step h2 {
  color: var(--g1-navy);
}

.g1-contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.g1-contact-action {
  display: flex;
  min-block-size: 76px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #d8e6f1;
  border-radius: 16px;
  color: var(--g1-navy);
  background: #f6fbff;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.g1-contact-action:hover {
  border-color: #a9cde8;
  background: var(--g1-blue-soft);
  transform: translateY(-2px);
}

.g1-contact-action__icon {
  display: grid;
  flex: 0 0 42px;
  inline-size: 42px;
  block-size: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--g1-blue-dark);
  background: #d9edfb;
  font-size: 1.25rem;
  font-weight: 850;
}

.g1-contact-action__label,
.g1-contact-action strong {
  display: block;
}

.g1-contact-action__label,
.g1-contact-address__label {
  color: var(--g1-muted);
  font-size: 0.79rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g1-contact-action strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.g1-contact-address {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--g1-border);
  color: var(--g1-muted);
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.6;
}

.g1-contact-socials {
  margin-top: 25px;
}

.g1-contact-socials h3 {
  margin: 0;
  color: var(--g1-navy);
  font-size: 1rem;
}

.g1-contact-socials ul {
  display: flex;
  gap: 10px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.g1-contact-socials a {
  display: grid;
  inline-size: 48px;
  block-size: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d2e2ee;
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.g1-contact-socials a:hover {
  border-color: #9fc8e9;
  box-shadow: 0 7px 16px rgb(23 45 71 / 12%);
  transform: translateY(-2px);
}

.g1-contact-socials img {
  inline-size: 28px;
  block-size: 28px;
  object-fit: contain;
}

.g1-contact-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-inline-size: 1000px;
}

.g1-contact-next-step > div {
  max-inline-size: 700px;
}

.g1-contact-next-step p:not(.g1-eyebrow) {
  margin: 15px 0 0;
  color: var(--g1-muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.g1-breadcrumb {
  margin-bottom: 19px;
}

.g1-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--g1-muted);
  font-size: 0.9rem;
}

.g1-breadcrumb li + li::before {
  margin-inline-end: 7px;
  color: #7890a5;
  content: '/';
}

.g1-breadcrumb a {
  color: var(--g1-blue-dark);
  font-weight: 700;
}

.g1-practice-page {
  background: var(--g1-page);
}

.g1-practice-page .g1-practice-page__main {
  width: min(100% - 40px, 1120px);
  padding: clamp(54px, 8vw, 94px) 0 clamp(72px, 10vw, 120px);
}

.g1-practice-page .g1-practice-page__disclaimer {
  max-inline-size: 740px;
  margin: 24px 0 0;
  padding: 12px 15px;
  border: 1px solid #cfe3f5;
  border-radius: 12px;
  color: var(--g1-blue-dark);
  background: #f6fbff;
}

.g1-site-footer {
  color: #d8e7f5;
  background: var(--g1-navy);
}

.g1-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(2, minmax(150px, 0.7fr));
  gap: clamp(32px, 6vw, 86px);
  padding-block: clamp(50px, 8vw, 76px) 38px;
}

.g1-site-footer .g1-site-brand {
  color: #fff;
}

.g1-site-footer .g1-site-brand__mark {
  color: var(--g1-navy);
}

.g1-site-footer__intro p {
  max-inline-size: 350px;
  margin: 15px 0 22px;
  color: #bcd0e3;
}

.g1-site-footer h2 {
  margin: 2px 0 15px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.g1-site-footer__links {
  display: grid;
  gap: 10px;
}

.g1-site-footer__links a {
  color: #c8d9e8;
  font-size: 0.94rem;
  text-decoration: none;
}

.g1-site-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.g1-site-footer__legal {
  padding-block: 22px 30px;
  border-top: 1px solid rgb(189 213 234 / 18%);
}

.g1-site-footer__legal p {
  max-inline-size: 800px;
  margin: 0;
  color: #a8bed2;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .g1-hero__grid,
  .g1-language-layout {
    grid-template-columns: 1fr;
  }

  .g1-hero__copy {
    max-inline-size: 760px;
  }

  .g1-hero__visual {
    justify-self: center;
    inline-size: min(100%, 300px);
  }

  .g1-language-panel {
    max-inline-size: 760px;
  }

  .g1-language-flags-panel {
    max-inline-size: 510px;
    justify-self: center;
  }

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

  .g1-driving-tips-page .g1-guide-grid {
    max-inline-size: 662px;
  }

  .g1-site-footer__inner {
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(140px, 0.8fr));
  }
}

@media (max-width: 720px) {
  .g1-site-header {
    background: #fff;
  }

  .g1-site-container,
  .g1-practice-page .g1-practice-page__main {
    width: min(100% - 28px, 1160px);
  }

  .g1-site-header__inner {
    min-height: auto;
    padding-block: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .g1-site-nav {
    inline-size: 100%;
  }

  .g1-site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 5px;
  }

  .g1-site-nav a {
    justify-content: center;
    padding-inline: 6px;
    font-size: 0.875rem;
  }

  .g1-hero__grid {
    min-block-size: 0;
    gap: 31px;
    padding-block: 56px 76px;
  }

  .g1-hero__visual {
    inline-size: min(100%, 260px);
  }

  .g1-stat-strip {
    margin-top: -20px;
  }

  .g1-stat-strip__inner {
    grid-template-columns: 1fr;
  }

  .g1-stat + .g1-stat {
    border-block-start: 1px solid var(--g1-border);
    border-inline-start: 0;
  }

  .g1-feature-grid,
  .g1-guide-grid,
  .g1-site-footer__inner,
  .g1-download-panel,
  .g1-contact-layout {
    grid-template-columns: 1fr;
  }

  .g1-driving-tips-page .g1-guide-grid {
    max-inline-size: 320px;
  }

  .g1-download-panel__qr {
    justify-content: flex-start;
  }

  .g1-contact-intro-card__image {
    justify-self: start;
  }

  .g1-contact-next-step {
    align-items: flex-start;
    flex-direction: column;
  }

  .g1-app-gallery {
    padding: 12px;
  }

  .g1-app-gallery__slide figure {
    gap: 16px;
  }

  .g1-app-gallery__screen {
    border-radius: 22px;
  }

  .g1-app-gallery__controls {
    gap: 8px;
    margin-top: 18px;
  }

  .g1-app-gallery__button {
    min-block-size: 40px;
    padding-inline: 11px;
    font-size: 0.84rem;
  }

  .g1-app-gallery__status {
    font-size: 0.8rem;
  }

  .g1-qr-code__image {
    inline-size: min(36vw, 128px);
  }

  .g1-site-footer__inner {
    gap: 34px;
  }

}

@media (max-width: 460px) {
  .g1-button-row,
  .g1-button {
    inline-size: 100%;
  }

  .g1-store-badges {
    display: grid;
    justify-items: start;
    gap: 8px;
  }

  .g1-store-badges a,
  .g1-store-badges img {
    inline-size: auto;
  }

  .g1-language-flags-panel {
    padding: 20px;
  }

  .g1-app-gallery__controls {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 1.45fr) minmax(0, 1fr);
  }

  .g1-app-gallery__button {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
