@font-face { font-family: 'Outfit'; src: url('fonts/outfit-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --bg: #f7f8fb;
  --bg-soft: #eef2f7;
  --bg-card: #ffffff;
  --text: #081f35;
  --text-secondary: #536273;
  --text-muted: #8b98a7;
  --navy: #08243e;
  --navy-soft: rgba(8, 36, 62, 0.08);
  --orange: #ff7a18;
  --orange-dark: #e95f00;
  --orange-soft: rgba(255, 122, 24, 0.13);
  --border: rgba(8, 36, 62, 0.13);
  --border-light: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 70px rgba(8, 36, 62, 0.13);
  --shadow-soft: 0 14px 38px rgba(8, 36, 62, 0.09);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
body * {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

button {
  font-family: inherit;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(8, 36, 62, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 36, 62, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.ambient-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 460px;
  height: 460px;
  top: -160px;
  left: -130px;
  background: var(--orange);
  opacity: 0.13;
}

.orb-2 {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 12%;
  background: #123c62;
  opacity: 0.10;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 248, 251, 0.88);
  border-bottom: 1px solid rgba(8, 36, 62, 0.09);
  backdrop-filter: blur(18px) saturate(1.2);
}

nav.scrolled {
  box-shadow: 0 14px 34px rgba(8, 36, 62, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.4rem 2.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255, 122, 24, 0.24);
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 9rem 2.5rem 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 248, 251, 0.72), rgba(247, 248, 251, 0.55) 38%, rgba(247, 248, 251, 0.22) 65%, rgba(247, 248, 251, 0.08) 100%), linear-gradient(180deg, rgba(247, 248, 251, 0.04), var(--bg) 96%);
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 1.35rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0.45;
  animation: pulseDot 2.6s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.45; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 1.55rem;
}

.hero-title span {
  color: var(--orange);
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 650px;
  margin-bottom: 2.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.035em;
  border: 1px solid transparent;
}

.btn-primary {
  padding: 0.98rem 1.65rem;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 122, 24, 0.27);
}

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

.btn-secondary {
  padding: 0.98rem 1.45rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: rgba(255, 122, 24, 0.45);
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.72rem 1.1rem;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.2);
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: softPulse 4.8s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(255, 122, 24, 0.18);
  }
}

.hero-card-inner {
  border-radius: calc(var(--radius-xl) - 10px);
  padding: 1.55rem;
  background: var(--bg-card);
}

.hero-card-kicker {
  color: var(--orange-dark);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 850;
  margin-bottom: 0.8rem;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.95rem;
}

.hero-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  font-size: 0.95rem;
}

.hero-card-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.hero-card-list span {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero-card-list span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  flex-shrink: 0;
}

.main-section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 2.5rem;
}

.section-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.label-index {
  font-size: 1rem;
  color: var(--orange-dark);
  font-weight: 850;
}

.label-line {
  width: 44px;
  height: 1px;
  background: var(--orange);
}

.label-text {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 850;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.section-head h2 em {
  color: var(--orange);
  font-style: normal;
}

.section-head p {
  color: var(--text-secondary);
  line-height: 1.72;
  font-weight: 300;
}

.iframe-card {
  background: var(--bg-card);
  border: 2px solid rgba(8, 36, 62, 0.18);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  clip-path: inset(0 round var(--radius-xl));
}

.iframe-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.25rem 1.35rem;
}

.iframe-head h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.iframe-head p {
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.92rem;
}

.iframe-wrap {
  position: relative;
  border-radius: 0 0 30px 30px;
  border: 0;
  border-top: 1px solid rgba(8, 36, 62, 0.12);
  overflow: hidden;
  background: #ffffff;
  height: 1130px;
  isolation: isolate;
}

.iframe-wrap iframe {
  width: 100%;
  height: 1270px;
  border: 0;
  display: block;
  background: #ffffff;
  transform: translateY(-119px);
  transform-origin: top left;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 0%, var(--orange-soft), transparent 58%);
  opacity: 0;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.45);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  line-height: 1.62;
  font-size: 0.91rem;
  font-weight: 300;
}

.about-teaser {
  position: relative;
  z-index: 1;
  padding: 0 4.5rem 6rem;
}

