/* ============================================================
   JOL Landing Page
   ============================================================ */
:root {
  --orange: #ff6b1a;
  --orange-2: #ff7020;
  --bg-light: #f3f6fa;
  --bg-pill: #e3ebf2;
  --border: #dde6ef;
  --text: #222;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "YuGothic", "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  will-change: transform;
}

.btn--white {
  background: #fff;
  color: var(--orange);
  font-size: clamp(15px, 1.1vw, 20px);
  padding: 0 clamp(28px, 3vw, 48px);
  height: clamp(56px, 4.5vw, 72px);
  min-width: clamp(200px, 16vw, 296px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  font-size: clamp(18px, 1.4vw, 24px);
  height: clamp(60px, 4.5vw, 72px);
  min-width: clamp(280px, 27vw, 512px);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.3);
}

.btn--orange:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.45);
}

/* ============================================================
   固定ヘッダー
   ============================================================ */
/* デフォルト＝有色背景用（白半透明＋白文字）。
   .is-light＝白系背景用（グレー半透明＋オレンジ文字）に気持ちよくクロスフェード */
.site-nav {
  position: fixed;
  top: clamp(16px, 2.1vw, 40px);
  left: clamp(16px, 3.75vw, 72px);
  right: clamp(16px, 3.75vw, 72px);
  z-index: 100;
  height: clamp(56px, 3.6vw, 69px);
  padding: 0 clamp(20px, 1.9vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.5s ease;
}

.site-nav.is-light {
  background: rgba(201, 209, 214, 0.44);
}

.site-nav__logo {
  position: relative;
  display: flex;
  align-items: center;
  width: clamp(64px, 4.2vw, 80px);
  transition: transform 0.35s var(--ease-spring);
}

.site-nav__logo:hover {
  transform: scale(1.06);
}

.site-nav__logo-img {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
}

.site-nav__logo-img--orange {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-nav.is-light .site-nav__logo-img--white {
  opacity: 0;
}

.site-nav.is-light .site-nav__logo-img--orange {
  opacity: 1;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4.4vw, 84px);
}

.site-nav__link {
  color: #fff;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  position: relative;
  transition: color 0.5s ease;
}

.site-nav.is-light .site-nav__link {
  color: var(--orange);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  /* 画像は幅100%・上端揃え。画像より下に伸びた場合はグラデーションで補完 */
  background-image: url("assets/hero-bg.png"), linear-gradient(160deg, #ff8a3d 0%, #ff6b1a 55%, #f95d0e 100%);
  background-size: 100% auto, cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #ff6b1a;
  /* Figmaデザインと同じ表示範囲（1920:1006）を確保 */
  min-height: 52.4vw;
  color: #fff;
  overflow: hidden;
}

.hero__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(88px, 4.2vw, 100px) clamp(24px, 4.8vw, 92px) clamp(72px, 7vw, 120px);
}

.hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 80px);
  margin-top: clamp(40px, 7vw, 134px);
}

.hero__copy {
  flex: 0 1 auto;
}

