:root {
  --color-white: #ffffff;
  --color-bg: #fffafc;
  --color-bg-soft: #fff4f8;
  --color-pink: #ff5fa2;
  --color-pink-soft: #ffe3ef;
  --color-pink-deep: #d9367f;
  --color-yellow: #ffe36e;
  --color-yellow-soft: #fff5bf;
  --color-yellow-deep: #b88900;
  --color-text: #24212a;
  --color-muted: #6f6875;
  --color-border: #f0dfe8;
  --color-card: rgba(255, 255, 255, 0.82);
  --shadow-soft: 0 18px 50px rgba(217, 54, 127, 0.12);
  --shadow-card: 0 12px 30px rgba(36, 33, 42, 0.08);
  --font-base: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 244, 248, 0.88) 0%, rgba(255, 255, 255, 0.98) 28%, rgba(255, 250, 252, 1) 100%);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(255, 95, 162, 0.55);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(240, 223, 232, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 95, 162, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #ffe3ef 45%, #ffe36e 100%);
  color: var(--color-pink-deep);
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
}

.brand-name {
  font-size: 1.16rem;
}

.global-nav {
  display: none;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.global-nav a[aria-current="page"],
.global-nav a:hover {
  color: var(--color-pink-deep);
}

.header-actions {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-pink-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
  transform: translateY(-6px) rotate(-45deg);
}

.global-nav.is-open {
  position: fixed;
  inset: 72px 16px auto;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.global-nav.is-open a {
  padding: 8px 12px;
  background: rgba(255, 244, 248, 0.82);
}

.section,
.page-hero,
.section-hero {
  position: relative;
  padding: 72px 0;
}

.section-hero {
  padding-top: 48px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 244, 248, 0.92), rgba(255, 255, 255, 0.92));
}

.section-yellow {
  background: linear-gradient(180deg, rgba(255, 245, 191, 0.56), rgba(255, 255, 255, 0.92));
}

.hero-grid,
.page-hero-grid,
.two-column,
.split-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 34px;
}

.hero-copy,
.stack,
.message-box,
.policy-content,
.contact-aside {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 2px 12px;
  border: 1px solid rgba(184, 137, 0, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 245, 191, 0.86), rgba(255, 255, 255, 0.74));
  color: var(--color-yellow-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.32;
  font-weight: 850;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero h1 {
  font-size: clamp(2.35rem, 6vw, 3.35rem);
}

h1 span,
h2 span {
  color: var(--color-pink-deep);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.85;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 197, 221, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(217, 54, 127, 0.08);
}

p,
li,
dd {
  color: var(--color-muted);
}

.hero-actions,
.cta-list,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid rgba(217, 54, 127, 0.34);
  background: linear-gradient(135deg, #d9367f 0%, #ff5fa2 54%, #ffe36e 100%);
  color: var(--color-white);
  box-shadow: 0 16px 38px rgba(217, 54, 127, 0.3);
}

.btn-outline {
  border: 1px solid #ffc5dd;
  background: var(--color-white);
  color: var(--color-pink-deep);
  box-shadow: var(--shadow-card);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 197, 221, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 248, 0.76)),
    var(--color-white);
  box-shadow: var(--shadow-card);
}

.image-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%),
    linear-gradient(315deg, rgba(255, 227, 110, 0.18), rgba(255, 227, 110, 0) 46%);
  content: "";
}

.section-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero-image-card {
  max-width: 600px;
  margin-inline: auto;
}

.section-image-card {
  margin-top: 24px;
}

.image-card-wide {
  max-width: 880px;
  margin-bottom: 28px;
}

.page-image-card {
  align-self: center;
  max-width: 540px;
  margin-inline: auto;
}

.panel-image-card {
  margin: 4px 0 6px;
}

.cta-image-card {
  max-width: 520px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.visual-ribbon {
  position: absolute;
  z-index: -1;
  border-radius: 8px;
  opacity: 0.86;
  transform: rotate(-9deg);
}

.ribbon-one {
  top: 16px;
  right: 18px;
  width: 300px;
  height: 118px;
  background: linear-gradient(135deg, rgba(255, 95, 162, 0.22), rgba(255, 227, 110, 0.38));
}

.ribbon-two {
  right: 170px;
  bottom: 64px;
  width: 230px;
  height: 96px;
  background: linear-gradient(135deg, rgba(255, 227, 110, 0.42), rgba(255, 227, 239, 0.76));
  transform: rotate(12deg);
}

.phone-mock {
  position: relative;
  width: min(310px, 82vw);
  min-height: 520px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255, 197, 221, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 248, 0.86)),
    radial-gradient(circle at 80% 18%, rgba(255, 227, 110, 0.55), transparent 34%);
  box-shadow: 0 32px 80px rgba(217, 54, 127, 0.16);
}

.phone-mock::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 80px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(36, 33, 42, 0.16);
  content: "";
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.live-badge,
.viewer-pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.live-badge {
  background: var(--color-pink);
  color: var(--color-white);
}

.viewer-pill {
  background: var(--color-yellow-soft);
  color: var(--color-yellow-deep);
}

.stream-window {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px solid rgba(255, 197, 221, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 227, 239, 0.88), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(255, 95, 162, 0.14), rgba(255, 227, 110, 0.18));
}

.stream-avatar {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ffe3ef 48%, #ffe36e);
  color: var(--color-pink-deep);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.stream-wave {
  position: absolute;
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 95, 162, 0.42);
}

