:root {
  --bg: #f3f4f8;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --ink: #18161b;
  --ink-soft: #2a2731;
  --muted: #555061;
  --line: #d8dbe4;
  --line-strong: #c8ccd8;
  --brand: #ff641a;
  --brand-dark: #de4f09;
  --brand-ink: #23202a;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(680px 380px at 100% -120px, rgba(255, 100, 26, 0.2), transparent 68%),
    radial-gradient(540px 320px at -80px -140px, rgba(35, 32, 42, 0.12), transparent 72%),
    var(--bg);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  z-index: -2;
}

.bg-orb-a {
  width: 360px;
  height: 360px;
  right: -160px;
  top: -120px;
  background: rgba(255, 100, 26, 0.24);
}

.bg-orb-b {
  width: 280px;
  height: 280px;
  left: -140px;
  top: 160px;
  background: rgba(35, 32, 42, 0.18);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.nav-links,
.desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a,
.desktop-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.nav-links a:hover,
.desktop-nav a:hover {
  color: var(--ink-soft);
  border-color: var(--line);
  background: #fff;
}

.nav-links a.active,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}

.main-content {
  padding: 36px 0 52px;
}

.section {
  margin: 0 0 58px;
}

.hero {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 242, 0.95)),
    radial-gradient(circle at 86% 24%, rgba(255, 100, 26, 0.15), transparent 48%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  min-width: 0;
}

.hero-visual-photo {
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 20px 34px rgba(24, 22, 27, 0.18);
  transform: rotate(-2deg);
}

.hero-visual-photo img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.02);
}

.hero h1,
.section h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.16;
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 56px);
}

.section h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(24px, 2.8vw, 36px);
}

.section h3 {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
}

.hero p {
  max-width: 920px;
}

.trust {
  margin: 6px 0 2px;
  color: #1f2d44;
  font-size: 14px;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 100, 26, 0.22);
  background: rgba(255, 100, 26, 0.08);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 700;
}

.tab-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-chip {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 100, 26, 0.25);
  background: rgba(255, 100, 26, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--brand-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grid {
  display: grid;
  gap: 16px;
}

.two-up {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.three-up {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 26, 0.28);
  box-shadow: 0 16px 34px rgba(24, 22, 27, 0.09);
}

.card-photo {
  margin: -6px -6px 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 145px;
}

.card-photo img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.panel {
  background: var(--surface-soft);
}

.panel-title {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  color: var(--muted);
  margin-bottom: 8px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  border-color: #c24a14;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 18px rgba(255, 100, 26, 0.24);
}

.btn-secondary {
  color: var(--ink-soft);
  background: #fff;
}

.price {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
}

.note {
  margin-top: 16px;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 16, 23, 0.68), rgba(18, 16, 23, 0.08));
}

.photo-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mini-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}

.mini-photo {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 170px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.mini-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: linear-gradient(130deg, #ffffff, #fff8f3);
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: center;
}

.feature-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 190px;
  box-shadow: var(--shadow-soft);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 800;
}

.faq-item p {
  margin: 10px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.footer-wrap {
  padding: 26px 0 22px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: start;
}

.footer-brand-col,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 178px;
  height: auto;
}

.footer-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.footer-muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.footer-list {
  margin: 0;
  padding-left: 16px;
}

.footer-list li {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink-soft);
}

.footer-contact,
small {
  color: var(--muted);
}

.pre-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.pre-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.doc-page {
  background: var(--bg);
}

.doc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px min(4vw, 28px);
}

.doc-back {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  font-size: 13px;
}

.doc-hero {
  padding: 30px 0 10px;
}

.doc-wrap {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.doc-meta {
  color: var(--muted);
}

.doc {
  margin: 18px 0 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

@media (max-width: 980px) {
  .hero {
    padding: 22px;
  }

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

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .desktop-nav {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .main-content {
    padding: 24px 0 38px;
  }

  .section {
    margin-bottom: 42px;
  }

  .mini-photo-row,
  .photo-grid-4 {
    grid-template-columns: 1fr;
  }
}
