@font-face {
  font-family: "LanobePOP";
  src: url("assets/LightNovelPOPv2.otf") format("opentype");
  font-display: swap;
}

:root {
  --yellow: #ffe36b;
  --yellow-deep: #ffd544;
  --cream: #fff6dc;
  --cream-strong: #fff0bd;
  --blue: #1f5a9d;
  --blue-dark: #123e72;
  --ink: #262626;
  --muted: #667085;
  --line: #06c755;
  --coral: #ff7467;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 90, 157, 0.16);
  --radius: 8px;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-display: "LanobePOP", "Yu Gothic", sans-serif;
  --font-hand: "Yomogi", "Hannotate SC", "YuKyokasho", "Tsukushi A Round Gothic", "Zen Maru Gothic", cursive;
  --text-xs: 13px;
  --text-sm: 14px;
  --text-base: clamp(15px, 1.25vw, 16px);
  --text-md: clamp(16px, 1.55vw, 18px);
  --text-lg: clamp(18px, 1.9vw, 20px);
  --heading-sm: clamp(20px, 2.2vw, 24px);
  --heading-md: clamp(32px, 4.6vw, 48px);
  --heading-lg: clamp(48px, 6.7vw, 76px);
  --price-size: clamp(52px, 6.8vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.82;
  overflow-x: hidden;
}

.intro-pending,
.intro-pending body {
  overflow: hidden;
}

.intro-pending body > :not(.intro-screen) {
  opacity: 0;
}

.intro-finished body > :not(.intro-screen) {
  animation: siteReveal 0.5s ease-out both;
}

.intro-screen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #fff;
  pointer-events: auto;
}

.intro-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-line {
  position: absolute;
  width: min(900px, calc(100vw - 40px));
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--font-hand);
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
}

.intro-line span {
  display: inline-block;
}

.intro-line span + span {
  margin-left: 0.18em;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: clamp(14px, 4vw, 48px);
  right: clamp(14px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 64px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(31, 90, 157, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(38, 38, 38, 0.08);
  backdrop-filter: blur(10px);
}

.brand img {
  width: clamp(168px, 22vw, 265px);
  height: auto;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--blue-dark);
}

.global-nav a,
.mobile-menu a {
  text-decoration: none;
}

.global-nav a:hover {
  color: var(--coral);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e6269;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone span {
  color: var(--blue);
  font-size: var(--text-xs);
  letter-spacing: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  z-index: 29;
  top: 90px;
  left: 18px;
  right: 18px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 10px;
  color: var(--blue-dark);
  background: var(--cream);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px 20px 84px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--yellow);
}

.hero-inner {
  width: 100%;
  max-width: 1050px;
  min-width: 0;
  text-align: center;
}

.hero-kicker,
.small-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  font-size: var(--text-sm);
  letter-spacing: 0;
}

.hero-kicker::before,
.hero-kicker::after,
.small-label::before,
.small-label::after {
  content: "";
  width: 28px;
  height: 2px;
  margin: 0 10px;
  background: var(--blue);
}

.hero h1 {
  margin: 18px 0 18px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-lg);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 3px 3px 0 #fff;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #334155;
  font-size: var(--text-lg);
  font-weight: 800;
}

.hero-actions,
.line-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: var(--text-base);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 62, 114, 0.18);
}

.button-line {
  color: #fff;
  background: var(--line);
}

.button-subtle {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(18, 62, 114, 0.15);
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-accent {
  color: #fff;
  background: var(--coral);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-notes li {
  padding: 7px 12px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 900;
}

.supported-docs {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  gap: 4px;
  margin: 20px auto 0;
  padding: 15px 18px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(31, 90, 157, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.1);
}

.supported-docs-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.3;
}

.supported-docs-title span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 12px;
  color: var(--blue);
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: 999px;
  font-size: var(--text-xs);
}

.supported-docs-title strong {
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: 0.02em;
}

.supported-docs-note {
  margin: 0;
  color: #5f6f83;
  font-size: var(--text-sm);
  font-weight: 800;
}

.hero-cat {
  position: absolute;
  z-index: -1;
  width: clamp(76px, 12vw, 150px);
  opacity: 0.96;
}

.hero-cat-left {
  left: max(16px, 8vw);
  bottom: 13%;
  transform: rotate(-8deg);
}

.hero-cat-right {
  right: max(14px, 8vw);
  top: 20%;
  transform: rotate(9deg);
}

