:root {
  --navy: #082b63;
  --blue: #0d6dcc;
  --blue-dark: #064b9a;
  --teal: #13a7a5;
  --green: #dff7ed;
  --soft-blue: #eef8ff;
  --text: #17304f;
  --muted: #5d7088;
  --line: #dce8f3;
  --shadow: 0 14px 34px rgba(8, 43, 99, .12);
  --radius: 16px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.container,
.header-inner,
.global-nav,
.hero-copy,
.solution-body,
.info-card,
.support-card,
.maker-item,
.step-card,
.cta-copy,
.page-hero-copy,
.greeting-panel {
  min-width: 0;
}
.narrow { max-width: 980px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(8,43,99,.06);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.brand-logo { display: block; width: auto; height: 55px; object-fit: contain; transform: translateY(-6px); }
.brand-sub { font-size: 13px; font-weight: 700; }
.global-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); font-weight: 800; font-size: 14px; }
.global-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); border-radius: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 0 70px;
  background: #f4f9ff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 34%, rgba(255,255,255,.32) 58%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 62%, rgba(255,255,255,.58) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 58vw, 720px);
  padding: 42px 0 34px;
}
.hero-copy { max-width: 650px; }
.area-label { display: inline-flex; padding: 6px 18px; border-radius: 999px; color: #fff; background: linear-gradient(90deg, var(--blue), var(--blue-dark)); font-weight: 800; font-size: 14px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, a, strong, span {
  overflow-wrap: anywhere;
}
h1 { margin: 18px 0; color: var(--navy); font-size: clamp(32px, 4.3vw, 54px); line-height: 1.35; letter-spacing: 0; }
.hero-title { word-break: keep-all; overflow-wrap: normal; }
.hero-title-chunk { display: inline-block; }
.hero-title-smart { color: #0990F4; font-size: 1.08em; white-space: nowrap; }
.hero-title-it { color: #0990F4; }
.lead { font-weight: 700; }
.worry { margin: 18px 0 24px; font-weight: 800; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(90deg, #0672d8, #064bba); box-shadow: 0 12px 24px rgba(6, 87, 187, .24); }
.btn-line {
  color: #fff;
  min-width: 190px;
  padding-left: 28px;
  padding-right: 28px;
  background: linear-gradient(90deg, #06c755, #00a844);
  box-shadow: 0 12px 24px rgba(6, 199, 85, .26);
  font-size: 17px;
  text-align: center;
}
.btn-outline { color: var(--blue-dark); background: #fff; border-color: var(--blue); }
.btn-accent { color: var(--navy); background: linear-gradient(90deg, #ffd55d, #ffb938); box-shadow: 0 10px 22px rgba(179, 116, 0, .2); }

.image-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8ff, #dff7ed);
  background-image: var(--image), linear-gradient(135deg, #eef8ff, #dff7ed);
  background-size: cover;
  background-position: center;
}
.image-placeholder::after {
  content: none;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
}
.hero .hero-bg::after {
  z-index: 2;
}
.feature-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: -46px; }
.mini-card, .info-card, .service-card, .product-card, .step-card, .solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-card { display: flex; align-items: center; gap: 18px; padding: 22px 28px; }
.mini-card h2 { margin-bottom: 2px; color: var(--navy); font-size: 21px; }
.mini-card p { margin: 0; font-weight: 700; font-size: 14px; }

.section { padding: 88px 0; }
.compact { padding-top: 54px; padding-bottom: 54px; }
.section-soft { background: linear-gradient(180deg, #f7fcff, #fff); }
.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading h2 { margin-bottom: 8px; color: var(--navy); font-size: clamp(24px, 3vw, 34px); line-height: 1.4; }
.section-heading p { margin-bottom: 0; font-weight: 700; color: var(--muted); }
.section-heading.align-left { text-align: left; }

.anxiety-section {
  width: 100%;
  background: #FFFFFF;
}
.anxiety-image {
  display: block;
  width: 100%;
  height: auto;
}
.solution-list { display: grid; gap: 16px; }
.solution-card { display: grid; grid-template-columns: minmax(0, 38%) minmax(0, 1fr); overflow: hidden; }
.solution-card.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 38%); }
.solution-card.reverse .solution-image { order: 2; }
.solution-image { min-height: 180px; }
.solution-body { padding: 24px 34px; }
.solution-body h3 { display: flex; gap: 10px; align-items: center; color: var(--navy); font-size: 24px; }
.solution-body p { font-weight: 700; }
.text-btn { display: inline-flex; margin-top: 6px; padding: 10px 18px; border: 2px solid var(--blue); border-radius: 999px; color: var(--blue-dark); font-weight: 900; }

.cards-grid { display: grid; gap: 16px; }
.cards-grid.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card, .service-card { padding: 24px; }
.service-card {
  text-align: center;
}
.service-card .icon {
  display: block;
  margin: 0 auto 12px;
}
.info-card h3, .service-card h3 { margin: 8px 0 2px; color: var(--teal); font-size: 22px; }
.info-card strong { display: block; margin-bottom: 6px; color: var(--navy); line-height: 1.55; }
.info-card p, .service-card p, .product-card p, .step-card p { margin-bottom: 0; color: var(--muted); font-weight: 600; font-size: 14px; }

.support-section { background: #fff; }
.support-section .section-heading { margin-bottom: 34px; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.support-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 330px;
  padding: 38px 28px 28px;
  border: 1px solid #d6e6f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 43, 99, .08);
  text-align: center;
}
.support-card h3 {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.45;
}
.support-card p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.support-note {
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid #bfe5e8;
  border-radius: 6px;
  color: var(--teal);
  background: #eefafb;
  font-weight: 900;
  line-height: 1.75;
}
.support-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}
.support-checklist {
  margin: auto 0 0;
  padding: 10px 18px;
  border: 1px solid #83ced3;
  border-radius: 6px;
  list-style: none;
  text-align: left;
}
.support-checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--navy);
  border-bottom: 1px dashed #bee3eb;
  font-weight: 800;
}
.support-checklist li:last-child { border-bottom: 0; }
.support-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
}
.support-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.maker-panel {
  margin-top: 22px;
  padding: 24px 28px 28px;
  border: 1px solid #d6e6f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 43, 99, .08);
}
.maker-heading {
  margin-bottom: 18px;
  text-align: center;
}
.maker-heading h3 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.4;
}
.maker-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}
.maker-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.maker-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 120px;
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid #bfd4ea;
}
.maker-item:last-child { border-right: 0; }
.maker-item strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}
.maker-item span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.maker-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.product-card { overflow: hidden; }
.product-image { min-height: 192px; }
.product-card h3 { min-height: 58px; margin: 14px 16px 8px; color: var(--navy); font-size: 16px; line-height: 1.45; }
.product-card p { padding: 0 16px 18px; }

