/*
Theme Name: Matterport撮影代行LP
Theme URI: https://example.com
Author: syshan株式会社
Author URI: https://syshan.jp
Description: 関東の住宅不動産会社向けMatterport撮影代行サービスLP専用テーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: matterport-lp
Tags: one-page, landing-page, real-estate
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --navy:       #1A2B4A;
  --navy-mid:   #243860;
  --navy-dark:  #0D1625;
  --gold:       #C4A85A;
  --gold-lt:    #D4BC7A;
  --gold-faint: #F9F4E8;
  --off:        #F7F6F3;
  --white:      #ffffff;
  --ink:        #111827;
  --mid:        #4B5563;
  --muted:      #9CA3AF;
  --bdr:        #E5E7EB;
  --bdr-mid:    #D1D5DB;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN',
               'Noto Sans JP', 'Yu Gothic Medium', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.sec  { padding: 88px 0; }
.sec-narrow { padding: 64px 0; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.sec-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.sec-lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  max-width: 600px;
}
.sec-hd         { margin-bottom: 56px; }
.sec-hd.center  { text-align: center; }
.sec-hd.center .sec-lead { margin: 0 auto; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  white-space: nowrap;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
}
.btn-dark    { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-mid); }

.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--off); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,168,90,.3);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,168,90,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--bdr-mid);
  font-weight: 500;
}
.btn-ghost:hover { background: var(--off); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hd-logo { display: flex; align-items: center; gap: 10px; }
.hd-mark {
  width: 30px; height: 30px;
  background: var(--navy);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hd-mark svg { width: 16px; height: 16px; }
.hd-name    { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.hd-sub     { font-size: 10px; font-weight: 400; color: var(--muted); display: block; }
.hd-nav     { display: flex; align-items: center; gap: 10px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,22,37,.97) 40%,
    rgba(13,22,37,.45) 72%,
    rgba(13,22,37,.1) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 60px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,168,90,.12);
  border: 1px solid rgba(196,168,90,.35);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-h1 {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid rgba(196,168,90,.4);
}
.hero-lead {
  font-size: clamp(13px, 1.3vw, 15.5px);
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  margin-bottom: 32px;
  font-style: italic;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.hero-device { display: flex; align-items: center; justify-content: center; }
.hero-device svg {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
}

/* SVG animations */
.scan-dot { animation: sdPulse 2s ease-in-out infinite; }
.scan-dot:nth-child(2) { animation-delay: .5s; }
.scan-dot:nth-child(3) { animation-delay: 1s; }
@keyframes sdPulse {
  0%, 100% { opacity: .3; r: 3; }
  50% { opacity: 1; r: 5; }
}
.scan-line { animation: slSweep 3.5s ease-in-out infinite; }
@keyframes slSweep {
  0%   { transform: translateY(-120px); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(120px); opacity: 0; }
}
.ftag { animation: ftFloat 3s ease-in-out infinite; }
.ftag:nth-child(2) { animation-delay: 1s; }
.ftag:nth-child(3) { animation-delay: 2s; }
@keyframes ftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(196,168,90,.7), transparent);
  animation: slPulse 2s ease-in-out infinite;
}
@keyframes slPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.65); }
}
.scroll-txt {
  font-size: 9px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 22px 0;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-divider { width: 1px; height: 20px; background: var(--bdr); }
.trust-tags    { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-tag {
  font-size: 12px;
  color: var(--mid);
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 4px;
  padding: 5px 12px;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   PAIN / EMPATHY
───────────────────────────────────────── */
.pain { background: #fff; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.pain-card {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-num  { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .06em; }
.pain-ico  {
  width: 44px; height: 44px;
  background: var(--off);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bdr);
}
.pain-ico svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.7; }
.pain-ttl  { font-size: 16px; font-weight: 700; color: var(--ink); }
.pain-body { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ─────────────────────────────────────────
   BENEFIT
───────────────────────────────────────── */
.benefit { background: var(--off); }
.brow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--bdr);
  background: #fff;
}
.brow:last-child { border-bottom: none; }
.brow-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brow-num  { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.brow-ttl  { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--ink); line-height: 1.4; }
.brow-body { font-size: 15px; color: var(--mid); line-height: 1.85; }
.brow-vis  {
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 40px;
  border-left: 1px solid var(--bdr);
}
.brow:nth-child(even) .brow-vis {
  order: -1;
  border-left: none;
  border-right: 1px solid var(--bdr);
}
.stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--gold-faint);
  border: 1px solid rgba(196,168,90,.25);
  border-radius: 6px;
  padding: 8px 16px;
  margin-top: 4px;
}
.stat-num { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.stat-lbl { font-size: 12px; color: var(--mid); font-weight: 500; }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--gold-faint);
  border-top: 1px solid rgba(196,168,90,.25);
  border-bottom: 1px solid rgba(196,168,90,.25);
  padding: 36px 32px;
  text-align: center;
}
.cta-band-ttl { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.cta-band-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ─────────────────────────────────────────
   SERVICE (dark)
───────────────────────────────────────── */
.service-sec {
  background: var(--navy-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.service-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,90,.4), transparent);
}
.service-sec::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,90,.3), transparent);
}
.service-sec .eyebrow    { color: var(--gold); }
.service-sec .sec-title  { color: #fff; }
.service-sec .sec-lead   { color: rgba(255,255,255,.55); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 52px;
}
.svc-card {
  background: rgba(13,22,37,.5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.svc-card:hover { background: rgba(26,43,74,.7); }
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s;
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(196,168,90,.08) 0%, transparent 70%);
  pointer-events: none;
}
.svc-img svg { width: 240px; max-width: 90%; }

.svc-body  { padding: 28px 32px 36px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.svc-step  { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: rgba(196,168,90,.55); text-transform: uppercase; }
.svc-ttl   { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.4; }
.svc-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; flex: 1; }
.svc-arr   { font-size: 11px; font-weight: 700; color: rgba(196,168,90,.5); letter-spacing: .1em; text-transform: uppercase; transition: color .2s, letter-spacing .2s; }
.svc-card:hover .svc-arr { color: var(--gold); letter-spacing: .16em; }
.svc-bg-n  {
  position: absolute;
  bottom: -16px; right: 4px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(255,255,255,.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing { background: #fff; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.price-card {
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.price-card.featured { border-color: var(--gold); border-width: 2px; }
.price-badge {
  position: absolute;
  top: -13px; left: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.price-plan { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.price-amt  { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 12px; color: var(--muted); }
.price-num  { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price-unit { font-size: 13px; color: var(--muted); }
.price-note { font-size: 12px; color: var(--muted); line-height: 1.65; }
.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--bdr);
  padding-top: 2px;
}
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.45;
}
.price-feats li::before {
  content: '';
  width: 17px; height: 17px; min-width: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Ccircle cx='8.5' cy='8.5' r='7.5' fill='none' stroke='%23C4A85A' stroke-width='1.4'/%3E%3Cpath d='M5.5 8.5l2 2 4-4' fill='none' stroke='%23C4A85A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.price-cta-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  background: var(--off);
  border-radius: 8px;
  padding: 18px 24px;
  border: 1px solid var(--bdr);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   FLOW
───────────────────────────────────────── */
.flow { background: var(--off); }
.flow-list {
  max-width: 680px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 23px; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(196,168,90,.1) 100%);
}
.flow-item   { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.flow-num    {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  position: relative; z-index: 1;
}
.flow-body   { padding-top: 8px; }
.flow-tag    {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--gold);
  text-transform: uppercase; background: var(--gold-faint);
  padding: 2px 8px; border-radius: 3px;
  display: inline-block; margin-bottom: 6px;
}
.flow-ttl    { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.flow-desc   { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { background: #fff; }
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item          { border-bottom: 1px solid var(--bdr); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  transition: background .15s; font-family: inherit;
}
.faq-q:hover    { background: var(--off); }
.faq-icon       { width: 20px; height: 20px; min-width: 20px; transition: transform .25s; flex-shrink: 0; }
.faq-a          { display: none; padding: 0 28px 22px; font-size: 14px; color: var(--mid); line-height: 1.85; }
.faq-item.open .faq-a    { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─────────────────────────────────────────
   CLOSING
───────────────────────────────────────── */
.closing {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
}
.closing-ttl {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 14px;
}
.closing-sub    { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 36px; line-height: 1.75; }
.closing-row    { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.closing-row .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
}
.closing-row .btn-outline:hover { background: rgba(255,255,255,.07); }

/* ─────────────────────────────────────────
   CONTACT / FORM
───────────────────────────────────────── */
.contact    { background: var(--off); padding: 88px 0; }
.form-wrap  {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 52px;
  max-width: 680px;
  margin: 0 auto;
}
.form-ttl   { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.form-desc  { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }

.form-tabs  {
  display: flex;
  background: var(--off);
  border-radius: 7px;
  padding: 4px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ftab {
  flex: 1; min-width: 110px;
  padding: 9px 10px; text-align: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  border-radius: 5px; cursor: pointer;
  border: none; background: none;
  transition: all .2s; white-space: nowrap; font-family: inherit;
}
.ftab.active { background: var(--navy); color: #fff; }

.fg     { margin-bottom: 18px; }
.fl     { display: block; font-size: 12px; font-weight: 700; color: var(--mid); margin-bottom: 5px; }
.fl .req { color: #E53E3E; margin-left: 3px; }
.fi, .fs, .fta {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--bdr-mid);
  border-radius: 7px;
  font-size: 14px; color: var(--ink);
  background: #fff;
  transition: border .15s;
  font-family: inherit;
  appearance: none; -webkit-appearance: none;
}
.fi:focus, .fs:focus, .fta:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,.07);
}
.fs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.fta    { min-height: 96px; resize: vertical; line-height: 1.65; }
.frow   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fextra { display: none; }
.fextra.on { display: block; }
.fsub {
  width: 100%; padding: 15px;
  background: var(--navy); color: #fff;
  border: none; border-radius: 7px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background .18s;
  margin-top: 6px; font-family: inherit;
}
.fsub:hover   { background: var(--navy-mid); }
.fnote        { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.65; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.lp-footer    { background: var(--navy-dark); padding: 36px 32px; text-align: center; }
.footer-name  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.footer-note  { font-size: 11px; color: rgba(255,255,255,.22); }

/* ─────────────────────────────────────────
   MOBILE STICKY BAR
───────────────────────────────────────── */
.lp-sticky { display: none; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; padding: 0 24px 64px; }
  .hero-device  { display: none; }
  .lp-hero      { padding-top: 60px; }

  .brow         { grid-template-columns: 1fr; }
  .brow-vis     {
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--bdr);
    order: 0 !important;
    min-height: 220px;
  }
  .brow-text    { padding: 36px 24px; }

  .svc-grid     { grid-template-columns: 1fr; }
  .price-grid   { grid-template-columns: 1fr; }
  .pain-grid    { grid-template-columns: 1fr; }

  .form-wrap    { padding: 28px 20px; }
  .frow         { grid-template-columns: 1fr; }
  .form-tabs    { gap: 4px; }
  .ftab         { min-width: 80px; font-size: 11px; padding: 8px 8px; }

  .closing-row  { flex-direction: column; align-items: center; }
  .hd-nav .btn-ghost { display: none; }

  .lp-sticky {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 10px 16px;
    gap: 8px;
  }
  .lp-sticky a {
    flex: 1; text-align: center;
    padding: 12px 8px;
    font-size: 13px; font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
  }
  .lp-sticky .sp { background: var(--gold); color: #fff; }
  .lp-sticky .ss {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 12px;
  }
  body { padding-bottom: 72px; }
}

@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .lp-header  { padding: 0 20px; }
  .pain-card  { padding: 24px 20px; }
  .svc-body   { padding: 20px 22px 28px; }
  .price-card { padding: 28px 22px; }
  .hd-name    { font-size: 12px; }
  .hd-sub     { display: none; }
}
