@import url("https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&display=swap");

:root {
  --cream: #f8f5ee;
  --cream-2: #eee9df;
  --ink: #17172a;
  --muted: #6f7083;
  --line: #ddd6ca;
  --gold: #b8960c;
  --gold-light: #d4af37;
  --white: #fffdf8;
  --dark: #10101d;
  --dark-2: #1a1a2a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Castoro, Georgia, serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.92);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 74px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-links a,
.lang-switch a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 16px;
  padding: 8px 10px;
  text-decoration: none;
}

.nav-links a:hover,
.lang-switch a:hover,
.nav-links a.active,
.lang-switch a.active {
  border-color: var(--line);
  color: var(--gold);
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 74px);
  padding: 74px 24px 48px;
}

.hero-actions-note {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 24px;
}

.lead {
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 30px);
  margin: 24px 0 0;
  max-width: 690px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 18px;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
}

.button.primary {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #070707;
}

.button.store {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.hero-media {
  align-items: end;
  display: grid;
  justify-content: center;
}

.phone-frame {
  background: #0f0f19;
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(23, 23, 42, 0.22);
  max-width: 360px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: 100%;
}

.phone-frame img {
  border-radius: 28px;
  display: block;
  height: auto;
  width: 100%;
}

.gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 36px;
}

.gallery .phone-frame {
  max-width: none;
  padding: 8px;
}

.gallery figure {
  display: grid;
  gap: 14px;
  margin: 0;
  text-align: center;
}

.gallery figcaption {
  color: var(--ink-soft, #6b6356);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band {
  border-top: 1px solid var(--line);
  padding: 72px 24px;
}

.band.dark {
  background: var(--dark);
  color: var(--cream);
}

.inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-head {
  max-width: 760px;
}

.section-head .lead {
  font-size: clamp(20px, 2vw, 26px);
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.feature-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.feature,
.legal-card,
.quote-card,
.price-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature p,
.legal-card p,
.quote-card p,
.price-card p,
.faq-item p {
  color: var(--muted);
  margin: 10px 0 0;
}

.feature-kicker {
  color: var(--gold);
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.dark .feature {
  background: var(--dark-2);
  border-color: rgba(212, 175, 55, 0.22);
}

.dark .feature p {
  color: #c7c3ba;
}

.product-flow {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
}

.phone-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phone-row .phone-frame {
  max-width: none;
}

.step-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  padding: 0 0 16px;
}

.step-number {
  align-items: center;
  background: var(--gold-light);
  border-radius: 50%;
  color: #080808;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.step p {
  color: var(--muted);
  margin: 6px 0 0;
}

.trust-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  padding: 22px;
}

.trust-strip strong {
  color: var(--gold);
  display: block;
  font-size: 24px;
}

.trust-strip span {
  color: var(--muted);
  display: block;
  font-size: 15px;
  margin-top: 4px;
}

.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.price {
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
  margin-top: 18px;
}

.price small {
  color: var(--muted);
  font-size: 17px;
}

.badge {
  background: #fff4cf;
  border: 1px solid #eadcae;
  border-radius: 999px;
  color: #6d5700;
  display: inline-flex;
  font-size: 14px;
  padding: 5px 10px;
}

.quote-card {
  background: transparent;
}

.quote-card p {
  color: var(--cream);
  font-size: 23px;
}

.quote-card span {
  color: #c7c3ba;
  display: block;
  margin-top: 14px;
}

.legal-links {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.legal-card {
  display: block;
  text-decoration: none;
}

.legal-shell {
  margin: 0 auto;
  max-width: 860px;
  padding: 58px 24px 88px;
}

.legal-title {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 24px;
}

.updated {
  color: var(--gold);
  font-size: 18px;
  margin: 0 0 14px;
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.legal-content h2 {
  font-size: 31px;
  margin-top: 42px;
}

.legal-content h3 {
  margin-top: 26px;
}

.legal-content p,
.legal-content li {
  color: #3c3c4d;
  font-size: 18px;
}

.legal-content ul {
  padding-left: 24px;
}

.notice {
  background: #fff9e8;
  border: 1px solid #eadcae;
  border-radius: 8px;
  color: #4d4325;
  margin: 28px 0;
  padding: 18px 20px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 24px;
}

.footer .inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

.footer a {
  color: var(--gold);
  margin-left: 12px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    min-height: 60px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .brand img {
    height: 36px;
  }

  .nav-links {
    flex-wrap: nowrap;
    gap: 4px;
  }

  .nav-links a:not([data-lang]) {
    display: none;
  }

  .nav-links a[data-lang] {
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 6px 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
  }

  .hero-media {
    justify-content: start;
  }

  .phone-frame {
    max-width: 300px;
  }

  .feature-grid,
  .feature-grid.two,
  .legal-links,
  .pricing-grid,
  .faq-grid,
  .trust-strip,
  .product-flow {
    grid-template-columns: 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 40px;
  }
}