.intro-band {
  margin-top: -1px;
  padding: 30px 20px;
  background: var(--blue);
  color: #fff;
}

.intro-copy {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 6px;
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 900;
}

.intro-copy p {
  margin: 0;
}

.section {
  scroll-margin-top: 104px;
  padding: clamp(68px, 9vw, 112px) 20px;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-blue {
  background:
    linear-gradient(180deg, rgba(18, 62, 114, 0.98), rgba(31, 90, 157, 0.96)),
    url("assets/zimusho2.jpg") center / cover no-repeat;
  color: #fff;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.photo-message-copy h2,
.line-cta h2 {
  margin: 6px 0 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-md);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading h2 span,
.photo-message-copy h2 span,
.line-cta h2 span {
  display: inline;
}

.section-heading-light h2 {
  color: #fff;
}

.worry-grid,
.feature-grid,
.pricing-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.worry-card {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 24px 18px 22px;
  overflow: hidden;
  color: #334155;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 6px 0 rgba(31, 90, 157, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.worry-card::before {
  content: "?";
  width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 4px 4px 0 var(--yellow);
  font-family: var(--font-display);
  font-size: var(--heading-sm);
  line-height: 1;
  transform: rotate(-4deg);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--yellow-deep), var(--coral));
}

.feature-number {
  width: 58px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  margin: 10px 0 14px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(255, 116, 103, 0.28);
  font-family: var(--font-display);
  font-size: var(--heading-sm);
  line-height: 1;
  transform: rotate(-2deg);
}

.feature-card h3,
.flow-list h3,
.check-panel h3,
.cat-profile p,
.faq-list summary {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 900;
}

.feature-card p,
.photo-message-copy p,
.flow-list p,
.faq-list p,
.price-card li,
.office-info dd,
.check-panel li,
.cat-profile p {
  margin: 0;
  color: #475467;
}

.photo-message {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 9vw, 108px) max(20px, calc((100vw - 1120px) / 2));
  background: var(--yellow);
}

.photo-message img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-message-copy h2,
.line-cta h2 {
  margin-bottom: 16px;
}

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

.price-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card-main {
  border-color: var(--yellow);
  box-shadow: 0 22px 56px rgba(255, 213, 68, 0.24), var(--shadow);
}

.price-ribbon {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 0 13px;
  color: #fff;
  background: var(--blue);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(18, 62, 114, 0.16);
  font-size: var(--text-xs);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: rotate(2deg);
}

.price-ribbon-accent {
  background: var(--coral);
  box-shadow: 0 6px 0 rgba(255, 116, 103, 0.18);
  transform: rotate(-2deg);
}

.price-card-main::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.72) 50%, transparent 58% 100%);
  mix-blend-mode: screen;
  transform: translateX(-125%);
}

.price-card-accent {
  border-color: var(--coral);
}

.price-head {
  padding: 22px;
  background: var(--yellow);
  text-align: center;
}

.price-card-main .price-head {
  padding-top: 38px;
}

.price-card-accent .price-head {
  padding-top: 46px;
  background: #ffd0cc;
}

.price-head p,
.tax,
.price-note {
  margin: 0;
  color: #667085;
  font-size: var(--text-sm);
  font-weight: 800;
}

.price-head h3 {
  margin: 2px 0 0;
  color: var(--blue-dark);
  font-size: var(--heading-sm);
}

.price {
  margin: 28px 0 0;
  color: var(--blue-dark);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--price-size);
  line-height: 1;
}

.price-card-main .price {
  text-shadow: 5px 5px 0 rgba(255, 227, 107, 0.34);
}

.price span {
  font-family: inherit;
  font-size: clamp(24px, 2.3vw, 28px);
}

.tax {
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding: 24px 32px 18px;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.price-card li::before,
.check-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--line);
  font-weight: 900;
}

.price-card .button {
  width: calc(100% - 48px);
  margin: 0 24px 28px;
}

.price-note {
  width: min(780px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.flow-list {
  width: min(860px, 100%);
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
}

.flow-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--heading-sm);
}

.two-column,
.access-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.check-panel {
  margin-bottom: 14px;
  padding: 22px;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
}

.check-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.cat-profile {
  padding: 22px;
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cat-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.cat-photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: var(--radius);
  background: #fff;
}

