/* =====================================================================
   ONO Landing Page Styles
   Extends styles.css (base variables defined there)
   ===================================================================== */

/* --- Reset / Body ---------------------------------------------------- */
.landing-body {
  background: var(--bg);
}

/* --- Layout ---------------------------------------------------------- */
.land-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Nav ------------------------------------------------------------- */
.land-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,247,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.land-nav-inner {
  display: flex;
  align-items: center;
  height: 60px;
}
.land-brand {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* --- Buttons (landing variants) ------------------------------------- */
.btn-coral {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(255,107,94,0.35);
}
.btn-coral:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-coral:active { transform: translateY(0); }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--brand); background: #fff3f2; }

/* --- Hero ------------------------------------------------------------ */
.land-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  background: rgba(255,107,94,0.1);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink);
}
.hero-h1 .coral { color: var(--brand); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.badge svg { color: var(--brand); flex-shrink: 0; }

/* hero decorative blob */
.hero-blob {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,107,94,0.12), rgba(255,107,94,0) 70%);
  pointer-events: none;
}

/* --- Sections ------------------------------------------------------- */
.land-section {
  padding: 80px 0;
}
.section-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 48px;
  color: var(--ink);
  text-align: center;
}
.section-h2.left { text-align: left; }

/* --- How it works --------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 4px 24px rgba(31,36,48,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31,36,48,0.11);
}
.step-num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.step-card p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* --- Trust & Safety ------------------------------------------------- */
.trust-section {
  background: linear-gradient(135deg, #fff3f2 0%, #fff7f4 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust-copy .section-label { margin-bottom: 8px; }
.trust-copy .section-h2 { margin-bottom: 32px; }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,107,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-list strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.trust-list p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* mock card stack */
.trust-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-card-stack {
  position: relative;
  width: 300px;
  height: 340px;
}
.trust-mock-card {
  position: absolute;
  width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(31,36,48,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-back-2 {
  top: 0;
  left: 40px;
  transform: rotate(-8deg);
  opacity: 0.5;
  z-index: 1;
}
.card-back-1 {
  top: 12px;
  left: 20px;
  transform: rotate(-4deg);
  opacity: 0.75;
  z-index: 2;
}
.card-front {
  top: 24px;
  left: 0;
  transform: rotate(0deg);
  z-index: 3;
}
.mock-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
}
.mock-lines { display: flex; flex-direction: column; gap: 6px; }
.mock-line {
  height: 12px;
  background: var(--line);
  border-radius: 6px;
}
.mock-line.thin { height: 9px; }
.mock-line.w40 { width: 40%; }
.mock-line.w50 { width: 50%; }
.mock-line.w55 { width: 55%; }
.mock-line.w60 { width: 60%; }
.mock-line.w65 { width: 65%; }
.mock-line.w70 { width: 70%; }
.mock-line.w80 { width: 80%; }
.mock-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  align-self: flex-start;
}
.mock-badge.verified { background: #e5f6ec; color: #2f9e64; }
.mock-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-chip {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 8px;
}
.mock-chip.coral { background: rgba(255,107,94,0.12); color: var(--brand-dark); }
.mock-chip.green { background: #e5f6ec; color: #2f9e64; }
.mock-stars {
  font-size: .8rem;
  color: #f5a623;
  font-weight: 700;
}
.mock-rating { color: var(--ink); }
.mock-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.mock-btn-pass, .mock-btn-like {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
}
.mock-btn-pass { background: var(--bg); color: var(--muted); border: 1px solid var(--line); }
.mock-btn-like { background: var(--brand); color: #fff; }

/* --- FAQ ------------------------------------------------------------- */
.faq-wrap { max-width: 720px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s;
}
.faq-item summary:hover { background: var(--bg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px;
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Final CTA ------------------------------------------------------- */
.land-cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, #ff8c82 100%);
  text-align: center;
  padding: 80px 20px;
}
.cta-h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.land-cta-section .btn-coral {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.land-cta-section .btn-coral:hover { background: #fff3f2; }

/* --- Footer ---------------------------------------------------------- */
.land-footer {
  background: var(--ink);
  padding: 32px 20px;
}
.land-footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.land-footer .land-brand { color: var(--brand); text-decoration: none; font-size: 1.2rem; }
.foot-legal {
  flex: 1;
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
  min-width: 200px;
}
.foot-copy {
  font-size: .78rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* --- Responsive ------------------------------------------------------ */
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-visual { display: none; }
  .section-h2 { margin-bottom: 32px; }
  .land-section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-coral, .hero-ctas .btn-ghost { text-align: center; }
  .land-footer-inner { flex-direction: column; text-align: center; }
  .foot-legal { min-width: unset; }
}
