:root {
  --primary: #5befcd;
  --dark: #020c05;
  --white: #ffffff;
  --soft: #f6faf9;
  --soft-2: #ecf7f4;
  --line: #dfeae7;
  --muted: #56645f;
  --shadow: 0 24px 70px rgba(2, 12, 5, 0.11);
  --shadow-soft: 0 16px 44px rgba(2, 12, 5, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

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

button {
  font: inherit;
}

/* Layout */
.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 239, 205, 0.16), transparent 30%),
    linear-gradient(180deg, var(--soft), #ffffff);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(91, 239, 205, 0.22), transparent 28%),
    linear-gradient(135deg, var(--dark), #061b10 72%, #041009);
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-dark .eyebrow {
  color: var(--primary);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-dark h2,
.section-dark h1 {
  color: var(--white);
}

h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.13rem;
  line-height: 1.25;
}

.section-heading p,
.hero-lede,
.different-copy > p,
.faq-intro p,
.cta-inner > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .hero-lede,
.section-dark .cta-inner > p {
  color: rgba(255, 255, 255, 0.78);
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--dark);
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(91, 239, 205, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(91, 239, 205, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.18);
}

.section:not(.section-dark) .btn-secondary {
  border-color: var(--line);
  color: var(--dark);
  background: var(--white);
}

/* Hero */
.hero {
  min-height: 96vh;
  padding: 42px 0 86px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 64px;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  box-shadow: 0 16px 42px rgba(91, 239, 205, 0.32);
}

.brand-mark span {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 4px;
  background: var(--dark);
  transform: rotate(-45deg);
  position: relative;
}

.brand-mark span::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: var(--primary);
}

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

.hero-lede {
  margin-bottom: 34px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(91, 239, 205, 0.12);
  clip-path: polygon(14% 50%, 38% 72%, 86% 22%, 100% 36%, 39% 94%, 0 62%);
}

.hero-visual {
  min-height: 600px;
  position: relative;
}

.dashboard-card {
  position: absolute;
  inset: 60px 22px auto auto;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.dash-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.dash-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.dash-head strong {
  margin-left: auto;
  color: var(--white);
  font-size: 0.84rem;
}

.map-panel {
  min-height: 318px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #eaf8f4;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 5, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(2, 12, 5, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.8;
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 74px;
  left: -18%;
  background: rgba(91, 239, 205, 0.36);
  transform: rotate(-18deg);
}

.map-panel::before {
  top: 74px;
}

.map-panel::after {
  bottom: 46px;
  transform: rotate(14deg);
}

.pin {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50% 50% 50% 4px;
  background: var(--dark);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 10px rgba(91, 239, 205, 0.22);
  z-index: 2;
}

.pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.pin-a { top: 78px; left: 22%; }
.pin-b { top: 165px; left: 58%; }
.pin-c { top: 216px; left: 35%; }

.ranking-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: 160px;
  border-radius: 18px;
  padding: 16px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.ranking-card small,
.metric-pill small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.ranking-card strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.ranking-card span {
  color: #08745f;
  font-size: 0.84rem;
  font-weight: 900;
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 12px;
  margin-top: 14px;
}

.metric-pill,
.mini-chart {
  min-height: 88px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.metric-pill strong {
  color: var(--dark);
  font-size: 1.45rem;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: var(--primary);
}

.glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.glass-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.status-card {
  top: 30px;
  left: 6px;
}

.site-card {
  right: 0;
  bottom: 76px;
}

.status-dot,
.site-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--primary);
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--dark);
}

.site-icon::before,
.site-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 4px;
  border-radius: 999px;
  background: var(--dark);
}

.site-icon::before { top: 10px; }
.site-icon::after { top: 19px; }

/* Cards */
.testimonial-grid,
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-card,
.founder-card,
.service-card,
.why-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(2, 12, 5, 0.03);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.video-card:hover,
.founder-card:hover,
.service-card:hover,
.why-card:hover,
.stat-card:hover {
  border-color: rgba(91, 239, 205, 0.9);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.video-card {
  padding: 14px;
  backdrop-filter: blur(18px);
}

.video-thumb {
  min-height: 238px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(2, 12, 5, 0.7), rgba(2, 12, 5, 0.16)),
    radial-gradient(circle at 70% 24%, rgba(91, 239, 205, 0.7), transparent 26%),
    linear-gradient(135deg, #173126, #e4f7f2);
  overflow: hidden;
}

.thumb-two {
  background:
    linear-gradient(135deg, rgba(2, 12, 5, 0.72), rgba(2, 12, 5, 0.1)),
    radial-gradient(circle at 26% 24%, rgba(91, 239, 205, 0.65), transparent 24%),
    linear-gradient(135deg, #18342c, #eefaf7);
}

.thumb-three {
  background:
    linear-gradient(135deg, rgba(2, 12, 5, 0.72), rgba(2, 12, 5, 0.1)),
    radial-gradient(circle at 56% 68%, rgba(91, 239, 205, 0.65), transparent 24%),
    linear-gradient(135deg, #102b21, #f3fbf8);
}

.video-thumb video {
  width: 100%;
  height: 100%;
  min-height: 238px;
  display: block;
  object-fit: cover;
  border: 0;
  background: var(--dark);
}

.play-button {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--primary);
  box-shadow: 0 16px 40px rgba(91, 239, 205, 0.32);
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 27px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--dark);
}

.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 4px 12px;
}

.avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--primary);
  font-weight: 900;
}

.avatar {
  width: 48px;
  height: 48px;
}

