:root {
  --accent: #72c0ac;
  --accent-deep: #5ba994;
  --accent-soft: #eaf6f2;
  --text: #172126;
  --muted: #424b4f;
  --line: #dbe6e1;
  --bg: #f4f8f7;
  --white: #fff;
  --shadow: 0 24px 60px rgba(18, 34, 30, .08);
  --shadow-sm: 0 10px 30px rgba(18, 34, 30, .06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfa 0%, #f4f8f7 18%, #fff 100%);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 230, 225, .9);
  box-shadow: 0 4px 20px rgba(18, 34, 30, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.header-logo {
  max-width: 190px;
  flex: 0 0 auto;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header-links-container {
  margin-left: auto;
}

.header-links-container ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.header-links-container li {
  list-style: none;
}

.header-links-container a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #172126;
  transition: opacity .25s ease, color .25s ease;
}

.header-links-container a:hover {
  color: #72c0ac;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: #f2f7f5;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .25s ease;
}

.menu-toggle:hover {
  background: #e8f3ef;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #172126;
  transition: transform .28s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #d8ece5;
  color: #67b8a3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.title-xl {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.2;
  letter-spacing: -.05em;
  font-weight: 800;
}

.title-lg {
  margin: 18px 0 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 800;
}

.title-md {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 800;
}

.accent {
  color: var(--accent);
}

.lead {
  margin: 26px 0 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 2;
  color: var(--muted);
}

.copy {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(114, 192, 172, .28);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, .9);
  border-color: #d5dfdb;
  color: var(--text);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 82px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(114, 192, 172, .24), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, .95), transparent 15%),
    linear-gradient(180deg, #f8fbfa 0%, #f4f8f7 40%, #fff 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  gap: 56px;
  align-items: center;
}

.hero-inner-text {
  position: absolute;
  z-index: 10;
  width: calc((100vw - var(--container)) / 2 + (var(--container) * 0.4) + 2rem);
  top: 2rem;
  left: calc((var(--container) - 100vw) / 2);
  background: rgba(255, 255, 255, 0.7);
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.hero-text-container {
  margin-left: auto;
  width: calc(var(--container) * 0.4);
}

.hero-note {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-chip {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-chip .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.hero-chip strong {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.hero-chip span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  margin-left: auto;
  width: 60vw;
  max-width: 800px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(114, 192, 172, .24);
  filter: blur(55px);
}

.visual-stage {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(114, 192, 172, .28), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, .95), transparent 15%),
    linear-gradient(135deg, #edf8f4 0%, #ffffff 58%, #f2f6f5 100%);
  background-image: url(img/paperfile_main.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}

.visual-board {
  width: 100%;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.visual-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #617077;
  font-size: 14px;
  font-weight: 700;
}

.visual-top .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.visual-main {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 20px;
  align-items: end;
}

.visual-lines {
  display: grid;
  gap: 12px;
  padding-bottom: 6px;
}

.visual-lines i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: #dbe6e1;
}

.visual-lines i:nth-child(1) {
  width: 38%;
  background: #bfe5d9;
}

.visual-lines i:nth-child(2) {
  width: 62%;
}

.visual-lines i:nth-child(3) {
  width: 54%;
}

.visual-lines i:nth-child(4) {
  width: 70%;
}

.visual-file {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #eef8f4 100%);
  border: 1px solid #d8ebe5;
}

.visual-file .sheet {
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f2fbf7 100%);
  border: 1px solid #d7ebe4;
  box-shadow: 0 14px 30px rgba(18, 34, 30, .08);
  position: relative;
  overflow: hidden;
}

.visual-file .sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(114, 192, 172, .14), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(114, 192, 172, .07) 100%);
}

.feature-strip {
  position: relative;
  z-index: 2;
}

.feature-title {
  position: relative;
  background: #fff;
  border: solid 1px #d8ece5;
  border-radius: 100vw;
  padding: 0.3em 1.5em;
  width: fit-content;
  margin: 0 auto;
  top: 1.5em;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px;
  padding-top: calc(18px + 1.5em);
  background: #fff;
  border: 1px solid #e2ebe7;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.feature-box {
  padding: 22px;
  border-radius: 22px;
  background: #f8fbfa;
  border: 1px solid #edf3f0;
}

