/* ==========================================================================
   ramuno公認 出店支援パートナー制度 LP - stylesheet
   ========================================================================== */

:root {
  --navy: #1b2540;
  --navy-deep: #131b30;
  --gold: #b4924a;
  --gold-light: #d4b876;
  --cream: #f7f3ec;
  --cream-deep: #f1ead9;
  --ink: #23262b;
  --ink-soft: #55585f;
  --white: #ffffff;
  --border-soft: rgba(27, 37, 64, 0.1);
  --shadow-soft: 0 20px 45px rgba(27, 37, 64, 0.08);
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.sp-only { display: none; }

/* ---------- Layout helpers ---------- */
.section { padding: 110px 24px; position: relative; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); }

.section-tag {
  font-family: var(--font-sans);
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.section-tag.gold { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}
.section-title.on-dark { color: var(--white); }

.section-lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 auto 56px;
  text-align: center;
}
.section-lead.on-dark { color: rgba(255,255,255,0.78); }

.block-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 24px;
}
.block-label.light { color: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(27, 37, 64, 0.25);
}
.btn-primary:hover { background: var(--gold); box-shadow: 0 12px 28px rgba(180, 146, 74, 0.35); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-large { width: 100%; padding: 18px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(27, 37, 64, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.site-header:not(.scrolled) .logo { color: var(--navy); }
.logo-dot { color: var(--gold); }
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--navy);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo-img {
  height: 30px;
  margin: 0 auto 6px;
  /* Footer background is dark navy, so keep the logo in its
     original black-on-transparent form inverted to white. */
  filter: invert(1) brightness(1.4);
}
.footer-logo-tagline {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}
.main-nav a { color: var(--navy); position: relative; padding-bottom: 4px; }
.main-nav a:not(.nav-cta):after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:not(.nav-cta):hover:after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.25s ease;
}
.nav-cta:hover { background: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
  flex-shrink: 0;
}

/* Switch to hamburger menu earlier (tablet) to avoid nav items
   overflowing/wrapping the header on medium screen widths. */
@media (max-width: 1080px) {
  .main-nav:not(.open) { display: none; }
  .main-nav.open {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }
  .main-nav.open a { color: var(--white); font-size: 1.05rem; }
  .main-nav.open .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 100vh;
  background: var(--white);
}

/* Left navy sidebar (own grid column - always aligned, never overlaps text) */
.hero-sidebar {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 110px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-sidebar::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.hero-sidebar-top {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}

/* Right content area */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 60px;
}
.hero-inner {
  width: 100%;
  max-width: 820px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-text { padding-left: 0; text-align: center; }
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.eyebrow.gold { color: var(--gold); }
.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-title .dot { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.hero-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-media img { width: 100%; height: 480px; object-fit: cover; }
.media-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  right: 14px;
  background: rgba(27, 37, 64, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  padding: 8px 14px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.media-caption.dark { background: rgba(0,0,0,0.7); }
.media-caption i { color: var(--gold-light); flex-shrink: 0; }

/* Placeholder / sample-image ribbon badge.
   Applied to every photo slot that still needs to be replaced
   with an actual official product photo before launch. */
.placeholder-badge {
  position: absolute;
  top: 22px;
  right: -46px;
  width: 190px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 7px 0;
  transform: rotate(38deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
  pointer-events: none;
}

/* ---------- About ramuno section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}
.about-desc { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 32px; }
.about-points { margin-bottom: 32px; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.about-points li:first-child { padding-top: 0; }
.about-points li:last-child { border-bottom: none; }
.about-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-points strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.about-points span { color: var(--ink-soft); font-size: 0.88rem; }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  font-size: 0.95rem;
}
.about-link:hover { color: var(--gold); }
.about-visual {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}
.about-visual-badge {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--gold-light);
  border-radius: 6px;
  padding: 24px 12px;
  margin-bottom: 24px;
}
.about-visual-note { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ---------- Problem section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}
.numbered-list li {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
}
.numbered-list li:first-child { padding-top: 0; }
.numbered-list .num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 50px;
}
.numbered-list h3 { font-size: 1.1rem; margin-bottom: 8px; }
.numbered-list p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.approach-card {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  height: fit-content;
}
.approach-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.approach-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Scheme section ---------- */
.scheme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.scheme-card {
  padding: 44px 38px;
  border-radius: 8px;
}
.scheme-card-light { background: var(--cream); }
.scheme-card-navy { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.scheme-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 14px;
}
.scheme-badge.gold { color: var(--gold-light); }
.scheme-card h3 { font-size: 1.4rem; margin-bottom: 28px; }
.scheme-card-navy h3 { color: var(--white); }
.check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(27,37,64,0.08);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 16px;
  color: var(--gold);
  font-size: 0.8rem;
}
.check-list li strong { color: var(--navy); font-weight: 700; }
.check-list.on-dark li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }
.check-list.on-dark li strong { color: var(--white); }
.check-list.on-dark li::before { color: var(--gold-light); }

/* ---------- Support section ---------- */
.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.mini-title { font-size: 1.35rem; margin-bottom: 30px; }
.team-role {
  background: var(--cream);
  padding: 28px 30px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.role-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--white);
  margin-bottom: 14px;
}
.role-navy { background: var(--navy); }
.role-gold { background: var(--gold); }
.team-role h4 { font-size: 1.1rem; margin-bottom: 10px; }
.team-role p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.support-menu-card {
  background: var(--navy);
  padding: 48px 44px;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
}
.support-menu-card .mini-title { color: var(--white); }
.onboard-list li {
  counter-increment: onboard;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.onboard-list li:last-child { border-bottom: none; padding-bottom: 0; }
.onboard-list li:first-child { padding-top: 0; }
.onboard-list h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.onboard-list p { font-size: 0.93rem; margin: 0; color: rgba(255,255,255,0.72); }

/* ---------- Start pack section ---------- */
.startpack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.startpack-price-card {
  background: var(--navy);
  color: var(--white);
  padding: 42px 36px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}
.badge-gold { background: var(--gold); color: var(--white); }
.badge-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.badge-navy { background: var(--navy); color: var(--white); }
.startpack-price-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 24px; }
.price-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.price-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.price-value span { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-left: 6px; }
.price-value.small { font-size: 2rem; color: var(--navy); }
.price-value.small span { color: var(--navy); opacity: 0.75; }
.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.price-desc { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; margin-top: auto; }
.price-desc-title { font-weight: 700; color: var(--gold-light); margin-bottom: 8px; font-size: 0.92rem; }
.price-desc p:not(.price-desc-title) { font-size: 0.86rem; color: rgba(255,255,255,0.68); }

.startpack-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
}
.startpack-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.startpack-details {
  background: var(--cream);
  padding: 42px 38px;
  border-radius: 8px;
}
.icon-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.icon-list li:first-child { padding-top: 0; }
.icon-list li:last-child { border-bottom: none; }
.icon-tag {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.icon-list h4 { font-size: 1rem; margin-bottom: 6px; }
.icon-list p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Premium services ---------- */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.premium-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.premium-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.premium-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 0 28px;
  height: 320px;
}
.premium-image img { width: 100%; height: 100%; object-fit: cover; }
.premium-body .price-desc-title { color: var(--navy); }
.premium-body p:not(.price-desc-title) { color: var(--ink-soft); font-size: 0.92rem; }
.price-desc-note {
  font-size: 0.84rem;
  color: var(--gold);
  background: rgba(180, 146, 74, 0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 4px;
}
.included-box-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.included-box-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.included-box-note a:hover { color: var(--navy); border-color: var(--navy); }
.included-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 22px 24px;
  margin-top: 8px;
}
.included-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.included-list li:last-child { margin-bottom: 0; }
.included-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---------- Benefit section ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--white);
  padding: 42px 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.benefit-card-navy { background: var(--navy); }
