/* ============================
   ABody-Studio LP Stylesheet
   Design: Premium, Minimal, Sophisticated
   ============================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #FAFAF8;
  --color-bg-dark: #1A1A1A;
  --color-bg-dark2: #222222;
  --color-text: #333333;
  --color-text-light: #E8E6E2;
  --color-heading: #1A1A1A;
  --color-accent: #B8975A;
  --color-accent-hover: #A07D45;
  --color-border: #D8D5CF;
  --color-muted: #888888;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-sans: 'Noto Sans JP', 'Yu Gothic', '游ゴシック', sans-serif;
  --font-display: 'Cormorant Garamond', var(--font-serif);
  --max-width: 1100px;
  --max-narrow: 780px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.lp {
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
strong { font-weight: 500; }

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

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.narrow { max-width: var(--max-narrow); }

/* --- Section Base --- */
.section {
  padding: 7rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible { opacity: 1; transform: translateY(0); }

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
}
.nav-cta {
  font-size: 0.78rem;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--color-accent-hover); }

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 3rem;
}
.section-title.light { color: var(--color-text-light); }
.section-title.left { text-align: left; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 3rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  margin-top: 0.3rem;
  opacity: 0.85;
}

/* --- Body Text --- */
.body-text {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.body-text.light { color: var(--color-text-light); }
.body-text.center { text-align: center; }
.highlight-text { color: var(--color-heading); font-weight: 400; }

/* === FIRST VIEW === */
.fv {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1A1A1A;
}
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.40) 100%
  );
}
.fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 6rem 2rem 4rem;
}
.fv-logo-area { margin-bottom: 2.5rem; }
.fv-logo {
  width: 180px;
  margin: 0 auto;
  filter: invert(1);
  opacity: 0.9;
}
.fv-headline {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}
.fv-sub {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  opacity: 0.92;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.fv-info {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  opacity: 0.7;
  font-weight: 300;
}
.fv-limit {
  font-size: 0.75rem;
  margin-top: 1rem;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

/* === EMPATHY === */
.section-empathy {
  position: relative;
  overflow: hidden;
  background: #1A1A1A;
}
.empathy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.empathy-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.empathy-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.70) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.75) 100%
  );
}
.section-empathy .container {
  position: relative;
  z-index: 1;
}
.empathy-list p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}
.empathy-divider {
  width: 40px; height: 1px;
  background: var(--color-accent);
  margin: 3rem auto;
}
.empathy-closing {
  font-size: 0.95rem;
  line-height: 2;
  text-align: center;
  color: rgba(255,255,255,0.75);
}
.empathy-closing strong {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

/* === COST === */
.section-cost {
  position: relative;
  overflow: hidden;
  background: #1A1A1A;
}
.cost-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cost-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cost-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.78) 100%
  );
}
.section-cost .container {
  position: relative;
  z-index: 1;
}
.cost-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.cost-list li {
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cost-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.cost-text {
  text-align: center;
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

/* === TWO COLUMN === */
.two-col {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse { flex-direction: row-reverse; }
.col-text { flex: 1; }
.col-img { flex: 1; }
.col-img img { border-radius: 6px; }
.limitation-img { flex: 0.7; }
.limitation-img img { border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

@media (max-width: 768px) {
  .two-col, .two-col.reverse { flex-direction: column; }
  .col-img { width: 100%; }
}

/* === THREE PILLARS === */
.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.pillar {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
.pillar-text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .three-pillars { grid-template-columns: 1fr; }
}

/* === APPROACH IMG === */
.approach-img-wrap {
  max-width: 800px;
  margin: 3rem auto 0;
  border-radius: 8px;
  overflow: hidden;
}
.approach-img-wrap img { width: 100%; }

/* === COMPARISON TABLE === */
.comparison-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table th, .comparison-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table th {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.comparison-table .row-label {
  font-weight: 500;
  color: var(--color-heading);
  font-size: 0.82rem;
  white-space: nowrap;
}
.comparison-table .highlight-col {
  color: var(--color-accent);
  font-weight: 500;
  background: rgba(184, 151, 90, 0.04);
}
.comparison-table thead th.highlight-col {
  color: var(--color-accent);
  font-size: 0.88rem;
}

/* === TRIAL STEPS === */
.section-trial { background: #F5F4F0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.step {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
}
.step-time {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 300;
  margin-top: 0.3rem;
}
.step-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

.trial-img-wrap {
  max-width: 600px;
  margin: 3rem auto;
  border-radius: 8px;
  overflow: hidden;
}
.trial-cta { text-align: center; margin-top: 3rem; }
.trial-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.price-highlight {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-accent);
}
.price-normal { font-size: 0.85rem; color: var(--color-muted); }
.trial-limit {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.trial-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

/* === TRAINER === */
.trainer-wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.trainer-img {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
}
.trainer-info { flex: 1; }
.trainer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
}
.trainer-ruby {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-left: 0.8rem;
  font-family: var(--font-sans);
}
.trainer-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.stat {
  font-size: 0.85rem;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}
.stat strong {
  color: var(--color-heading);
  font-weight: 500;
}
.trainer-message {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-accent);
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(184, 151, 90, 0.04);
  border-radius: 0 6px 6px 0;
}

@media (max-width: 768px) {
  .trainer-wrap { flex-direction: column; align-items: center; }
  .trainer-img { flex: none; width: 220px; }
  .trainer-info { text-align: center; }
  .trainer-stats { justify-content: center; }
  .trainer-message { text-align: left; }
}

/* === VOICES === */
.section-voices { background: #F5F4F0; }
.voice-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}
.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.voice-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.voice-card-img { height: 280px; overflow: hidden; }
.voice-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.voice-quote {
  padding: 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  line-height: 1.9;
  color: #444;
  border-left: 3px solid var(--color-accent);
  margin: 0;
}

@media (max-width: 768px) {
  .voice-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* === PRICING === */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.pricing-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: box-shadow 0.3s;
}
.pricing-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.06); }
.pricing-card.recommended {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(184, 151, 90, 0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
}
.pricing-label {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
.pricing-amount .yen { font-size: 1.2rem; }
.pricing-amount .per { font-size: 0.85rem; color: var(--color-muted); }
.pricing-detail {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 360px; margin: 2rem auto; }
}

.pricing-trial {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: 12px;
}
.pricing-trial-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}
.pricing-trial-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.pricing-trial-price { margin-bottom: 0.8rem; }
.price-old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.price-new {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-left: 0.5rem;
}
.pricing-trial-limit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

/* === FAQ === */
.section-faq { background: var(--color-bg); }
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  padding: 1.3rem 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}
details[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 1.5rem;
  font-size: 0.88rem;
  line-height: 2;
  color: #666;
}