.feature-box img {
  width: 50%;
  margin: 0 auto 1em;
}

.feature-box strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.feature-box span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* SDG 12 */
.feature-tag--sdg12 {
  color: #BF8B2E;
  background: color-mix(in srgb, #BF8B2E 10%, white);
  border-color: color-mix(in srgb, #BF8B2E 28%, white);
}

/* SDG 13 */
.feature-tag--sdg13 {
  color: #3F7E44;
  background: color-mix(in srgb, #3F7E44 10%, white);
  border-color: color-mix(in srgb, #3F7E44 28%, white);
}

/* SDG 14 */
.feature-tag--sdg14 {
  color: #0A97D9;
  background: color-mix(in srgb, #0A97D9 10%, white);
  border-color: color-mix(in srgb, #0A97D9 28%, white);
}

.cta-inline {
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f5faf8 100%);
  border: 1px solid #e0ebe6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.cta-inline p {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 32px);
  color: var(--muted);
}

.lineup-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.lineup-head p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.lineup-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.lineup-tabs {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e1ebe7;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: 20px;
}

.lineup-tab {
  width: 100%;
  text-align: left;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: #f7faf9;
  cursor: pointer;
  transition: .24s ease;
}

.lineup-tab small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #7c8b8b;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lineup-tab strong {
  display: block;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.lineup-tab:hover {
  background: #f0f7f4;
}

.lineup-tab.active {
  background: linear-gradient(135deg, #72c0ac 0%, #64b69f 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(114, 192, 172, .26);
}

.lineup-tab.active small {
  color: rgba(255, 255, 255, .75);
}

.lineup-panels {
  min-width: 0;
}

.lineup-content {
  display: none;
}

.lineup-content.active {
  display: block;
}

.lineup-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #e1ebe7;
  box-shadow: var(--shadow);
}

.panel-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(114, 192, 172, .18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5faf8 100%);
}

.panel-inner {
  position: relative;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  min-height: 560px;
}

.panel-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #4c8c7d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.panel-copy p {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 2;
}

.panel-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-left: 0;
}

.panel-points li {
  list-style: none;
  padding: 15px 16px 15px 18px;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid #ebf2ef;
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.85;
}

.panel-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9f6f1;
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 2px;
}

.panel-visual {
  padding: 42px;
  display: grid;
  align-items: center;
}

.file-card {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .96);
  box-shadow: 0 24px 46px rgba(18, 34, 30, .08);
}

.panel-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #d6e9e3;
  background: linear-gradient(180deg, #fff 0%, #edf8f4 100%);
  box-shadow: 0 12px 26px rgba(18, 34, 30, .08);
  touch-action: pan-y;
}

.panel-slider {
  display: flex;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.panel-slide {
  min-width: 100%;  
  transform: scale(.92);
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.panel-slide.active {
  transform: scale(1);
}

.panel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.panel-nav {
  position: absolute;
  top: 94%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #172126;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 34, 30, .12);
}

.panel-nav.prev {
  left: 12px;
}

.panel-nav.next {
  right: 12px;
}

.panel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  align-items: center;
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.panel-dot.active {
  background: #fff;
  width: 10px;
  height: 10px;
}

.panel-media.is-single .panel-nav,
.panel-media.is-single .panel-dots {
  display: none;
}

.panel-caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: .35s ease;
}

.panel-caption.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.recommend-section {
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.recommend-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.recommend-lead {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
}

.recommend-list {
  display: grid;
  gap: 20px;
}

.recommend-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e1ebe7;
  box-shadow: var(--shadow-sm);
}

.recommend-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  padding-top: 4px;
}

.recommend-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -.02em;
}

.recommend-body p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
}

.recommend-body a {
  transition: all .2s ease;
  text-decoration: underline;
  color: #72c0ac;
}

.recommend-body a:hover {
  opacity: .6;
}

.recommend-body img{
  margin-top: 2em;
}

.recommend-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.recommend-points li {
  list-style: none;
  position: relative;
  padding: 12px 16px 12px 40px;
  border-radius: 16px;
  background: #f7faf9;
  border: 1px solid #ebf2ef;
  font-size: 14px;
  line-height: 1.8;
}