.section-price {
  width: 100%;
  background: #FFFFFF;
}
.price-image-stack {
  display: grid;
  gap: 22px;
}
.price-image-stack picture {
  display: block;
}
.price-image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.step-card { position: relative; display: flex; flex-direction: column; align-items: center; padding: 24px 18px; text-align: center; }
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 11px solid var(--teal);
  transform: translateY(-50%);
  z-index: 2;
}
.step-label { display: inline-flex; margin-bottom: 12px; padding: 2px 16px; border-radius: 999px; color: #fff; background: var(--teal); font-size: 13px; font-weight: 900; }
.step-icon {
  display: block;
  width: 111px;
  height: 111px;
  margin-bottom: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-step1 { background-image: url("assets/images/icon-step1.png"); }
.icon-step2 { background-image: url("assets/images/icon-step2.png"); }
.icon-step3 { background-image: url("assets/images/icon-step3.png"); }
.icon-step4 { background-image: url("assets/images/icon-step4.png"); }
.icon-step5 { background-image: url("assets/images/icon-step5.png"); }
.step-card h3 { margin-bottom: 8px; color: var(--navy); font-size: 17px; line-height: 1.45; }

.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; }
details { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgba(8,43,99,.08); }
summary { cursor: pointer; padding: 16px 48px 16px 20px; color: var(--navy); font-weight: 900; list-style: none; position: relative; }
summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--blue); font-size: 22px; }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-weight: 600; }

