:root {
  --bg: #f5f5f2;
  --card: rgba(255,255,255,0.82);
  --card-strong: #ffffff;
  --text: #121212;
  --muted: #6f7177;
  --line: rgba(0,0,0,0.08);
  --accent: #f6942d;
  --accent-dark: #e77f13;
  --shadow: 0 18px 40px rgba(17, 19, 24, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246,148,45,0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(58,150,113,0.12), transparent 26%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 20px 0 40px;
}
.site-shell.narrow { max-width: 920px; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 4px;
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  position: sticky;
  top: 12px;
  z-index: 10;
}
.topbar.compact { position: static; border-radius: 24px; }
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand-name { font-size: 1rem; font-weight: 800; }
.brand-subtitle { font-size: 0.88rem; color: var(--muted); }
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.hero h1, .section-heading h1, .section-heading h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  max-width: 10ch;
}
.hero-text {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 58ch;
  margin: 20px 0 0;
}
.cta-row, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #ffa847);
  color: #fff;
  box-shadow: 0 14px 28px rgba(246,148,45,0.28);
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 0.94rem; }
.button-secondary {
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.hero-point, .stat-card, .feature-card, .step-card, .shot-card, .legal-card, .contact-box {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-point {
  padding: 16px;
  border-radius: 18px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-stack {
  position: relative;
  min-height: 760px;
  width: 100%;
}
.phone {
  width: min(42vw, 320px);
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border: 10px solid rgba(255,255,255,0.55);
}
.phone-main {
  position: absolute;
  left: 2%;
  top: 10px;
  z-index: 2;
}
.phone-right {
  position: absolute;
  right: 0;
  top: 120px;
}

.stats-grid,
.feature-grid,
.gallery,
.steps {
  display: grid;
  gap: 18px;
}
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 4px 0 16px;
}
.stat-card { padding: 24px; border-radius: 24px; }
.stat-card strong { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.stat-card span { color: var(--muted); line-height: 1.6; }

.section { padding: 70px 0 16px; }
.section-alt { padding: 70px 28px 28px; border-radius: var(--radius-xl); background: rgba(255,255,255,0.34); margin-top: 34px; }
.section-heading { margin-bottom: 24px; }
.section-heading h2, .section-heading h1 { font-size: clamp(2rem, 4vw, 3.25rem); max-width: 14ch; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { padding: 24px; border-radius: 24px; }
.feature-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.feature-card p { margin: 0; line-height: 1.7; color: var(--muted); }

.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card { padding: 24px; border-radius: 24px; position: relative; }
.step-card span {
  width: 38px; height: 38px; border-radius: 50%; display: inline-grid; place-items: center;
  background: rgba(246,148,45,0.16); color: var(--accent-dark); font-weight: 800; margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 10px; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.notice {
  margin-top: 20px; padding: 18px 20px; border-radius: 20px; background: rgba(246,148,45,0.12); color: #5c4a29;
  border: 1px solid rgba(246,148,45,0.2);
}

.gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shot-card { padding: 18px; border-radius: 28px; }
.shot-card img { border-radius: 24px; }
.shot-card figcaption { margin-top: 14px; color: var(--muted); line-height: 1.6; }

.legal .section-heading h2,
.legal .section-heading h1,
.contact-box h2 { max-width: none; }
.legal-card {
  padding: 28px;
  border-radius: 28px;
  line-height: 1.8;
}
.legal-card h3, .legal-card h2 { margin-top: 24px; margin-bottom: 10px; }
.legal-card p { margin: 0 0 14px; }
.legal-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.legal-card li + li { margin-top: 8px; }

.contact-box {
  margin-top: 44px;
  border-radius: 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.contact-box p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.standalone-legal { padding-top: 34px; }

@media (max-width: 1080px) {
  .hero, .stats-grid, .feature-grid, .gallery, .steps { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero h1 { max-width: 12ch; }
  .phone-stack { min-height: 680px; }
  .phone-main { left: 10%; }
  .phone-right { right: 10%; top: 140px; }
  .section-heading h2, .section-heading h1 { max-width: 18ch; }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 20px), var(--max)); padding-top: 10px; }
  .topbar { padding: 16px; border-radius: 28px; flex-direction: column; align-items: stretch; }
  .nav { justify-content: flex-start; gap: 16px; }
  .hero, .stats-grid, .feature-grid, .gallery, .steps, .hero-points { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  .phone-stack { min-height: 780px; }
  .phone { width: min(72vw, 320px); }
  .phone-main { left: 0; }
  .phone-right { right: 0; top: 220px; }
  .section-alt { padding: 34px 16px 18px; }
  .contact-box { flex-direction: column; align-items: flex-start; }
  .footer { padding-bottom: 24px; }
}
