:root {
  --navy: #04275e;
  --text-dark: #1a2233;
  --text-body: #4a5265;
  --blue: #2d5bff;
  --blue-light: #6f8fe8;
  --blue-deep: #0046d3;
  --blue-deep2: #0038ad;
  --orange1: #ffa321;
  --orange2: #fc7c0f;
  --gold: #b8892b;
  --gray-bg: #eef0f3;
  --gray-bar: #dde1e6;
  --section-bg: #f7f9fc;
  --final-bg: #eaf1fd;
  --final-bg2: #dbe8fb;
  --border-soft: #e5e9f0;
  --max-w: 480px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

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

ul { list-style: none; }

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.logo-mark {
  height: 20px;
  width: auto;
  display: block;
}
.logo-service {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.2px;
  line-height: 1;
  margin-left: -4px;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
}
.back-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===== Hero ===== */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 20px 36px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.eyebrow span { color: var(--blue); }
.eyebrow.center { text-align: center; }

.hero-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.3px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--blue); }

.hero-desc {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 0;
}

.hero-illustration {
  width: 94%;
  margin: 0 auto 26px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Hero proof (laurel achievements) ===== */
.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.proof-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--gold);
}
.laurel {
  width: clamp(16px, 5vw, 20px);
  height: 52px;
  flex-shrink: 0;
  color: var(--gold);
}
.laurel--right { transform: scaleX(-1); }

.proof-body { text-align: center; min-width: 0; flex: 0 1 auto; }
.proof-label {
  font-size: clamp(10px, 2.9vw, 11px);
  font-weight: 700;
  color: #8a6b22;
  letter-spacing: 0.2px;
  margin-bottom: 1px;
  white-space: nowrap;
}
.proof-num {
  font-size: clamp(20px, 6.2vw, 26px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.proof-unit {
  font-size: 12px;
  font-weight: 800;
  margin-left: 2px;
  letter-spacing: 0;
}
.proof-note {
  text-align: center;
  font-size: 10px;
  color: #9aa2b1;
  font-weight: 500;
  margin: 2px 0 0;
  max-width: 460px;
}

/* ===== CTA button ===== */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  border-radius: 999px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(252, 124, 15, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(252, 124, 15, 0.42);
}
.cta-btn:active { transform: translateY(0); }
.cta-text {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.cta-arrow { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }

.cta-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  margin: 6px 0 0;
}

/* ===== Margin comparison section ===== */
.margin-section {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-w) + 40px);
  margin: 0 auto;
  padding: 44px 22px;
}
.section-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 20px;
}

.compare-card {
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.compare-card--rosca {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-deep2));
  color: #fff;
  text-align: center;
}
.compare-card-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.compare-card-title--dark { color: var(--text-dark); }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.badge--light { background: #ffe680; color: #7a5a00; }
.badge--dark { background: #cfd4da; color: #4a5265; }

.price-line { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 6px; }
.price-label { font-size: 16px; font-weight: 700; }
.price-num { font-size: 46px; font-weight: 900; color: #ffe680; line-height: 1; }
.price-unit { font-size: 16px; font-weight: 700; }
.price-note { font-size: 12px; opacity: 0.9; margin-bottom: 18px; }

.price-box {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.vs-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 16px auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.compare-card--other {
  background: var(--gray-bg);
  text-align: center;
  padding-top: 30px;
}
.other-note {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 600;
  margin-bottom: 18px;
}

.bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 190px;
}
.bar-item { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; flex: 1; height: 100%; }
.bar-track {
  width: 100%;
  max-width: 78px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 10px 10px 4px 4px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(26, 34, 51, 0.1);
}
.bar-seg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bar-seg--margin {
  background: #c3cad6;
  color: #3f4a60;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.35;
}
.bar-seg--you {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-deep2));
}
.bar-text {
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.bar-text b { font-size: 14px; display: block; margin-top: 2px; }
.bar-price {
  font-size: 10px;
  color: var(--text-body);
  font-weight: 600;
  margin-top: 8px;
  white-space: nowrap;
}
.bar-arrow {
  color: #d33f3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 66px;
}
.bar-arrow svg { width: 20px; height: 20px; }
.bar-arrow span {
  font-size: 9.5px;
  font-weight: 800;
  white-space: nowrap;
}

.transparency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 12px 16px;
  text-align: center;
}
.transparency-note svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== Trust section ===== */
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 28px;
}
.trust-item { text-align: center; }
.trust-img {
  width: 62%;
  margin: 0 auto 14px;
}
.trust-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.5;
}
.trust-desc {
  font-size: 12.5px;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.7;
}