.final-cta { padding: 38px 0; }
.cta-panel { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 14px; align-items: center; padding: 34px 38px; border-radius: 18px; color: #fff; text-align: center; background: linear-gradient(90deg, #0fa5a5, #1187bb); overflow: hidden; }
.cta-copy { max-width: 840px; }
.cta-copy h2 { margin-bottom: 8px; font-size: clamp(24px, 3vw, 34px); line-height: 1.45; }
.cta-copy p { font-weight: 800; }
.cta-copy small { display: block; margin-top: 12px; font-weight: 800; }

.site-footer { padding: 22px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; font-weight: 800; color: var(--navy); }
.footer-inner div { display: flex; flex-direction: column; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 22px; }

.icon { width: 42px; height: 42px; display: inline-block; flex: 0 0 auto; color: var(--navy); background: currentColor; mask: var(--mask) center / contain no-repeat; -webkit-mask: var(--mask) center / contain no-repeat; }
.icon-cart { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2ZM7.2 14.5h8.9c.8 0 1.5-.4 1.8-1.1L22 5H6.2L5.7 2H2v2h2l3 12h11v-2H7.2Z'/%3E%3C/svg%3E"); }
.icon-wrench { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 6.8a6.5 6.5 0 0 1-8.4 7.9L6.1 22 2 17.9l7.4-7.4A6.5 6.5 0 0 1 17.2 2l-4 4 2.8 2.8 4-4c.9.5 1.5 1.2 2 2Z'/%3E%3C/svg%3E"); }
.icon-heart { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21s-7.5-4.6-10-10C.2 7.1 2.6 3 6.8 3c2 0 3.8 1.1 5.2 3 1.4-1.9 3.2-3 5.2-3C21.4 3 23.8 7.1 22 11c-2.5 5.4-10 10-10 10Z'/%3E%3C/svg%3E"); }
.icon-family,.icon-pet,.icon-home,.icon-camera,.icon-bell,.icon-gear,.icon-phone,.icon-mic,.icon-grid,.icon-bag,.icon-support { border: 2px solid currentColor; border-radius: 12px; background: transparent; mask: none; -webkit-mask: none; position: relative; }
.icon-family::after,.icon-pet::after,.icon-home::after,.icon-camera::after,.icon-bell::after,.icon-gear::after,.icon-phone::after,.icon-mic::after,.icon-grid::after,.icon-bag::after,.icon-support::after { content: ""; position: absolute; inset: 9px; border: 3px solid currentColor; border-radius: 50%; }
.icon-family,
.icon-pet,
.icon-home {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-family::after,
.icon-pet::after,
.icon-home::after {
  content: none;
}
.icon-family { background-image: url("assets/images/icon-family.png"); }
.icon-pet { background-image: url("assets/images/icon-pet.png"); }
.icon-home { background-image: url("assets/images/icon-home.png"); }
.icon-camera,
.icon-bell,
.icon-gear,
.icon-phone,
.icon-mic,
.icon-grid {
  width: 52px;
  height: 52px;
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-camera::after,
.icon-bell::after,
.icon-gear::after,
.icon-phone::after,
.icon-mic::after,
.icon-grid::after {
  content: none;
}
.icon-camera { background-image: url("assets/images/icon-camera.png"); }
.icon-bell { background-image: url("assets/images/icon-bell.png"); }
.icon-gear { background-image: url("assets/images/icon-gear.png"); }
.icon-phone { background-image: url("assets/images/icon-phone.png"); }
.icon-mic { background-image: url("assets/images/icon-mic.png"); }
.icon-grid { background-image: url("assets/images/icon-grid.png"); }
.service-card .icon-bag,
.service-card .icon-wrench,
.service-card .icon-support {
  width: 87px;
  height: 87px;
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mask: none;
  -webkit-mask: none;
}
.service-card .icon-bag::after,
.service-card .icon-wrench::after,
.service-card .icon-support::after {
  content: none;
}
.service-card .icon-bag { background-image: url("assets/images/icon-bag.png"); }
.service-card .icon-wrench { background-image: url("assets/images/icon-wrench.png"); }
.service-card .icon-support { background-image: url("assets/images/icon-support.png"); }
.section-soft .info-card {
  display: grid;
  grid-template-columns: 114px 1fr;
  column-gap: 18px;
  align-items: start;
  padding: 22px 24px;
}
.section-soft .info-card .icon {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 105px;
  height: 105px;
  align-self: center;
  justify-self: center;
}
.section-soft .info-card h3,
.section-soft .info-card strong,
.section-soft .info-card p {
  grid-column: 2;
}
.section-soft .info-card h3 {
  margin: 0 0 2px;
}

.page-hero {
  padding: 74px 0 58px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.74)),
    linear-gradient(135deg, #eef8ff, #dff7ed);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 230px);
  gap: 42px;
  align-items: center;
}
.page-hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}
.page-hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  background: transparent;
}
.page-hero-logo img {
  width: min(160px, 72%);
  height: auto;
}
.page-hero-portrait {
  min-height: 0;
  overflow: visible;
  background: transparent;
}
.page-hero-portrait img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.portrait-caption {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
.greeting-section {
  background: #fff;
}
.greeting-panel {
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.greeting-heading {
  margin-bottom: 24px;
  text-align: center;
}
.greeting-kicker {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}
.greeting-heading h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 34px);
}
.greeting-body p {
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
  line-height: 2.05;
}
.greeting-body p:last-child {
  margin-bottom: 0;
}
.privacy-section {
  background: #fff;
}
.privacy-panel {
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.privacy-panel h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.5;
}
.privacy-panel h2:first-of-type {
  margin-top: 28px;
}
.privacy-panel p,
.privacy-panel li {
  color: var(--text);
  font-weight: 600;
}
.privacy-panel ul {
  margin: 0 0 18px;
  padding-left: 1.4em;
}
.privacy-panel p:last-child {
  margin-bottom: 0;
}
.privacy-signature {
  margin-top: 36px;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}
.representative-signature {
  display: grid;
  justify-content: end;
  gap: 2px;
  margin-top: 34px;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}
.representative-signature span {
  color: var(--muted);
  font-size: 14px;
}
.representative-signature strong {
  font-size: 22px;
}
.representative-contact {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  text-align: right;
}
.representative-contact p {
  margin: 0;
}
.representative-contact a {
  color: inherit;
}
.representative-contact a:hover {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 60px; }
  .brand { flex-direction: column; gap: 0; line-height: 1.25; }
  .brand-logo { height: 44px; }
  .brand-sub { font-size: 11px; }
  .menu-toggle { display: block; }
  .global-nav { position: absolute; left: 14px; right: 14px; top: 66px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 12px; }
  .hero { padding-bottom: 42px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 48%, rgba(255,255,255,.62) 100%),
      linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.46) 100%);
  }
  .hero .hero-bg { background-position: 62% center; opacity: .9; }
  .hero-grid, .solution-card, .solution-card.reverse, .cta-panel, .page-hero-inner { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 58px 0 30px; }
  .section-heading.align-left { text-align: center; }
  .solution-card.reverse .solution-image { order: 0; }
  .feature-strip, .cards-grid.six, .cards-grid.three, .support-grid, .product-grid, .steps, .faq-list { grid-template-columns: 1fr; }
  .feature-strip { margin-top: 0; }
  .support-card { min-height: auto; padding: 28px 22px; }
  .maker-list { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .maker-item { border-right: 0; border-bottom: 1px solid #bfd4ea; }
  .maker-item:nth-last-child(-n+2) { border-bottom: 0; }
  .step-card:not(:last-child)::after { display: none; }
  .section { padding: 58px 0; }
  .compact { padding-top: 42px; padding-bottom: 42px; }
  .cta-panel { padding: 22px; }
  html { scroll-padding-top: 68px; }
  .page-hero { padding: 54px 0 44px; }
  .page-hero-logo { min-height: 170px; }
  .greeting-panel { padding: 32px 24px; }
  .privacy-panel { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  h1 { font-size: 31px; }
  .header-inner { position: relative; justify-content: center; }
  .brand { align-items: center; text-align: center; }
  .menu-toggle { position: absolute; right: 0; }
  .hero-actions .btn { width: 100%; }
  .mini-card { padding: 18px; }
  .support-card h3 { font-size: 20px; }
  .support-card p { font-size: 14px; line-height: 1.9; }
  .maker-panel { padding: 22px 16px; }
  .maker-list { grid-template-columns: 1fr; }
  .maker-item { min-height: auto; border-bottom: 1px solid #bfd4ea; }
  .maker-item:nth-last-child(-n+2) { border-bottom: 1px solid #bfd4ea; }
  .maker-item:last-child { border-bottom: 0; }
  .maker-caption { text-align: left; }
  .anxiety-section { background: #FFFFFF; }
  .solution-body { padding: 22px; }
  .product-card h3 { min-height: auto; }
  .footer-inner nav { gap: 12px 18px; }
}