.cat-photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cat-photo-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px;
  color: #fff;
  background: rgba(18, 62, 114, 0.82);
  text-align: center;
  font-weight: 900;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-size: var(--heading-sm);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 22px;
}

.review-section {
  background: var(--white);
}

.review-carousel {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.review-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.review-score {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  color: #5f6f83;
  font-weight: 900;
}

.review-score-number {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-sm);
  line-height: 1;
}

.review-stars {
  margin: 0;
  color: #f6b700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-controls {
  display: inline-flex;
  gap: 8px;
}

.review-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 0 rgba(18, 62, 114, 0.16);
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.review-viewport {
  overflow-x: auto;
  padding: 0 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  color: #475467;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.08);
  scroll-snap-align: start;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.review-avatar-coral {
  background: var(--coral);
}

.review-avatar-purple {
  background: #7c3aed;
}

.review-avatar-yellow {
  color: var(--blue-dark);
  background: var(--yellow-deep);
}

.review-avatar-sky {
  background: #0891b2;
}

.review-meta h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.2;
}

.review-meta p {
  margin: 3px 0 0;
  color: #667085;
  font-size: var(--text-xs);
  font-weight: 800;
}

.review-text {
  margin: 0;
  color: #475467;
  font-weight: 700;
  line-height: 1.78;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(31, 90, 157, 0.24);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.review-dot.is-active {
  width: 28px;
  background: var(--blue);
  border-radius: 999px;
}

.office-info {
  display: grid;
  gap: 0;
  margin: 0;
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.office-info div {
  display: grid;
  grid-template-columns: 130px 1fr;
  background: #fff;
}

.office-info div:nth-child(even) {
  background: var(--cream);
}

.office-info dt,
.office-info dd {
  padding: 15px 16px;
}

.office-info dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.office-info a {
  color: var(--blue);
  font-weight: 900;
}

.map-frame {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #eef4fb;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
}

.office-map-pin {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 6px;
  pointer-events: none;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 8px 12px rgba(18, 62, 114, 0.24));
}

.office-map-pin span {
  padding: 5px 10px;
  color: var(--blue-dark);
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.18);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.office-map-pin::before {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--coral);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 3px rgba(255, 116, 103, 0.24);
  transform: rotate(-45deg);
}

.office-map-pin::after {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.line-cta {
  padding: clamp(54px, 8vw, 86px) 20px;
  background: var(--blue);
  color: #fff;
}

.line-cta-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  justify-content: space-between;
  gap: 26px;
}

.line-cta img {
  width: 118px;
}

.line-cta .small-label,
.line-cta h2,
.line-cta p {
  color: #fff;
}

.line-cta .small-label::before,
.line-cta .small-label::after {
  background: #fff;
}

.line-cta p {
  max-width: 620px;
}