/* ===== Recommend section ===== */
.recommend-section { padding-top: 12px; padding-bottom: 40px; }
.recommend-title {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.6;
}
.mobile-only { display: inline; }
@media (min-width: 560px) {
  .mobile-only { display: none; }
}
.recommend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .recommend-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.recommend-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  white-space: nowrap;
}
.recommend-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
  flex-shrink: 0;
}
.recommend-icon svg { width: 100%; height: 100%; }

/* ===== Final section ===== */
.final-section { padding-top: 8px; }
.final-card {
  background: linear-gradient(160deg, var(--final-bg), var(--final-bg2));
  border-radius: var(--radius-lg);
  padding: 30px 22px 0;
  overflow: hidden;
  margin-bottom: 22px;
}
.final-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.final-desc {
  font-size: 12.5px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 18px;
}
.final-illustration { margin: 0 -6px 0; }
.final-illustration img { width: 100%; }

/* ===== Footer ===== */
.site-footer {
  background: var(--section-bg);
  border-top: 1px solid var(--border-soft);
  padding: 32px 20px 100px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-logo { height: 18px; width: auto; }
.footer-service {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-left: -2px;
}
.footer-lead {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-lead strong { color: var(--text-dark); font-weight: 800; }

.footer-company-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.footer-company {
  border-top: 1px solid var(--border-soft);
  margin-bottom: 18px;
}
.footer-row {
  display: flex;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 11.5px;
  line-height: 1.7;
}
.footer-row dt {
  flex: 0 0 68px;
  font-weight: 700;
  color: var(--text-dark);
}
.footer-row dd {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text-body);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 18px;
}
.footer-links a {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid rgba(4, 39, 94, 0.25);
  padding-bottom: 1px;
}
.footer-links a:hover { border-bottom-color: var(--navy); }

.footer-copy {
  font-size: 11px;
  color: #9aa2b1;
  text-align: center;
}
.footer-lead--compact { text-align: center; }
.site-footer--form .footer-links { justify-content: center; }

/* ===== Form page ===== */
.form-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 30px 20px 0;
}

.form-hero {
  text-align: center;
  margin-bottom: 20px;
}

.form-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.48;
  color: var(--text-dark);
  margin-bottom: 0;
}

.form-section {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(17, 39, 84, 0.08);
  min-height: 420px;
  padding: 18px;
}

.hs-form-frame {
  min-height: 360px;
}

.site-footer--form {
  padding-bottom: 40px;
}

.leave-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.leave-modal.is-open {
  display: flex;
}

.leave-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 34, 51, 0.52);
}

.leave-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(17, 39, 84, 0.22);
  padding: 34px 28px 24px;
  text-align: center;
}

.leave-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef0f3;
  color: var(--text-body);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.leave-modal__title {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
  margin-bottom: 24px;
}

.leave-modal__actions {
  display: grid;
  gap: 12px;
}

.leave-modal__button {
  width: 100%;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.leave-modal__button--leave {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid #cfd6e1;
}

.leave-modal__button--stay {
  background: var(--blue-deep);
  color: #fff;
  border: 1px solid var(--blue-deep);
}

.campaign-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 20px; }
.campaign-modal.is-open { display: flex; }
.campaign-modal__overlay { position: absolute; inset: 0; background: rgba(17, 39, 84, .58); }
.campaign-modal__dialog { position: relative; width: min(100%, 440px); padding: 36px 26px 28px; border-radius: 18px; background: #fff; box-shadow: 0 24px 60px rgba(17, 39, 84, .28); text-align: center; }
.campaign-modal__close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--text-body); background: #eef0f3; font-size: 23px; line-height: 1; cursor: pointer; }
.campaign-modal__eyebrow { margin: 0 0 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .11em; }
.campaign-modal__dialog h2 { margin: 0; color: var(--text-dark); font-size: 20px; line-height: 1.5; font-weight: 900; }
.campaign-modal__dialog p:not(.campaign-modal__eyebrow) { margin: 14px 0 22px; color: var(--text-body); font-size: 13px; line-height: 1.75; }
.campaign-modal__cta { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 18px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--orange1), var(--orange2)); box-shadow: 0 10px 24px rgba(252, 124, 15, .32); font-size: 15px; font-weight: 900; }
@media (max-width: 640px) { .campaign-modal__dialog h2 { font-size: 18px; line-height: 1.48; } }

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
}
.sticky-cta .cta-btn { max-width: var(--max-w); margin: 0 auto; padding: 13px 18px; }
.sticky-cta .cta-text { font-size: 15px; }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ===== Responsive (tablet / desktop) ===== */
@media (min-width: 560px) {
  :root { --max-w: 520px; }
  .hero-title { font-size: 36px; }
}