/* === ACCESS === */
.access-info {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
}
.access-dl dt {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  margin-top: 1.5rem;
}
.access-dl dt:first-child { margin-top: 0; }
.access-dl dd {
  font-size: 0.92rem;
  color: var(--color-heading);
}
.map-note {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .access-info { grid-template-columns: 1fr; }
}

/* === RESERVE === */
.section-reserve {
  position: relative;
  padding: 6rem 0;
}
.reserve-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reserve-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}
.reserve-content {
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
}
.reserve-price {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
}
.price-new-big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-accent);
}
.price-old-sm {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-left: 0.5rem;
}
.reserve-limit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}

.reserve-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.flow-step {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.flow-num {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  margin-right: 0.4rem;
}
.flow-arrow {
  color: var(--color-accent);
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .reserve-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}

/* === FORM === */
.reserve-form {
  max-width: 520px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}
.required {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  font-weight: 500;
}
.optional {
  background: rgba(255,255,255,0.1);
  color: var(--color-muted);
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  transition: border-color 0.3s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent);
}
.form-textarea { resize: vertical; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
}
.btn-submit:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn-submit:disabled { background: #4a7c59; cursor: default; transform: none; }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  line-height: 1.8;
}

.form-success {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(74, 124, 89, 0.15);
  border: 1px solid rgba(74, 124, 89, 0.3);
  border-radius: 8px;
}
.form-success p {
  color: #A8D5BA;
  font-size: 0.88rem;
  line-height: 1.9;
}

.formrun-embed {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
.formrun-embed iframe {
  display: block;
  min-height: 700px;
}

/* Fallback CTA when iframe is blocked */
.formrun-fallback-cta {
  text-align: center;
  padding: 2rem 0;
}
.fallback-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.fallback-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.btn-large {
  padding: 18px 40px !important;
  font-size: 1.05rem !important;
}
.btn-large .btn-sub {
  display: block;
  font-size: 0.78rem;
  margin-top: 6px;
  opacity: 0.85;
}
.fallback-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
}

/* === CLOSING === */
.section-closing {
  background: var(--color-bg-dark);
  padding: 6rem 0;
  text-align: center;
  opacity: 1;
  transform: none;
}
.closing-copy {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}
.closing-logo {
  width: 160px;
  margin: 0 auto 1.5rem;
}
.closing-logo img {
  filter: invert(1);
  opacity: 0.8;
}
.closing-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}
.closing-sub {
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

/* === FOOTER === */
.footer {
  background: #111;
  padding: 2.5rem 0;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.footer-address {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .section-title { font-size: 1.45rem; margin-bottom: 2rem; }
  .fv-headline { font-size: 1.7rem; }
  .fv-content { padding: 5rem 1.5rem 3rem; }
  .fv-logo { width: 140px; }
  .btn-primary { padding: 0.9rem 2rem; font-size: 0.92rem; }
  .container { padding: 0 1.2rem; }
  .closing-copy { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .fv-headline { font-size: 1.4rem; }
  .section-title { font-size: 1.25rem; }
  .nav-cta { font-size: 0.7rem; padding: 0.4rem 1rem; }
  .pricing-amount { font-size: 1.6rem; }
  .price-new-big { font-size: 1.8rem; }
}