.wave-a {
  top: 158px;
  left: 52px;
}

.wave-b {
  top: 202px;
  right: 44px;
  background: rgba(255, 227, 110, 0.72);
}

.wave-c {
  top: 286px;
  left: 62px;
  width: 56px;
  background: rgba(217, 54, 127, 0.22);
}

.comment-card,
.reaction-row,
.floating-card {
  border: 1px solid rgba(255, 197, 221, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.comment-card {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px;
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 700;
}

.comment-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-pink);
}

.reaction-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px;
}

.reaction-row span {
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 220px;
  padding: 16px;
}

.floating-card p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.card-live {
  right: 0;
  bottom: 36px;
}

.card-social {
  top: 80px;
  left: 0;
}

.tag-yellow {
  width: fit-content;
  background: var(--color-yellow-soft);
  color: var(--color-yellow-deep);
}

.tag-pink {
  width: fit-content;
  background: var(--color-pink-soft);
  color: var(--color-pink-deep);
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.detail-card,
.feature-list article,
.panel,
.cta-box,
.contact-form,
.contact-aside,
.faq-list article,
.flow-list li,
.message-box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.service-card,
.detail-card,
.feature-list article,
.panel,
.faq-list article,
.flow-list li {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.service-card h3,
.feature-list h3,
.faq-list h3,
.flow-list h3 {
  color: var(--color-text);
}

.card-number,
.flow-list span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--color-pink-soft);
  color: var(--color-pink-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.split-band {
  background:
    linear-gradient(90deg, rgba(255, 244, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.panel {
  align-content: start;
}

.panel-pink {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 248, 0.92));
}

.info-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.info-table div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
}

.info-table div:last-child {
  border-bottom: 0;
}

.info-table dt {
  color: var(--color-pink-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.info-table dd {
  color: var(--color-text);
  font-weight: 700;
}

.info-table dd a,
.sns-card a {
  color: var(--color-pink-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.info-stack,
.contact-info-stack {
  display: grid;
  gap: 16px;
}

.contact-info-stack {
  margin-top: 18px;
}

.sns-card,
.qr-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 248, 0.76)),
    var(--color-white);
  box-shadow: var(--shadow-card);
}

.sns-card h3 {
  color: var(--color-text);
  font-size: 1rem;
}

.sns-handle {
  color: var(--color-pink-deep);
  font-weight: 850;
}

.qr-card {
  text-align: center;
}

.qr-image {
  display: block;
  width: min(180px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.qr-card figcaption {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.compact {
  margin-top: 12px;
  box-shadow: none;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255, 244, 248, 0.92), rgba(255, 245, 191, 0.46));
}

.cta-box {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(255, 227, 110, 0.2));
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 244, 248, 0.95), rgba(255, 255, 255, 0.96) 58%, rgba(255, 245, 191, 0.35));
}

.page-visual {
  display: grid;
  min-height: 300px;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 197, 221, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 248, 0.84)),
    linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(255, 227, 110, 0.2));
  box-shadow: var(--shadow-soft);
}

.page-visual span {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(255, 197, 221, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  font-weight: 850;
  box-shadow: var(--shadow-card);
}

.page-visual span:nth-child(even) {
  justify-self: end;
  background: rgba(255, 245, 191, 0.84);
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.detail-card .note,
.note {
  padding: 12px 14px;
  border: 1px solid rgba(184, 137, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 245, 191, 0.6);
  color: #5c4b0d;
  font-size: 0.92rem;
}

.flow-list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

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

.pill-list li,
.check-list li {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  border-radius: 8px;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-pink);
  content: "";
}

.message-box {
  padding: 24px;
}

.signature {
  color: var(--color-text);
  font-weight: 850;
}

.contact-grid {
  align-items: start;
}

.contact-aside,
.contact-form {
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-weight: 800;
}

.contact-form label span {
  color: var(--color-text);
}

.contact-form em {
  color: var(--color-pink-deep);
  font-size: 0.78rem;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 6px;
}

.checkbox-label a {
  color: var(--color-pink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-message {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 137, 0, 0.24);
  border-radius: 8px;
  background: rgba(255, 245, 191, 0.62);
  color: var(--color-text);
  font-weight: 800;
}

.form-actions {
  margin-top: 20px;
}

.policy-content {
  max-width: 880px;
}

.policy-content article {
  display: grid;
  gap: 10px;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.site-footer {
  padding: 46px 0 96px;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.footer-grid {
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-nav a {
  color: var(--color-muted);
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--color-pink-deep);
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(140%);
  transition: transform 0.24s ease;
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.floating-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-pink-deep);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.floating-cta a:first-child {
  background: linear-gradient(135deg, #ff5fa2 0%, #ff8fbd 55%, #ffe36e 100%);
  color: var(--color-white);
}

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

  .section,
  .page-hero,
  .section-hero {
    padding: 56px 0;
  }

  .section-hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-copy,
  .stack,
  .message-box,
  .policy-content,
  .contact-aside {
    gap: 14px;
  }

  .hero-points li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .btn,
  .form-actions .btn {
    width: 100%;
  }

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

  .floating-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }
}

@media (min-width: 720px) {
  .section,
  .page-hero,
  .section-hero {
    padding: 96px 0;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
  }

  .two-column {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

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

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

  .full {
    grid-column: 1 / -1;
  }

  .info-table div {
    grid-template-columns: 150px 1fr;
    gap: 18px;
  }

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

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .global-nav {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

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

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

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

  .floating-cta {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 320px;
  }
}

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