@media (min-width: 900px) {
  :root { --max-w: 1140px; }

  .header-inner { padding: 20px 32px; }
  .logo-mark { height: 28px; }
  .logo-sub { font-size: 13px; }
  .back-link { font-size: 14px; padding: 10px 18px; }
  .hero {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    column-gap: 64px;
    row-gap: 0;
    padding: 72px 32px 96px;
  }
  .hero-text { grid-column: 1; grid-row: 1; max-width: 700px; margin-bottom: 32px; }
  .hero-illustration { grid-column: 2; grid-row: 1 / 3; width: 100%; }
  .hero-cta { grid-column: 1; max-width: 460px; gap: 10px; }
  .hero-proof { gap: 20px; max-width: 460px; }
  .laurel { width: 26px; height: 66px; }
  .proof-label { font-size: 13px; }
  .proof-num { font-size: 34px; }
  .proof-unit { font-size: 15px; }
  .proof-note { font-size: 11px; margin-top: 4px; }
  .cta-btn--hero, .cta-note { max-width: 460px; }
  .cta-note { margin: 0; }
  .eyebrow { font-size: 16px; margin-bottom: 16px; }
  .hero-title { font-size: 48px; margin-bottom: 24px; }
  .hero-desc { font-size: 18px; line-height: 1.8; margin-bottom: 10px; }
  .cta-text { font-size: 19px; }
  .cta-arrow { width: 22px; height: 22px; }
  .cta-btn { padding: 20px 24px; }
  .cta-note { font-size: 14px; }

  .section { padding: 96px 32px; }
  .margin-section { padding: 72px 56px; }
  .section-title { font-size: 36px; margin-bottom: 44px; }

  .compare-wrap { flex-direction: row; align-items: stretch; gap: 64px; margin-bottom: 32px; }
  .compare-card { flex: 1; padding: 40px 36px; }
  .compare-card-title { font-size: 18px; margin-bottom: 16px; }
  .badge { font-size: 13px; padding: 6px 16px; margin-bottom: 18px; }
  .price-label, .price-unit { font-size: 20px; }
  .price-num { font-size: 64px; }
  .price-note { font-size: 15px; margin-bottom: 26px; }
  .price-box { font-size: 16px; padding: 20px 16px; }
  .vs-badge {
    width: 56px;
    height: 56px;
    font-size: 15px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .other-note { font-size: 15px; margin-bottom: 26px; }
  .bars { height: 240px; gap: 10px; }
  .bar-track { max-width: 110px; }
  .bar-seg--margin { font-size: 12px; }
  .bar-text { font-size: 12px; }
  .bar-text b { font-size: 18px; }
  .bar-price { font-size: 13px; margin-top: 12px; }
  .bar-arrow { margin-bottom: 84px; }
  .bar-arrow svg { width: 26px; height: 26px; }
  .bar-arrow span { font-size: 12px; }
  .transparency-note { font-size: 15px; padding: 16px 20px; }
  .transparency-note svg { width: 22px; height: 22px; }

  .trust-grid { flex-direction: row; gap: 48px; margin-top: 44px; }
  .trust-item { flex: 1; }
  .trust-title { font-size: 20px; margin-bottom: 14px; }
  .trust-desc { font-size: 15px; line-height: 1.8; }

  .recommend-title { font-size: 26px; margin-bottom: 32px; }
  .recommend-list { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .recommend-list li { font-size: 14px; padding: 18px 16px; }
  .recommend-icon { width: 32px; height: 32px; }

  .final-card { display: flex; align-items: center; gap: 48px; padding: 56px; }
  .final-illustration { margin: 0; flex: 1; }
  .final-text { flex: 1; }
  .final-title { font-size: 34px; margin-bottom: 18px; }
  .final-desc { font-size: 16px; line-height: 1.8; margin-bottom: 24px; }

  .site-footer { padding: 56px 32px 56px; }
  .footer-brand { margin-bottom: 14px; }
  .footer-logo { height: 22px; }
  .footer-service { font-size: 17px; }
  .footer-lead { font-size: 14px; margin-bottom: 26px; }
  .footer-company { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .footer-row { font-size: 12.5px; }
  .footer-row dt { flex: 0 0 84px; }
  .footer-links a { font-size: 13px; }
  .footer-copy { font-size: 12px; margin-top: 8px; }

  .form-page {
    max-width: 860px;
    padding: 72px 32px 0;
  }
  .form-hero { margin-bottom: 36px; }
  .form-title { font-size: 32px; }
  .form-section { padding: 32px; }
  .form-card {
    min-height: 520px;
    padding: 32px;
  }
  .hs-form-frame { min-height: 460px; }
  .site-footer--form { padding-bottom: 56px; }

  .leave-modal__dialog { padding: 38px 40px 28px; }
  .leave-modal__title { font-size: 20px; }
  .leave-modal__actions {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .leave-modal__button { font-size: 15px; }
}

@media (min-width: 1280px) {
  :root { --max-w: 1280px; }
  .hero-title { font-size: 54px; }
  .section-title { font-size: 40px; }
}
