:root {
  --blue: #075fe8;
  --blue-dark: #062b78;
  --blue-soft: #eaf2ff;
  --cyan: #17cbbb;
  --cyan-dark: #00aa9f;
  --ink: #081b3a;
  --muted: #5d6a83;
  --line: rgba(8, 27, 58, 0.12);
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --shadow: 0 24px 80px rgba(6, 43, 120, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(23, 203, 187, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 2%, rgba(7, 95, 232, 0.12), transparent 30rem),
    #fff;
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  background: var(--blue-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 10px 10px;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(8, 27, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(100%, 300px);
  flex: 0 0 auto;
}

.brand img,
.footer-brand {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-dark);
  background: var(--blue-soft);
  outline: none;
}

.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 34px rgba(7, 95, 232, 0.22);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--cyan-dark));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% -14% auto auto;
  width: 34rem;
  height: 34rem;
  background: linear-gradient(135deg, rgba(7, 95, 232, 0.12), rgba(23, 203, 187, 0.24));
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(2.5rem, 4vw, 5.75rem);
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 0.35rem;
}

.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 1.3rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(7, 95, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(6, 43, 120, 0.06);
  color: var(--blue-dark);
  letter-spacing: 0.015em;
  text-transform: none;
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 15.5ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.22rem;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(7, 95, 232, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 56px rgba(7, 95, 232, 0.33);
}

.button-secondary {
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(6, 43, 120, 0.08);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 800;
  box-shadow: 0 10px 34px rgba(6, 43, 120, 0.06);
}

.trust-strip span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--cyan);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 710px;
  display: grid;
  place-items: center;
  justify-self: end;
  align-self: start;
  width: min(100%, 500px);
  padding-top: 0;
}

.phone-card {
  position: relative;
  width: min(100%, 430px);
  margin-top: 10.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(7, 95, 232, 0.12);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.phone-card::before,
.phone-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  opacity: 0.18;
}

.phone-card::before {
  width: 8rem;
  height: 8rem;
  top: -2.5rem;
  right: -2.2rem;
}

.phone-card::after {
  width: 5rem;
  height: 5rem;
  left: -1.2rem;
  bottom: 2rem;
}

.phone-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
  border-radius: 28px;
}

.scan-result {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.72rem;
  align-items: center;
  width: min(320px, 76vw);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(8, 27, 58, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 50px rgba(6, 43, 120, 0.16);
}

.scan-result strong {
  line-height: 1.1;
}

.scan-result small {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.35;
}

.scan-result .dot {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
}

.scan-result-green {
  top: 1rem;
  left: 0;
  right: auto;
}

.scan-result-green .dot {
  background: #19c964;
}

.scan-result-orange {
  top: 6.6rem;
  right: 0;
  left: auto;
  bottom: auto;
}

.scan-result-orange .dot {
  background: #f59e0b;
}

.logos-row {
  padding: 20px 0 42px;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.use-cases span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 120px;
}

.section-heading p,
.center-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.benefit-stack {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.step-card,
.feature-card,
.proof-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(6, 43, 120, 0.07);
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.benefit-card h3,
.benefit-card p {
  grid-column: 2;
}

.benefit-card p,
.step-card p,
.feature-card p,
.proof-card span {
  color: var(--muted);
}

.icon-mark {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.tinted {
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.5), rgba(234, 242, 255, 0.92));
  border-block: 1px solid rgba(8, 27, 58, 0.06);
}

.center-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(7, 95, 232, 0.14), rgba(23, 203, 187, 0.18));
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 3.4rem;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 900;
}

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

.feature-card {
  padding: 1.45rem;
  border-radius: var(--radius-md);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 1.3rem;
  padding-inline: 0.7rem;
  border-radius: 16px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(7, 95, 232, 0.1), rgba(23, 203, 187, 0.18));
  font-weight: 900;
}