.recommend-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e9f6f1;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .recommend-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .recommend-num {
    justify-content: flex-start;
    font-size: 22px;
  }

  .recommend-body h3 {
    font-size: 21px;
  }
}

.faq-wrap {
  display: grid;
  gap: 20px;
}

.faq-card,
.support-card {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid #e1ebe7;
  box-shadow: var(--shadow-sm);
}

.faq-card {
  background: #fff;
}

.support-card {
  background: linear-gradient(135deg, #1d2630 0%, #121921 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, .06);
}

.support-card .eyebrow {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
  color: #fff;
}

.support-card .eyebrow::before {
  background: #9dd6c7;
}

.accordion {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e7efeb;
  border-radius: 18px;
  background: #fbfcfc;
  overflow: hidden;
}
.faq-item a{
  color: #72c0ac;
  text-decoration: underline;
  transition: all .2s ease;
}
.faq-item a:hover{
  opacity: .6;
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-q strong {
  font-size: 15px;
  line-height: 1.8;
}

.faq-q span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #edf8f4;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 auto;
  transition: .25s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.support-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.support-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
}

.cta-band {
  padding: 24px 0 110px;
}

.cta-box {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #72c0ac 0%, #67b8a3 52%, #5da794 100%);
  border: 1px solid #9fd8cb;
  box-shadow: 0 30px 70px rgba(114, 192, 172, .26);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px 44px;
  color: #fff;
}

.cta-inner p {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.95;
}

.cta-inner .btn-primary {
  background: #fff;
  color: #4f8f80;
  box-shadow: none;
}

.cta-inner .btn-primary:hover {
  background: #f5f5f5;
}

.cta-inner .btn-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.floating-cta {
  display: none;
}

@media (max-width: 1220px) {
  .hero-inner-text {
    left: -20px;
    padding: 20px;
  }

  .hero-text-container {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .lineup-shell,
  .panel-inner,
  .reasons-grid,
  .faq-wrap,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-note,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-tabs {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    padding: 14px;
    padding-top: calc(14px + 1.5em);
  }

  .lineup-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .header-links-container {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .header-links-container.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-links-container ul {
    display: block;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e1ebe7;
    box-shadow: 0 24px 50px rgba(18, 34, 30, .10);
  }

  .header-links-container li + li {
    border-top: 1px solid #edf3f0;
  }

  .header-links-container a {
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 10px;
    font-size: 14px;
    letter-spacing: .06em;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-inner {
    gap: 30px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: -100px;
  }

  .hero-inner-text {
    position: relative;
    top: -8rem;
    width: 100%;
  }

  .hero-note,
  .feature-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .visual-stage {
    min-height: 420px;
    padding: 18px;
    border-radius: 26px;
  }

  .visual-main {
    grid-template-columns: 1fr;
  }

  .feature-box,
  .reason-card,
  .faq-card,
  .support-card {
    padding: 24px;
  }

  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .panel-copy,
  .panel-visual,
  .cta-inner {
    padding: 26px;
  }

  .btn {
    width: 100%;
  }

  .floating-cta {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
  }

  .floating-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .98);
    box-shadow: 0 18px 40px rgba(18, 34, 30, .14);
    backdrop-filter: blur(12px);
  }

  .floating-cta strong {
    display: block;
    font-size: 14px;
  }

  .floating-cta span {
    display: block;
    font-size: 12px;
    color: var(--muted);
  }

  .floating-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-style: normal;
    font-weight: 800;
  }

  .lineup-tab strong{
    font-size: 14px;
  }

  .cta-band {
    padding-bottom: 100px;
  }
}

.site-footer {
  margin-top: 80px;
  padding: 48px 24px 20px;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  color: #222;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  max-width: 100%;
  aspect-ratio: 3 / 1;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer__info {
  display: grid;
  gap: 8px;
}

.site-footer__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.site-footer__address,
.site-footer__contact,
.site-footer__copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #555;
}

.site-footer__contact a {
  color: inherit;
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

.site-footer__contact span {
  margin: 0 0.45em;
}

.site-footer__bottom {
  max-width: 1120px;
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 56px;
    padding: 40px 20px 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__logo {
    width: 160px;
  }

  .site-footer__name {
    font-size: 0.98rem;
  }

  .site-footer__address,
  .site-footer__contact,
  .site-footer__copy {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}