.client-row h3,
.client-row p {
  margin: 0;
}

.client-row p,
.video-card > p,
.service-card p,
.founder-card p,
.why-card p {
  color: var(--muted);
}

.video-card > p {
  margin: 0 4px 8px;
}

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

.service-card {
  padding: 28px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 900;
}

.service-card a::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 220ms ease;
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(91, 239, 205, 0.26);
  position: relative;
  transition: transform 240ms ease;
}

.service-card:hover .icon {
  transform: rotate(-5deg) scale(1.06);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--dark);
}

.recovery::before { inset: 13px 13px 13px 13px; border-radius: 50% 50% 50% 4px; transform: rotate(-45deg); }
.optimize::before { left: 12px; right: 12px; top: 15px; height: 5px; border-radius: 99px; box-shadow: 0 9px 0 var(--dark), 0 18px 0 var(--dark); }
.local::before { width: 24px; height: 24px; left: 12px; top: 12px; border-radius: 50%; background: transparent; border: 6px solid var(--dark); }
.web::before { left: 10px; right: 10px; top: 12px; height: 20px; border: 4px solid var(--dark); background: transparent; border-radius: 5px; }
.leads::before { width: 24px; height: 24px; left: 12px; top: 12px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.seo::before { left: 12px; bottom: 12px; width: 6px; height: 14px; box-shadow: 10px -8px 0 var(--dark), 20px -16px 0 var(--dark); border-radius: 99px; }

/* Founders and why */
.founder-card {
  padding: 32px;
  text-align: center;
}

.profile-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: block;
  border: 4px solid var(--primary);
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 16px 36px rgba(91, 239, 205, 0.24);
  object-fit: cover;
  object-position: center top;
}

.role {
  min-height: 52px;
  color: #08745f;
  font-weight: 800;
}

.social-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--dark);
  background: var(--primary);
  font-weight: 900;
}

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

.why-card {
  padding: 24px;
}

.why-card span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(91, 239, 205, 0.24);
}

/* Difference section */
.different-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.workspace-illustration {
  min-height: 540px;
  position: relative;
}

.screen {
  position: absolute;
  inset: 46px 0 auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.screen-top {
  height: 20px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), #dffbf5 45%, #eef4f2);
}

.screen-map {
  height: 250px;
  margin: 20px 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(2, 12, 5, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(2, 12, 5, 0.06) 1px, transparent 1px),
    #f3faf7;
  background-size: 38px 38px;
  position: relative;
}

.screen-map span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 4px;
  background: var(--primary);
  transform: rotate(-45deg);
}

.screen-map span:nth-child(1) { top: 52px; left: 28%; }
.screen-map span:nth-child(2) { top: 130px; left: 62%; }
.screen-map span:nth-child(3) { top: 178px; left: 42%; }

.screen-lines i {
  display: block;
  height: 12px;
  margin-top: 12px;
  border-radius: 99px;
  background: #e7efec;
}

.screen-lines i:nth-child(1) { width: 84%; }
.screen-lines i:nth-child(2) { width: 64%; }
.screen-lines i:nth-child(3) { width: 76%; }

.workspace-panel {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--dark);
  background: var(--primary);
  box-shadow: 0 18px 46px rgba(91, 239, 205, 0.3);
  font-weight: 900;
}

.panel-one {
  top: 18px;
  right: 36px;
}

.panel-two {
  left: 28px;
  bottom: 28px;
  background: var(--dark);
  color: var(--white);
}

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

.check-list li {
  display: flex;
  gap: 11px;
  color: var(--dark);
  font-weight: 800;
}

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

.stat-card {
  padding: 24px;
  background: var(--white);
}

.stat-card strong,
.stat-card span {
  color: var(--dark);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
}

.stat-card span {
  color: #08745f;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 32px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(2, 12, 5, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 220ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 112px 0;
}

.cta-inner {
  max-width: 840px;
  text-align: center;
}

.cta-inner .button-row {
  justify-content: center;
  margin-top: 34px;
}

.trust-line {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

/* Accents and animation */
.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(91, 239, 205, 0.22);
  filter: blur(72px);
  pointer-events: none;
}

.orb-one {
  top: -150px;
  left: -90px;
}

.orb-two {
  right: -180px;
  bottom: 6%;
}

.orb-three {
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating.slow {
  animation-duration: 8s;
}

.floating.reverse {
  animation-direction: reverse;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

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

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

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid,
  .different-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

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

  .dashboard-card {
    left: 0;
    right: 0;
    margin: auto;
  }

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

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section,
  .final-cta {
    padding: 76px 0;
  }

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

  .brand-lockup {
    margin-bottom: 38px;
  }

  .button-row,
  .trust-list,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    text-align: center;
  }

  .trust-list,
  .service-grid,
  .testimonial-grid,
  .founder-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-card {
    top: 54px;
    padding: 12px;
  }

  .map-panel {
    min-height: 260px;
  }

  .dash-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .mini-chart {
    grid-column: 1 / -1;
  }

  .glass-card {
    max-width: 250px;
    padding: 13px 14px;
  }

  .status-card {
    top: 2px;
  }

  .site-card {
    bottom: 18px;
  }

  .workspace-illustration {
    min-height: 460px;
  }

  .screen {
    top: 48px;
  }

  .panel-one {
    right: 6px;
  }

  .panel-two {
    left: 6px;
    bottom: 6px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .video-thumb {
    min-height: 205px;
  }

  .service-card,
  .founder-card,
  .why-card,
  .stat-card {
    padding: 22px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }
}