.proof-section {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.proof-card strong {
  font-size: 1.05rem;
}

.contact-section {
  background:
    radial-gradient(circle at 100% 30%, rgba(23, 203, 187, 0.2), transparent 24rem),
    linear-gradient(180deg, #fff, #f6f9ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(23, 203, 187, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(23, 203, 187, 0.08);
}

.contact-highlight .dot {
  flex: 0 0 auto;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: var(--cyan);
}

.contact-highlight p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row-half {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  padding: 0.88rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 95, 232, 0.12);
  outline: none;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 1rem 0 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.consent-row input {
  width: auto;
  margin-top: 0.25rem;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.form-note code {
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  width: min(100%, 220px);
  margin-bottom: 0.5rem;
}


.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
  outline: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    justify-self: center;
    width: 100%;
    min-height: 620px;
  }

  .phone-card {
    margin-top: 5rem;
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-heading {
    position: static;
  }

  .hero-visual {
    min-height: 540px;
    justify-self: center;
    width: 100%;
  }

  .steps,
  .feature-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 210px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    text-align: center;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy .eyebrow {
    font-size: 1rem;
    padding: 0.72rem 0.95rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 1.02;
  }

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

  .phone-card {
    margin-top: 0;
  }

  .phone-card {
    width: min(100%, 390px);
    padding: 1.2rem;
    border-radius: 32px;
  }

  .scan-result {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 0.8rem;
  }

  .steps,
  .feature-grid,
  .proof-grid,
  .form-row-half {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

  .benefit-card h3,
  .benefit-card p {
    grid-column: auto;
  }

  .icon-mark {
    margin-bottom: 1rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .section-pad {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip span,
  .use-cases span {
    width: 100%;
    justify-content: center;
  }
}


.hero .eyebrow {
  margin-bottom: 1.3rem;
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  letter-spacing: 0.04em;
}

.hero-title {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: clamp(2.95rem, 4.25vw, 4.9rem);
  line-height: 0.98;
}

.hero-title span {
  display: block;
}

@media (min-width: 761px) {
  .hero-title span {
    white-space: nowrap;
  }
}


/* v9 HERO CLEAN REBUILD */
.hero.section-pad {
  padding-top: 72px;
}

.hero.section-pad .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 690px) 360px !important;
  gap: clamp(56px, 5vw, 92px) !important;
  align-items: start !important;
  justify-content: center !important;
}

.hero.section-pad .hero-copy {
  max-width: 690px !important;
  padding-top: 0 !important;
}

.hero.section-pad .hero-copy .eyebrow,
.hero.section-pad .eyebrow {
  display: inline-block !important;
  margin: 0 0 24px !important;
  padding: 10px 16px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(7, 95, 232, 0.14) !important;
  box-shadow: 0 10px 30px rgba(6, 43, 120, 0.06) !important;
  color: var(--ink) !important;
  text-transform: none !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  font-weight: 900 !important;
}

.hero.section-pad .hero-title {
  display: block !important;
  max-width: 690px !important;
  margin: 0 0 26px !important;
  color: var(--ink) !important;
  font-size: 64px !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.hero.section-pad .hero-title span {
  display: block !important;
  white-space: nowrap !important;
}

.hero.section-pad .lead {
  max-width: 680px !important;
}

.hero.section-pad .hero-visual {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 30px !important;
  width: 360px !important;
  min-height: auto !important;
  padding-top: 18px !important;
  justify-self: center !important;
}

.hero.section-pad .scan-result {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 330px !important;
  max-width: 100% !important;
  margin: 0 !important;
  z-index: 3 !important;
}

.hero.section-pad .scan-result-green {
  order: 1 !important;
}

.hero.section-pad .phone-card {
  order: 2 !important;
  position: relative !important;
  width: 340px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 24px !important;
  border-radius: 38px !important;
}

.hero.section-pad .phone-card img {
  width: 100% !important;
  max-width: 270px !important;
  height: auto !important;
  margin-inline: auto !important;
  object-fit: contain !important;
}

.hero.section-pad .scan-result-orange {
  order: 3 !important;
}

@media (min-width: 1601px) {
  .hero.section-pad .hero-grid {
    grid-template-columns: minmax(0, 700px) 380px !important;
  }

  .hero.section-pad .hero-copy {
    max-width: 700px !important;
  }

  .hero.section-pad .hero-title {
    max-width: 700px !important;
    font-size: 66px !important;
  }

  .hero.section-pad .hero-visual {
    width: 380px !important;
  }

  .hero.section-pad .phone-card {
    width: 360px !important;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .hero.section-pad .hero-grid {
    grid-template-columns: minmax(0, 610px) 340px !important;
    gap: 48px !important;
  }

  .hero.section-pad .hero-copy {
    max-width: 610px !important;
  }

  .hero.section-pad .hero-title {
    max-width: 610px !important;
    font-size: 58px !important;
  }

  .hero.section-pad .hero-copy .eyebrow,
  .hero.section-pad .eyebrow {
    font-size: 18px !important;
  }

  .hero.section-pad .hero-visual {
    width: 340px !important;
  }

  .hero.section-pad .phone-card {
    width: 320px !important;
  }

  .hero.section-pad .phone-card img {
    max-width: 250px !important;
  }

  .hero.section-pad .scan-result {
    width: 320px !important;
  }
}

@media (max-width: 980px) {
  .hero.section-pad .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
  }

  .hero.section-pad .hero-copy {
    max-width: 100% !important;
  }

  .hero.section-pad .hero-copy .eyebrow,
  .hero.section-pad .eyebrow {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .hero.section-pad .hero-title {
    max-width: 100% !important;
    font-size: clamp(48px, 8.2vw, 62px) !important;
    line-height: 1.02 !important;
  }

  .hero.section-pad .hero-visual {
    width: min(100%, 390px) !important;
    gap: 24px !important;
    padding-top: 0 !important;
  }

  .hero.section-pad .phone-card {
    width: min(100%, 360px) !important;
  }
}

@media (max-width: 760px) {
  .hero.section-pad {
    padding-top: 48px;
  }

  .hero.section-pad .hero-copy .eyebrow,
  .hero.section-pad .eyebrow {
    font-size: 18px !important;
    padding: 9px 12px !important;
  }

  .hero.section-pad .hero-title {
    font-size: clamp(42px, 12.2vw, 56px) !important;
    line-height: 1.03 !important;
  }

  .hero.section-pad .hero-title span {
    white-space: normal !important;
  }

  .hero.section-pad .scan-result {
    width: 100% !important;
  }
}