.floating-line {
  position: fixed;
  z-index: 28;
  right: 18px;
  bottom: 18px;
  width: 90px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: #fff;
  background: var(--line);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: var(--text-sm);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-ready .floating-line {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
}

.floating-ready.show-floating .floating-line {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 38px 20px 48px;
  color: #fff;
  background: var(--blue-dark);
  text-align: center;
}

.site-footer img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .mobile-menu.is-open {
    animation: menuDrop 0.2s ease both;
  }

  .hero-kicker,
  .hero-lead,
  .hero-actions,
  .supported-docs,
  .hero-notes li {
    animation: fadeUp 0.42s ease-out both;
  }

  .hero-kicker {
    animation-delay: 0.04s;
  }

  .hero h1 span {
    animation: titlePop 0.48s ease-out both;
  }

  .hero h1 span + span {
    animation-delay: 0.04s;
  }

  .hero-lead {
    animation-delay: 0.1s;
  }

  .hero-actions {
    animation-delay: 0.16s;
  }

  .hero-notes li:nth-child(1) {
    animation-delay: 0.2s;
  }

  .hero-notes li:nth-child(2) {
    animation-delay: 0.23s;
  }

  .hero-notes li:nth-child(3) {
    animation-delay: 0.26s;
  }

  .hero-notes li:nth-child(4) {
    animation-delay: 0.29s;
  }

  .supported-docs {
    animation-delay: 0.33s;
  }

  .hero-cat-left {
    animation: catFloatLeft 4.6s ease-in-out infinite;
  }

  .hero-cat-right {
    animation: catFloatRight 5.2s ease-in-out infinite;
  }

  .button-line {
    animation: softPulse 3.4s ease-in-out infinite;
  }

  .button:hover,
  .worry-card:hover,
  .feature-card:hover,
  .price-card:hover {
    transform: translateY(-4px);
  }

  .worry-card:hover {
    border-color: rgba(31, 90, 157, 0.28);
    box-shadow: 0 11px 0 rgba(31, 90, 157, 0.1);
  }

  .feature-card:hover,
  .price-card:hover {
    box-shadow: 0 22px 46px rgba(31, 90, 157, 0.2);
  }

  .worry-card:hover::before,
  .feature-card:hover .feature-number {
    animation: badgeWiggle 0.48s ease both;
  }

  .faq-list details:hover {
    border-color: rgba(31, 90, 157, 0.24);
    box-shadow: 0 10px 22px rgba(31, 90, 157, 0.1);
  }

  .motion-ready .reveal-item {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.55s ease, filter 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
  }

  .motion-ready .reveal-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }

  .motion-ready .price-card.is-visible {
    animation: pricingCardIn 0.82s cubic-bezier(0.18, 0.92, 0.24, 1.18) backwards;
  }

  .motion-ready .price-card-main.is-visible {
    animation: pricingCardIn 0.82s cubic-bezier(0.18, 0.92, 0.24, 1.18) backwards, mainPlanGlow 2.8s ease-in-out 1.05s infinite;
  }

  .motion-ready .price-card-main.is-visible::after {
    animation: priceShine 1.15s ease-out 0.58s both;
  }

  .motion-ready .price-card.is-visible .price {
    animation: pricePop 0.72s cubic-bezier(0.16, 0.98, 0.24, 1.26) 0.22s backwards;
  }

  .motion-ready .price-card.is-visible li {
    animation: checkItemIn 0.42s ease-out backwards;
  }

  .motion-ready .price-card.is-visible li:nth-child(1) {
    animation-delay: 0.42s;
  }

  .motion-ready .price-card.is-visible li:nth-child(2) {
    animation-delay: 0.5s;
  }

  .motion-ready .price-card.is-visible li:nth-child(3) {
    animation-delay: 0.58s;
  }

  .motion-ready .price-card.is-visible li:nth-child(4) {
    animation-delay: 0.66s;
  }

  .motion-ready .price-card.is-visible li:nth-child(5) {
    animation-delay: 0.74s;
  }

  .motion-ready .price-card-main.is-visible .price-ribbon {
    animation: ribbonDrop 0.62s cubic-bezier(0.16, 0.98, 0.24, 1.26) 0.16s backwards, ribbonFloat 2.8s ease-in-out 1s infinite;
  }

  .motion-ready .price-card-main.is-visible .button-primary {
    animation: ctaKick 0.72s cubic-bezier(0.18, 0.95, 0.24, 1.2) 0.9s backwards, ctaGlow 2.6s ease-in-out 1.65s infinite;
  }

  .intro-screen {
    animation: introOverlayOut 0.68s ease 5.45s both;
  }

  .intro-line-first {
    animation: introTextIn 0.82s ease-out 0.25s both, introTextOut 0.58s ease-in 2.55s forwards;
  }

  .intro-line-second {
    animation: introTextIn 0.86s ease-out 3.1s both;
  }

  @keyframes headerIn {
    from {
      opacity: 0;
      transform: translateY(-18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes menuDrop {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0.01;
      transform: translateY(7px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes titlePop {
    from {
      opacity: 0.01;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes catFloatLeft {
    0%,
    100% {
      transform: rotate(-8deg) translateY(0);
    }
    50% {
      transform: rotate(-4deg) translateY(-10px);
    }
  }

  @keyframes catFloatRight {
    0%,
    100% {
      transform: rotate(9deg) translateY(0);
    }
    50% {
      transform: rotate(5deg) translateY(-8px);
    }
  }

  @keyframes softPulse {
    0%,
    100% {
      box-shadow: 0 0 0 rgba(6, 199, 85, 0);
    }
    50% {
      box-shadow: 0 0 0 8px rgba(6, 199, 85, 0.12);
    }
  }

  @keyframes badgeWiggle {
    0%,
    100% {
      transform: rotate(-3deg);
    }
    45% {
      transform: rotate(4deg) translateY(-2px);
    }
  }

  @keyframes pricingCardIn {
    0% {
      opacity: 0;
      transform: translateY(42px) scale(0.94);
    }
    58% {
      opacity: 1;
      transform: translateY(-8px) scale(1.02);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes mainPlanGlow {
    0%,
    100% {
      box-shadow: 0 22px 56px rgba(255, 213, 68, 0.24), var(--shadow);
    }
    50% {
      box-shadow: 0 0 0 7px rgba(255, 227, 107, 0.22), 0 30px 70px rgba(255, 213, 68, 0.34), var(--shadow);
    }
  }

  @keyframes priceShine {
    from {
      transform: translateX(-125%);
    }
    to {
      transform: translateX(125%);
    }
  }

  @keyframes pricePop {
    0% {
      opacity: 0;
      transform: translateY(18px) scale(0.76) rotate(-2deg);
    }
    62% {
      opacity: 1;
      transform: translateY(-5px) scale(1.08) rotate(1deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(0);
    }
  }

  @keyframes checkItemIn {
    from {
      opacity: 0;
      transform: translateX(-12px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes ribbonDrop {
    0% {
      opacity: 0;
      transform: translateY(-14px) rotate(10deg) scale(0.82);
    }
    70% {
      opacity: 1;
      transform: translateY(2px) rotate(-2deg) scale(1.06);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(2deg) scale(1);
    }
  }

  @keyframes ribbonFloat {
    0%,
    100% {
      transform: translateY(0) rotate(2deg);
    }
    50% {
      transform: translateY(-4px) rotate(-1deg);
    }
  }

  @keyframes ctaKick {
    0% {
      transform: translateY(10px) scale(0.96);
    }
    55% {
      transform: translateY(-4px) scale(1.03);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }

  @keyframes ctaGlow {
    0%,
    100% {
      box-shadow: none;
    }
    50% {
      box-shadow: 0 0 0 8px rgba(31, 90, 157, 0.13);
    }
  }

  @keyframes introTextIn {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.985);
      filter: blur(5px);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  @keyframes introTextOut {
    from {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
    to {
      opacity: 0;
      transform: translateY(-10px) scale(1.01);
      filter: blur(4px);
    }
  }

  @keyframes introOverlayOut {
    from {
      opacity: 1;
      visibility: visible;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }

  @keyframes siteReveal {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@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;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-phone {
    justify-self: end;
  }

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

  .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 58px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: min(58vw, 210px);
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 108px 18px 62px;
  }

  .hero-bg {
    background: var(--yellow);
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 48px);
    line-height: 1.08;
    text-shadow: 2px 2px 0 #fff;
  }

  .hero h1 span {
    display: block;
  }

  .hero-cat-left {
    left: 8px;
    bottom: 4%;
  }

  .hero-cat-right {
    right: 8px;
    top: 11%;
  }

  .hero-notes li {
    font-size: var(--text-xs);
  }

  .supported-docs {
    gap: 8px;
    padding: 15px 12px 13px;
  }

  .supported-docs-title {
    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .supported-docs-title strong {
    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.28;
  }

  .supported-docs-note {
    font-size: var(--text-xs);
  }

  .section {
    padding: 58px 20px;
  }

  .intro-line span {
    display: block;
  }

  .intro-line span + span {
    margin-left: 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .photo-message-copy h2,
  .line-cta h2 {
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.2;
  }

  .section-heading h2 span,
  .photo-message-copy h2 span,
  .line-cta h2 span {
    display: block;
  }

  .section-heading-left {
    text-align: center;
  }

  .review-carousel-head {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .review-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 22px;
  }

  .review-text {
    line-height: 1.74;
  }

  .worry-card {
    min-height: auto;
    padding: 22px 16px;
    font-size: var(--text-base);
    line-height: 1.75;
  }

  .feature-card,
  .check-panel,
  .cat-profile {
    padding: 20px;
  }

  .worry-grid,
  .feature-grid,
  .pricing-grid,
  .photo-message,
  .two-column,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .price-ribbon {
    top: 12px;
    right: 12px;
  }

  .price-card ul {
    padding: 22px 22px 16px;
  }

  .price-card .button {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .photo-message {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flow-list li {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .flow-list span {
    width: 44px;
    height: 44px;
    font-size: var(--heading-sm);
  }

  .office-info div {
    grid-template-columns: 1fr;
  }

  .office-info dt {
    padding-bottom: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .line-cta-inner {
    justify-content: center;
    text-align: center;
  }

  .floating-line {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }
}
