/* Phantom Websites. Design language mirrors phantommerchandise.com:
   true black, lavender accent, Inter light, outlined glow buttons, drifting smoke. */
:root {
  --bg: #000000;
  --card: #0d0d0d;
  --card-2: #111111;
  --card-border: #1e1e1e;
  --text: #ffffff;
  --muted: #9a9a9a;
  --dim: #5c5c5c;
  --accent: #b3a4f0;
  --accent-strong: #9f8df2;
  --accent-soft: rgba(179,164,240,0.08);
  --accent-line: rgba(179,164,240,0.28);
  --live: #7bd88f;
  --radius: 18px;
  --max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

h1, h2 { font-weight: 200; letter-spacing: -0.025em; line-height: 1.06; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.8rem); }
h1 em, h2 em { font-style: italic; color: var(--accent); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); }
h3 { font-weight: 400; font-size: 1.25rem; line-height: 1.3; }
.muted { color: var(--muted); line-height: 1.65; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 999; background: #000; padding: 10px 16px; border: 1px solid var(--accent); border-radius: 8px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wordmark { display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.wordmark b { font-family: 'Jockey One', sans-serif; font-weight: 400; font-size: 1.7rem; letter-spacing: 0.04em; }
.wordmark span { font-size: 0.68rem; letter-spacing: 0.34em; color: var(--accent); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: 'Jockey One', sans-serif; font-size: 1.05rem; letter-spacing: 0.02em; }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links .btn { font-family: 'Inter', sans-serif; font-size: 0.92rem; padding: 10px 20px; }
.nav-toggle { display: none; }

/* ---------- Smoke ---------- */
.smoke { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.smoke-hero { mask-image: linear-gradient(to bottom, black 65%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%); }
.smoke-footer { mask-image: linear-gradient(to top, black 65%, transparent 100%); -webkit-mask-image: linear-gradient(to top, black 65%, transparent 100%); }
.smoke::after { content: ""; position: absolute; inset: 0; background: url('assets/grain.png'); opacity: 0.06; mix-blend-mode: screen; }
.smoke i {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.13), rgba(179,164,240,0.05) 40%, transparent 68%);
  animation: drift 22s ease-in-out infinite alternate; will-change: transform;
}
.smoke i:nth-child(1) { top: 5%; left: -15%; animation-duration: 26s; }
.smoke i:nth-child(2) { top: 35%; right: -20%; animation-duration: 32s; animation-delay: -8s; }
.smoke i:nth-child(3) { bottom: -10%; left: 20%; animation-duration: 24s; animation-delay: -15s; }
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(8vw,-6vh) scale(1.15); }
  100% { transform: translate(-6vw,5vh) scale(0.95); }
}