.about-teaser-card {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), #123a5d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.about-teaser-card::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  right: -160px;
  top: -130px;
  background: rgba(255, 122, 24, 0.18);
  filter: blur(40px);
}

.about-teaser-content {
  position: relative;
  z-index: 1;
}

.about-teaser .label-index,
.about-teaser .label-text {
  color: rgba(255, 255, 255, 0.76);
}

.about-teaser .label-line {
  background: var(--orange);
}

.about-teaser-content h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 1.15rem;
}

.about-teaser-content h2 em {
  color: var(--orange);
  font-style: normal;
}

.about-teaser-content p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.76;
  font-weight: 300;
  margin-bottom: 1.65rem;
  max-width: 620px;
}

.about-teaser-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.teaser-pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.teaser-pill::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 999px;
  flex-shrink: 0;
}

.contact-section {
  padding-top: 5rem;
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.45);
}

.contact-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.legal-page {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 2.5rem 6rem;
  position: relative;
  z-index: 1;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.legal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  color: var(--orange-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-size: 1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  line-height: 1.72;
  font-weight: 300;
  font-size: 0.94rem;
  margin-bottom: 0.85rem;
}

.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--orange-dark);
  font-weight: 600;
}

.legal-page strong {
  color: var(--text);
  font-weight: 750;
}

footer {
  position: relative;
  z-index: 1;
  background: #071c31;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.footer-logo img {
  height: 130px;
  width: auto;
  opacity: 1;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-item strong {
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-item a {
  color: #ff9a45;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #ff9a45;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    animation: none;
  }

  nav {
    backdrop-filter: none;
  }

  .ambient-orb,
  .grain-overlay {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .section-head,
  .about-teaser-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .iframe-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .iframe-wrap {
    min-height: 680px;
  }

  .iframe-wrap iframe {
    height: 760px;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding: 0.75rem 1.2rem;
  }

  .logo-mark-img {
    height: 42px;
    max-width: 210px;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
  }

  .hero {
    padding: 7.4rem 1.2rem 4rem;
    min-height: auto;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(247, 248, 251, 0.92), rgba(247, 248, 251, 0.80) 44%, var(--bg) 96%);
  }

  .hero-title {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-card {
    padding: 0.9rem;
  }

  .hero-card-inner {
    padding: 1.25rem;
  }

  .main-section,
  .about-teaser {
    padding: 4.8rem 1.2rem;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .iframe-card {
    border-radius: var(--radius-lg);
    padding: 0.75rem;
  }

  .iframe-head {
    padding: 1rem;
  }

  .iframe-wrap {
    border-radius: var(--radius-md);
    min-height: 640px;
  }

  .iframe-wrap iframe {
    height: 720px;
  }

  .about-teaser-card {
    overflow: hidden;
  }

  .about-teaser-visual {
    min-width: 0;
  }

  .teaser-pill {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    padding: 2rem 1.2rem;
  }

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

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-page {
    padding: 8rem 1.2rem 5rem;
  }

  .legal-page h1,
  .section-head h2,
  .about-teaser-content h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .nav-cta {
    display: inline-flex;
    padding: 0.55rem 0.75rem;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .logo-mark-img {
    max-width: 180px;
  }
}
.contact-card .contact-icon-circle {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.contact-card .contact-icon-circle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .hero {
    padding: 6.2rem 1.2rem 3rem;
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .hero-inner {
    display: block;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
    line-height: 0.95;
    margin-bottom: 1.15rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-card {
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }

  .hero-card-inner {
    padding: 1.15rem;
  }

  .hero-card h2 {
    font-size: 1.45rem;
    line-height: 1.15;
  }

  .hero-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-card-list span {
    align-items: flex-start;
    line-height: 1.45;
  }
}
@media (max-width: 720px) {
  .iframe-wrap {
    height: 760px;
    min-height: 760px;
    overflow: hidden;
  }

  .iframe-wrap iframe {
    height: 760px;
    transform: none;
  }
}
@media (max-width: 720px) {
  .hero-card-list span {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 0.6rem;
    align-items: center;
    justify-content: start;
    text-align: left;
  }

  .hero-card-list span::before {
    margin: 0;
    align-self: center;
    justify-self: center;
  }
}