.hero__title {
  font-size: clamp(32px, 3.4vw, 66px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.hero__lead {
  margin-top: clamp(28px, 3vw, 56px);
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.3vw, 24px);
  margin-top: clamp(36px, 4vw, 72px);
}

/* --- hero visual (mac + phones) --- */
.hero__visual {
  position: relative;
  flex: 0 0 auto;
  width: clamp(300px, 38.5vw, 738px);
  aspect-ratio: 738 / 489;
}

.hero__mac {
  position: absolute;
  top: 0;
  right: 0;
  width: 89%;
  border-radius: clamp(10px, 1vw, 20px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.hero__phone {
  position: absolute;
  width: 20.6%;
  border-radius: clamp(10px, 1vw, 20px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  bottom: 0;
}

.hero__phone img,
.hero__mac img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__phone--1 {
  left: 0;
}

.hero__phone--2 {
  left: 26%;
}

/* ============================================================
   Section common
   ============================================================ */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.6vw, 10px);
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  flex-wrap: wrap;
}

.inline-logo {
  width: clamp(76px, 6.4vw, 122px);
  height: auto;
  transform: translateY(-0.08em);
}

.lead-logo {
  display: inline-block;
  height: 1.05em;
  width: auto;
  vertical-align: -0.14em;
}

/* ============================================================
   About（JOLとは？）
   ============================================================ */
.about {
  background: var(--bg-light);
  padding: clamp(72px, 9.5vw, 182px) 0 clamp(80px, 8vw, 150px);
  text-align: center;
}

.about__catch {
  margin-top: clamp(40px, 3.5vw, 64px);
  font-size: clamp(20px, 1.7vw, 32px);
  font-weight: 700;
}

.about__text {
  margin-top: clamp(28px, 2.5vw, 46px);
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.9;
}

/* ============================================================
   Features（あらゆる雇用業務に対応）
   ============================================================ */
.features {
  background: #ebf0f6;
  padding: clamp(80px, 5.9vw, 113px) 0 clamp(64px, 4.4vw, 84px);
}

.features__pain {
  font-size: clamp(18px, 1.7vw, 32px);
  font-weight: 500;
  text-align: center;
  line-height: 1.32;
}

.features > .container > .section-title {
  margin-top: clamp(20px, 1.7vw, 32px);
}

.features__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(24px, 2.3vw, 44px);
  margin-top: clamp(48px, 4.4vw, 85px);
  flex-wrap: wrap;
}

/* --- 機能カード --- */
.tag {
  display: inline-block;
  background: #ffdac6;
  color: var(--orange);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.32;
  padding: 4px 20px;
  border-radius: 4px;
}

.fcard {
  background: #fff;
  border: 2px solid #bbccdb;
  border-radius: 20px;
  width: min(632px, 100%);
  padding: clamp(20px, 1.4vw, 26px) clamp(20px, 1.6vw, 30px) clamp(22px, 1.6vw, 30px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.fcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(34, 62, 92, 0.12);
}

.fcard .tag {
  align-self: flex-start;
}

.fcard__title {
  margin-top: clamp(16px, 1.2vw, 24px);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.32;
  padding: 0 clamp(4px, 0.8vw, 16px);
}

.fcard__desc {
  margin-top: clamp(10px, 0.8vw, 16px);
  font-size: clamp(14px, 0.85vw, 16px);
  font-weight: 500;
  line-height: 1.48;
  padding: 0 clamp(4px, 0.8vw, 16px);
}

.fcard__visual {
  height: clamp(240px, 16.5vw, 316px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.5vw, 28px);
  margin-top: clamp(12px, 1vw, 20px);
}

.fcard__shot {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.fcard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcard__shot--phone {
  width: clamp(104px, 6.8vw, 130px);
  aspect-ratio: 130 / 280;
  border-radius: 16px;
}

.fcard__shot--mac {
  width: clamp(300px, 20.4vw, 391px);
  aspect-ratio: 391 / 238;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 22px rgba(34, 62, 92, 0.14);
}

.tilt-hover {
  transition: transform 0.45s var(--ease-spring);
}

.tilt-hover:hover {
  transform: translateY(-6px) rotate(-1.2deg) scale(1.03);
}

.fcard__grid {
  margin-top: auto;
  padding-top: clamp(12px, 1vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1vw, 20px);
}

.fbox {
  border: 2px solid #bbccdb;
  border-radius: 8px;
  padding: clamp(14px, 0.95vw, 18px) clamp(16px, 1.1vw, 21px);
  min-height: clamp(124px, 7.9vw, 152px);
}

.fbox h4 {
  color: var(--orange);
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.fbox p {
  margin-top: clamp(6px, 0.5vw, 10px);
  font-size: clamp(14px, 0.85vw, 16px);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.03em;
}

/* --- 無料トライアルCTA --- */
.cta-banner {
  background: linear-gradient(90deg, #ff6416 0%, #ffaa16 100%);
  border-radius: 16px;
  max-width: 1306px;
  margin: clamp(40px, 3.3vw, 64px) auto 0;
  padding: clamp(40px, 3.3vw, 64px) clamp(20px, 2vw, 40px) clamp(48px, 3.6vw, 70px);
  text-align: center;
  color: #fff;
}

.cta-banner__title {
  font-size: clamp(21px, 1.7vw, 32px);
  font-weight: 700;
  line-height: 1.32;
}

.cta-banner__sub {
  margin-top: clamp(12px, 1.2vw, 22px);
  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.32;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 1.3vw, 24px);
  margin-top: clamp(28px, 2.4vw, 46px);
}

.grad-text {
  background: linear-gradient(90deg, #ff6416 0%, #ffaa16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Check（日本語検定かんたん診断）
   ============================================================ */
.check {
  background: #f6fbff;
  padding: clamp(64px, 3.5vw, 66px) 0 clamp(72px, 4.5vw, 86px);
  overflow: hidden;
}

.check__content .tag {
  margin-bottom: clamp(20px, 2vw, 36px);
}

.check__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 5vw, 96px);
}

.check__visual {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 26vw, 480px);
  aspect-ratio: 480 / 470;
}

.phone-mock {
  position: absolute;
  width: 44%;
  aspect-ratio: 203 / 411;
  filter: drop-shadow(0 16px 25px rgba(0, 0, 0, 0.08));
}

.phone-mock--left {
  left: 4%;
  top: 44%;
  translate: 0 -50%;
  rotate: -12deg;
  z-index: 1;
}

.phone-mock--right {
  left: 47%;
  top: 53%;
  translate: 0 -50%;
  rotate: 8deg;
  z-index: 2;
}

.phone-mock__screen {
  position: absolute;
  inset: 2.1% 5.3%;
  width: 89.4%;
  height: 95.8%;
  object-fit: cover;
  object-position: top;
  border-radius: clamp(10px, 1.2vw, 16px);
}

.phone-mock__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.check__content {
  flex: 0 1 auto;
}

.check__title {
  color: var(--orange);
  font-size: clamp(28px, 2.3vw, 44px);
  font-weight: 700;
  line-height: 1.32;
}

.check__sub {
  margin-top: clamp(16px, 1.3vw, 26px);
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 700;
  line-height: 1.32;
}

.check__badges {
  display: flex;
  gap: clamp(20px, 1.9vw, 37px);
  margin-top: clamp(28px, 2.2vw, 40px);
}

.badge {
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", sans-serif;
  width: clamp(104px, 7.7vw, 148px);
  height: clamp(104px, 7.7vw, 148px);
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange-2);
  color: var(--orange-2);
  font-size: clamp(19px, 1.5vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.3);
  transition: transform 0.4s var(--ease-spring);
}

.badge:hover {
  transform: translateY(-6px) scale(1.05);
}

.check__content .btn--orange {
  margin-top: clamp(32px, 2.6vw, 48px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: linear-gradient(150deg, #ff8a3d, #f95d0e);
  background-image: url("assets/footer-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: clamp(300px, 20.8vw, 400px);
  display: flex;
  align-items: stretch;
}

.footer__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(56px, 4.7vw, 90px);
  padding-bottom: clamp(24px, 2vw, 40px);
}

.footer__logo {
  width: 100px;
  height: auto;
}

.footer__address {
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", sans-serif;
  margin-top: clamp(40px, 4vw, 78px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.footer__copy {
  font-family: Avenir, "Noto Sans JP", sans-serif;
  align-self: flex-end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 32px;
}

/* ============================================================
   Contact page（資料請求・お問い合わせ）
   ============================================================ */
.contact-page {
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-main {
  flex: 1;
  padding: clamp(104px, 8vw, 160px) 20px clamp(48px, 4vw, 80px);
}

.contact-title {
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  color: var(--text);
}

.contact-card {
  background: #fff;
  width: min(652px, 100%);
  margin: clamp(24px, 2.4vw, 46px) auto 0;
  padding: clamp(28px, 3vw, 57px) clamp(20px, 2.8vw, 54px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(34, 62, 92, 0.06);
}

.field {
  margin-bottom: clamp(20px, 1.7vw, 32px);
}

.field__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.chip {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
}

.chip--req {
  background: var(--orange);
  color: #fff;
}

.chip--opt {
  background: var(--bg-pill);
  color: #7c8a96;
}

.field__input {
  width: 100%;
  height: clamp(56px, 4.2vw, 80px);
  background: var(--bg-pill);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0 clamp(16px, 1.5vw, 28px);
  font-family: inherit;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.field__input::placeholder {
  color: #a7b3bd;
  font-weight: 700;
}

.field__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.15);
}

.field__input--textarea {
  height: auto;
  min-height: clamp(140px, 12vw, 200px);
  padding: clamp(14px, 1.2vw, 22px) clamp(16px, 1.5vw, 28px);
  resize: vertical;
  line-height: 1.6;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: clamp(18px, 1.5vw, 28px);
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #7c8a96;
  border-bottom: 3px solid #7c8a96;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrap select:invalid {
  color: #a7b3bd;
}

.contact-submit {
  display: block;
  width: min(296px, 100%);
  margin: clamp(28px, 2.5vw, 48px) auto 0;
}

.form-note {
  margin-top: clamp(16px, 1.4vw, 26px);
  font-size: 13px;
  font-weight: 500;
  color: #7c8a96;
  text-align: center;
  line-height: 1.7;
}

.form-error {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #e5484d;
  text-align: center;
}

/* --- success state --- */
.form-success {
  text-align: center;
  padding: clamp(24px, 3vw, 48px) 0;
  animation: heroIn 0.8s var(--ease-out) both;
}

.form-success__mark {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.3);
  animation: popIn 0.7s var(--ease-spring) 0.15s both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success__title {
  margin-top: 24px;
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 700;
  color: var(--text);
}

.form-success__text {
  margin-top: 14px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  color: #55636e;
  line-height: 1.8;
}

.form-success .btn {
  margin-top: 32px;
  min-width: 220px;
  height: 60px;
  font-size: 16px;
}

.contact-footer {
  padding: 24px;
  text-align: center;
  font-family: Avenir, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #9aa7b1;
}

/* ============================================================
   Animations
   ============================================================ */

/* --- hero load-in --- */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-in {
  animation: heroIn 1s var(--ease-out) both;
  animation-delay: calc(var(--d, 0) * 0.18s + 0.1s);
}

/* --- scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.1s);
}

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

/* --- badge pop --- */
.pop {
  opacity: 0;
  scale: 0.5;
  transition: opacity 0.6s ease, scale 0.7s var(--ease-spring), transform 0.4s var(--ease-spring);
  transition-delay: calc(var(--d, 0) * 0.12s), calc(var(--d, 0) * 0.12s), 0s;
}

.pop.is-in {
  opacity: 1;
  scale: 1;
}

/* --- floating --- */
@keyframes floaty {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -12px;
  }
}

@keyframes floatyCentered {
  from {
    translate: 0 -50%;
  }
  to {
    translate: 0 calc(-50% - 12px);
  }
}

.float-slow {
  animation: floaty 5.5s ease-in-out infinite alternate;
}

.float-mid {
  animation: floaty 4.5s ease-in-out infinite alternate;
  animation-delay: -1.2s;
}

.float-fast {
  animation: floaty 3.8s ease-in-out infinite alternate;
  animation-delay: -2.4s;
}

.phone-mock.float-slow {
  animation-name: floatyCentered;
}

.phone-mock.float-mid {
  animation-name: floatyCentered;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__visual {
    width: min(620px, 92%);
    align-self: center;
  }

  .check__inner {
    flex-direction: column;
  }

  .check__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(26px, 7.4vw, 32px);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .check__badges {
    gap: 14px;
  }

  .badge {
    width: 96px;
    height: 96px;
    font-size: 17px;
  }

  .footer__copy {
    align-self: flex-start;
  }
}

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

  .hero-in,
  .float-slow,
  .float-mid,
  .float-fast {
    animation: none;
  }

  .reveal,
  .pop {
    opacity: 1;
    transform: none;
    scale: 1;
    transition: none;
  }
}
