:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: rgba(23, 37, 33, 0.88);
  --surface-dark-soft: rgba(28, 48, 43, 0.72);
  --text: #201d18;
  --muted: #6c665f;
  --line: rgba(32, 29, 24, 0.1);
  --brand: #1f5a4b;
  --brand-2: #bd7b4b;
  --brand-3: #f3c56a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 24, 17, 0.12);
  --shadow-soft: 0 12px 32px rgba(31, 24, 17, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(243, 197, 106, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(189, 123, 75, 0.20), transparent 26%),
    linear-gradient(180deg, #f8f4ed 0%, #efe7db 38%, #20382f 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  padding: 18px 0 60px;
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 40;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
  padding: 4px;
  box-shadow: var(--shadow-soft);
}

.brand-title {
  font-family: 'Marck Script', cursive;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.72);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), #d69762);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(189, 123, 75, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border: 1px solid rgba(32, 29, 24, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64)),
    radial-gradient(circle at top left, rgba(243, 197, 106, 0.20), transparent 40%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(32, 29, 24, 0.08);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 5px rgba(189, 123, 75, 0.14);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 9ch;
  margin-bottom: 18px;
}

.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 26px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.micro-proof span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(32, 29, 24, 0.06);
}

.hero-note {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(32, 29, 24, 0.06);
  box-shadow: var(--shadow-soft);
}

.mini-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.mini-card strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-visual {
  border-radius: var(--radius-xl);
  padding: 16px;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(243, 197, 106, 0.28), transparent 12%),
    linear-gradient(180deg, #20362f 0%, #132723 100%);
  color: var(--white);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(180deg, #173029 0%, #132721 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floating-map {
  position: absolute;
  inset: 0 0 auto 0;
  height: 42%;
  background:
    radial-gradient(circle at 72% 26%, rgba(243,197,106,0.9), rgba(243,197,106,0.12) 10%, transparent 12%),
    linear-gradient(transparent, transparent),
    repeating-linear-gradient(
      115deg,
      rgba(255,255,255,0.06) 0 1px,
      transparent 1px 34px
    ),
    repeating-linear-gradient(
      25deg,
      rgba(255,255,255,0.05) 0 1px,
      transparent 1px 44px
    );
  opacity: 0.82;
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}

.phone-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
}

.phone-content {
  position: relative;
  z-index: 2;
  margin-top: 110px;
}

.phone-content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 7ch;
  margin-bottom: 14px;
}

.phone-content p {
  max-width: 32ch;
  color: rgba(255,255,255,0.76);
  margin-bottom: 18px;
}

.ugc-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.ugc-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 14px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.ugc-thumb {
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.ugc-item strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.ugc-item span {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

.phone-stat {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.big-number {
  font-size: clamp(4.2rem, 10vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.95);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.trust-card {
  padding: 22px;
  border-radius: 26px;
}

.trust-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.trust-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.section {
  margin-bottom: 28px;
}

.section-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.5);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h3 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.section-head p {
  max-width: 42ch;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.benefit-main {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.28)),
    url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

.benefit-main-card {
  width: min(92%, 480px);
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
}

.benefit-main-card .tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(189, 123, 75, 0.16);
  color: #8e5730;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-main-card h4,
.benefit-side h4,
.step h4,
.quote-card h4 {
  font-size: 1.35rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.benefit-main-card p,
.benefit-side p,
.step p,
.quote-card p,
.creator-card p,
.cta-panel p {
  color: var(--muted);
}

.benefit-side {
  min-height: 420px;
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,244,238,0.96));
  border: 1px solid rgba(32, 29, 24, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31, 90, 75, 0.08);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(32,29,24,0.06);
}

.step-no {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(189,123,75,0.18), rgba(243,197,106,0.32));
  color: #8e5730;
  font-weight: 800;
  margin-bottom: 18px;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.creator-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(32,29,24,0.06);
  box-shadow: var(--shadow-soft);
}

.creator-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.creator-copy {
  padding: 18px;
}

.creator-copy strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.creator-copy small {
  color: #8e5730;
  font-weight: 700;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(32,29,24,0.06);
}

.quote-card .stars {
  color: #c78b45;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}

.quote-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(19,39,33,0.95), rgba(28,56,48,0.92));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,197,106,0.34), transparent 64%);
  right: -80px;
  top: -60px;
}

.cta-copy {
  position: relative;
  z-index: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 10ch;
  margin-bottom: 14px;
}

.cta-copy p {
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  margin-bottom: 20px;
}

.cta-side {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cta-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
}

.cta-list span::before {
  content: "•";
  color: var(--brand-3);
  font-size: 1.25rem;
  line-height: 1;
}

footer {
  padding: 22px 8px 10px;
  color: rgba(255,255,255,0.72);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero,
  .benefits,
  .cta-panel,
  .quotes,
  .creator-grid,
  .steps,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .benefit-main,
  .benefit-side {
    min-height: auto;
  }

  .hero-note {
    grid-template-columns: 1fr;
  }

  .cta-copy h3,
  .section-head h3 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 10px;
  }

  .nav {
    border-radius: 24px;
    padding: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .section-panel {
    padding: 20px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  h1 {
    max-width: 10ch;
  }

  .phone-content {
    margin-top: 96px;
  }

  .ugc-items {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-main-card {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .ugc-items {
    grid-template-columns: 1fr;
  }

  .phone-stat {
    align-items: flex-start;
    flex-direction: column;
  }
}