.benefit-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.benefit-badge.gold { color: var(--gold-light); }
.benefit-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.benefit-card-navy h3 { color: var(--white); }
.divider-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.divider-line.light { background: var(--gold-light); }
.benefit-card p { color: var(--ink-soft); font-size: 0.93rem; }
.benefit-card-navy p { color: rgba(255,255,255,0.72); }

/* ---------- Pricing table ---------- */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: var(--white);
}
.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 20px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pricing-table tbody td {
  padding: 26px 24px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  font-size: 0.9rem;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: rgba(247, 243, 236, 0.5); }
.plan-name { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.plan-sub { font-size: 0.8rem; color: var(--ink-soft); margin: 0; }
.plan-price { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--gold); margin-bottom: 4px; }
.plan-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 8px; }
.plan-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.plan-note a:hover { color: var(--navy); border-color: var(--navy); }
.pricing-table td ul { list-style: none; }
.pricing-table td ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.pricing-table td ul li:last-child { margin-bottom: 0; }
.pricing-table td ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq-question i { color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer > p {
  overflow: hidden;
  min-height: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
  padding-right: 40px;
}
.faq-item.active .faq-answer { grid-template-rows: 1fr; padding-bottom: 26px; }

/* ---------- Contact form ---------- */
.contact-form { max-width: 780px; margin: 0 auto; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.required {
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }

.btn-large { margin-top: 8px; }
.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--gold-light);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  padding: 50px 24px;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.footer-links a { color: rgba(255,255,255,0.7); border-bottom: 1px solid transparent; }
.footer-links a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer-copy { font-size: 0.85rem; margin-bottom: 4px; }
.footer-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(180, 146, 74, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.floating-cta.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-cta:hover { transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-sidebar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 24px 24px;
    gap: 20px;
  }
  .hero-sidebar::after { display: none; }
  .hero-content { padding: 48px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; max-width: 100%; gap: 40px; }
  .hero-media img { height: 340px; }
  .problem-grid,
  .support-grid,
  .scheme-grid { grid-template-columns: 1fr; }
  .startpack-grid { grid-template-columns: 1fr 1fr; }
  .startpack-details { grid-column: span 2; }
  .premium-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { padding: 32px 24px; }
}

@media (max-width: 780px) {
  .sp-only { display: inline; }

  .placeholder-badge { top: 14px; right: -50px; width: 170px; font-size: 0.66rem; }
  .media-caption { font-size: 0.68rem; }

  .section { padding: 70px 20px; }
  .section-lead { margin-bottom: 36px; }

  .hero-sidebar {
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 20px 24px;
    gap: 16px;
  }
  .hero-content { padding: 40px 20px 50px; }
  .hero-title { font-size: 1.9rem; }
  .hero-media img { height: 260px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .startpack-grid { grid-template-columns: 1fr; }
  .startpack-details { grid-column: auto; }
  .startpack-image { min-height: 220px; }

  .form-row { grid-template-columns: 1fr; }

  .pricing-table { min-width: 720px; }

  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .price-value { font-size: 2.4rem; }
  .section-title { font-size: 1.5rem; }
}