/* ---------- Badges / eyebrows ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(179,164,240,0.07); border: 1px solid rgba(179,164,240,0.22);
  font-size: 0.9rem; margin-bottom: 26px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(179,164,240,0.9); flex-shrink: 0; }
.dot-live { background: var(--live); box-shadow: 0 0 8px rgba(123,216,143,0.9); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .45; } }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.85); border-radius: 12px;
  font-size: 1rem; font-weight: 400; background: transparent; cursor: pointer;
  box-shadow: 0 0 14px rgba(255,255,255,0.1), inset 0 0 8px rgba(255,255,255,0.04);
  transition: box-shadow .25s, background .25s, border-color .25s, color .25s, transform .25s;
}
.btn:hover { background: rgba(179,164,240,0.1); border-color: var(--accent); box-shadow: 0 0 22px rgba(179,164,240,0.3); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #0a0a0a; font-weight: 500; box-shadow: 0 0 24px rgba(179,164,240,0.35); }
.btn-accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #0a0a0a; box-shadow: 0 0 32px rgba(179,164,240,0.55); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,0.28); box-shadow: none; color: var(--muted); }
.btn-ghost:hover { color: #fff; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-row.center { justify-content: center; }

/* ---------- Hero ---------- */
.hero { overflow-x: clip; position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 48px 80px; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 540px; margin: 24px 0 34px; line-height: 1.65; }
.hero-sub strong { color: #fff; font-weight: 400; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: var(--muted); font-size: 0.9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 15px; height: 15px; color: var(--accent); }

.hero-media { position: relative; height: 540px; }
.browser {
  position: absolute; width: 78%;
  background: #141414; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
  transition: transform .45s ease, box-shadow .45s ease;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #161616; border-bottom: 1px solid #222; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.browser-bar span { margin-left: 10px; flex: 1; font-size: 0.68rem; color: #777; background: #0d0d0d; border-radius: 6px; padding: 4px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.hero-media .b1 { top: 0; left: 0; transform: rotate(-4deg); }
.hero-media .b2 { top: 110px; right: 0; transform: rotate(3deg); z-index: 2; }
.hero-media .phone { position: absolute; bottom: 0; left: 8%; width: 150px; z-index: 3; transform: rotate(-3deg); }
.hero-media .browser:hover { transform: rotate(0) scale(1.03); z-index: 5; box-shadow: 0 36px 80px rgba(0,0,0,0.75), 0 0 34px rgba(179,164,240,0.16); }
.phone {
  border: 1px solid rgba(255,255,255,0.16); border-radius: 26px; padding: 7px; background: #0c0c0c;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}
.phone img { border-radius: 20px; width: 100%; aspect-ratio: 390 / 760; object-fit: cover; object-position: top; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 24px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-group { display: flex; gap: 52px; padding-right: 52px; white-space: nowrap; color: var(--muted); font-size: 1.05rem; }
.marquee-group span::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-right: 52px; vertical-align: middle; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 18px; }
.panel { background: #050505; border: 1px solid #0f0f0f; border-radius: 32px; padding: 80px 64px; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px; position: relative; transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(179,164,240,0.35); }
.card-icon { width: 30px; height: 30px; margin-bottom: 20px; color: var(--accent); }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); line-height: 1.6; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- Problem ---------- */
.problem .card h3 { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--card-border); }
.stat-inline { display: block; font-size: 2.6rem; font-weight: 200; color: var(--accent); letter-spacing: -0.02em; margin-bottom: 14px; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-card { display: block; padding: 0; overflow: hidden; }
.work-card .shot { position: relative; background: #0a0a0a; padding: 26px 26px 0; overflow: hidden; }
.work-card .browser { position: relative; width: 100%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.work-card .phone { position: absolute; right: 22px; bottom: -40px; width: 108px; border-radius: 20px; padding: 5px; z-index: 2; transition: transform .45s ease; }
.work-card .phone img { border-radius: 15px; }
.work-card:hover .browser { transform: translateY(-6px); }
.work-card:hover .phone { transform: translateY(-14px); }
.work-meta { padding: 26px 28px 28px; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; border-top: 1px solid var(--card-border); }
.work-meta h3 { margin-bottom: 6px; }
.work-meta p { color: var(--muted); font-size: 0.93rem; line-height: 1.5; }
.tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; border: 1px solid var(--card-border); color: var(--muted); }
.tag.client { color: var(--live); border-color: rgba(123,216,143,0.3); background: rgba(123,216,143,0.06); }
.tag.spec { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.visit { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; color: var(--muted); font-size: 0.9rem; transition: color .2s; }
.work-card:hover .visit { color: var(--accent); }
.work-note { margin-top: 28px; color: var(--dim); font-size: 0.88rem; text-align: center; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { padding-top: 34px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(179,164,240,0.4); color: var(--accent); font-size: 0.95rem; margin-bottom: 22px;
}
.step .when { display: block; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--card-border); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--accent); }

/* ---------- Included ---------- */
.included { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.included .section-head { position: sticky; top: 120px; margin-bottom: 0; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature { display: flex; gap: 16px; padding: 22px; background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; transition: border-color .3s; }
.feature:hover { border-color: rgba(179,164,240,0.3); }
.feature svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature h3 { font-size: 1.02rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
.price-card { display: flex; flex-direction: column; padding: 44px 40px; border-color: rgba(179,164,240,0.5); box-shadow: 0 0 50px rgba(179,164,240,0.1); }
.price-card:hover { border-color: rgba(179,164,240,0.7); }
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 6px; }
.price { font-size: 4rem; font-weight: 200; letter-spacing: -0.03em; }
.price-unit { color: var(--muted); }
.price-note { color: var(--muted); font-size: 0.93rem; }
.checks { list-style: none; margin: 28px 0 32px; flex-grow: 1; }
.checks li { color: #d6d6d6; line-height: 1.5; padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.checks li::before {
  content: ""; position: absolute; left: 3px; top: 16px; width: 13px; height: 7px;
  border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg);
}
.price-card .btn { width: 100%; }
.price-fine { margin-top: 14px; text-align: center; color: var(--dim); font-size: 0.85rem; }

.compare { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.compare h3 { padding: 28px 30px 20px; }
.compare table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare th, .compare td { text-align: left; padding: 14px 18px; border-top: 1px solid var(--card-border); vertical-align: top; }
.compare th { font-weight: 400; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.compare td:first-child { color: var(--muted); padding-left: 30px; }
.compare th:first-child { padding-left: 30px; }
.compare .us { color: #fff; background: rgba(179,164,240,0.05); }
.compare th.us { color: var(--accent); }
.guarantee { margin: auto 30px 28px; margin-top: 24px; padding: 20px 22px; border-radius: 14px; border: 1px dashed var(--accent-line); background: var(--accent-soft); display: flex; gap: 14px; }
.guarantee svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.guarantee p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.guarantee strong { color: #fff; font-weight: 400; display: block; margin-bottom: 3px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq .section-head { position: sticky; top: 120px; }
.accordion details { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color .2s; }
.accordion details[open] { border-color: rgba(179,164,240,0.3); }
.accordion summary { list-style: none; cursor: pointer; padding: 24px 64px 24px 28px; font-size: 1.06rem; font-weight: 400; position: relative; user-select: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 28px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 200; color: var(--muted); }
.accordion details[open] summary::after { content: "\00d7"; color: var(--accent); }
.accordion details p { padding: 0 28px 24px; color: var(--muted); line-height: 1.7; }

/* ---------- Demo form ---------- */
.demo { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.demo-points { list-style: none; margin: 30px 0; }
.demo-points li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--card-border); color: var(--muted); line-height: 1.55; }
.demo-points li b { color: var(--accent); font-weight: 400; min-width: 22px; }
.contact-lines { display: grid; gap: 10px; color: var(--muted); }
.contact-lines a { display: inline-flex; align-items: center; gap: 10px; transition: color .2s; }
.contact-lines a:hover { color: var(--accent); }
.contact-lines svg { width: 16px; height: 16px; color: var(--accent); }
.form { padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); }
.field label .opt { color: var(--dim); }
.field input, .field textarea, .field select {
  background: #151515; border: 1px solid #262626; border-radius: 10px; padding: 13px 14px; font-size: 0.98rem; font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #555; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(179,164,240,0.15); }
.form .btn { width: 100%; margin-top: 22px; }
.form-fine { margin-top: 14px; text-align: center; color: var(--dim); font-size: 0.84rem; }
.hp { position: absolute; left: -9999px; }
.form-done { text-align: center; padding: 40px 10px; }
.form-done .card-icon { margin: 0 auto 18px; width: 40px; height: 40px; }
.form-done h3 { font-size: 1.6rem; font-weight: 300; margin-bottom: 12px; }
.form-error { margin-top: 14px; color: #f0a4a4; font-size: 0.9rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 170px 24px 40px; text-align: center; overflow: hidden; }
.footer-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.footer h2 { font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 200; margin-bottom: 36px; }
.footer-bottom {
  position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  max-width: var(--max); margin: 120px auto 0; padding: 26px 24px 0; border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted); font-size: 0.9rem;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.sister { color: var(--dim); }
.sister a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { display: none; }

/* ---------- Legal / thanks pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 150px 24px 90px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; font-weight: 400; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .smoke i, .marquee-track, .dot-live { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid, .included, .faq, .demo, .pricing-grid { grid-template-columns: 1fr; gap: 48px; }
  .included .section-head, .faq .section-head { position: static; }
  .hero-media { height: 480px; max-width: 620px; width: 100%; margin: 0 auto; }
  .steps, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav { padding: 12px 20px; }
  .wordmark b { font-size: 1.45rem; }
  .nav-links {
    position: fixed; top: 62px; left: 0; right: 0; flex-direction: column; gap: 22px;
    background: rgba(0,0,0,0.97); padding: 28px 24px 34px; display: none; text-align: center; font-size: 1.3rem;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 26px; height: 2px; background: #fff; display: block; transition: transform .25s, opacity .25s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .wrap { padding: 0 16px; }
  .hero { padding: 116px 16px 56px; min-height: auto; }
  .hero-ctas .btn { width: 100%; }
  .hero-media { height: 330px; }
  .hero-media .b1 { width: 82%; }
  .hero-media .b2 { width: 82%; top: 70px; }
  .hero-media .phone { width: 104px; border-radius: 20px; padding: 5px; }
  .hero-media .phone img { border-radius: 15px; }
  .section { padding: 84px 0; }
  .panel { padding: 48px 20px; border-radius: 24px; }
  .work-grid, .feature-list, .form-grid { grid-template-columns: 1fr; }
  .work-card .shot { padding: 16px 16px 0; }
  .work-card .phone { width: 84px; right: 14px; }
  .work-meta { flex-direction: column; align-items: flex-start; padding: 22px; }
  .price-card { padding: 34px 22px; }
  .compare th, .compare td { padding: 12px 10px; font-size: 0.85rem; }
  .compare td:first-child, .compare th:first-child { padding-left: 16px; }
  .compare h3 { padding: 24px 16px 16px; }
  .guarantee { margin: 20px 16px 20px; }
  .form { padding: 26px 18px; }
  .footer { padding: 120px 16px 110px; }
  .footer-bottom { flex-direction: column; margin-top: 80px; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(110%); transition: transform .3s ease;
  }
  .mobile-cta.show { transform: none; }
  .mobile-cta .btn { padding: 12px 10px; font-size: 0.95rem; }
}
