/* ─── ShipChip · Landing styles (warm orange refresh) ───────────────────── */

:root {
  /* Brand palette — match the mobile app */
  --primary:        #FF7A1A;   /* warm hot orange */
  --primary-deep:   #E55F00;   /* hover */
  --accent:         #FF6B6B;   /* coral */
  --peach:          #FFB088;
  --peach-tint:     #FFE9D9;
  --sand:           #F4D06F;
  --trust:          #2D9CDB;   /* trust blue */
  --trust-soft:     #E0F2FE;
  --success:        #22C55E;
  --success-soft:   #DCFCE7;

  --bg:             #FFF8F2;   /* warm cream */
  --card:           #FFFFFF;
  --line:           #F4E2D2;
  --text:           #2A1810;   /* warm near-black */
  --muted:          #7A5D4D;
  --subtle:         #B59685;

  --shadow-sm:   0 1px 3px rgba(42, 24, 16, 0.06);
  --shadow:      0 8px 28px rgba(229, 95, 0, 0.12);
  --shadow-lg:   0 24px 60px rgba(229, 95, 0, 0.20);

  --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-pill: 999px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Heebo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; }
a { color: var(--primary-deep); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  font-family: inherit;
}
.btn-sm { padding: 10px 18px; font-size: 13px; min-height: 40px; }
.btn-lg { padding: 16px 30px; font-size: 16px; min-height: 52px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(255,122,26,0.35); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 8px 22px rgba(229,95,0,0.45); transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; color: var(--primary-deep); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--peach-tint); color: var(--primary-deep); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); padding: 12px 22px; border-radius: var(--r-md); font-weight: 600; font-size: 14px; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); color: #fff; }

.eyebrow {
  display: inline-block;
  background: var(--peach-tint);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 13px;
}
.chip-green { background: var(--success-soft); color: #15803D; }
.chip-trust { background: var(--trust-soft); color: #1E6FA8; }
.chip-sand  { background: #FEF3C7; color: #92580A; }

/* ─── Nav ────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 95, 0, 0.08);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 900; font-size: 22px;
  letter-spacing: -0.4px;
}
.brand img { width: 38px; height: 38px; }
.brand-light { color: #fff; }
.brand-light img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: inline-flex; align-items: center;
  background: var(--peach-tint);
  border-radius: var(--r-pill);
  padding: 4px;
  font-size: 13px; font-weight: 700;
  border: 0;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
  min-height: 32px;
}
.lang-toggle button.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,122,26,0.4);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(255, 176, 136, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(255, 107, 107, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #FFF3E8 0%, var(--bg) 100%);
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  margin: 12px 0 14px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--text);
}
.hero-text h1 .accent { color: var(--primary); }
.hero-sub {
  color: var(--primary-deep);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 21px);
  margin: 0 0 18px;
}
.lead { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 560px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 32px;
  color: var(--muted); font-size: 14px; font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero phone mockup */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-frame {
  width: 320px;
  background: linear-gradient(180deg, #2A1810 0%, #1a0f08 100%);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}
.phone-frame:hover { transform: rotate(0deg) scale(1.02); }
.phone-screen {
  background: linear-gradient(180deg, #FFF3E8 0%, #FFE9D9 100%);
  border-radius: 28px;
  padding: 20px;
  min-height: 480px;
  display: flex; flex-direction: column; gap: 14px;
}
.phone-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.phone-card-h { font-weight: 800; color: var(--text); margin-bottom: 12px; font-size: 15px; }
.phone-card-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 5px 0;
  border-bottom: 1px dashed #FBE5D0;
}
.phone-card-row:last-of-type { border-bottom: 0; }
.phone-card-row span { color: var(--muted); }
.phone-card-row strong { color: var(--text); }
.phone-cta {
  margin-top: 12px;
  width: 100%; padding: 12px;
  background: var(--primary); color: #fff;
  border: 0; border-radius: var(--r-md);
  font-weight: 700; font-size: 13px;
  cursor: pointer;
}
.phone-eco {
  display: flex; align-items: center; gap: 8px;
  background: var(--success-soft); color: #15803D;
  padding: 10px 14px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 700;
}

/* ─── Sections ────────────────────────────────────────────────────────────── */

.section { padding: 80px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-h { text-align: center; margin-bottom: 48px; }
.section-h h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  margin: 8px 0 0;
  letter-spacing: -0.6px;
  color: var(--text);
}
.section-h p { color: var(--muted); margin: 12px auto 0; max-width: 600px; }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.step-num {
  position: absolute; top: -16px; inset-inline-end: 28px;
  width: 36px; height: 36px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
  box-shadow: 0 4px 12px rgba(255,122,26,0.4);
}
.step-emoji { font-size: 48px; margin-bottom: 16px; }
.step h3 { margin: 0 0 8px; font-size: 19px; color: var(--text); }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Features */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--peach); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { margin: 0 0 6px; font-size: 16px; color: var(--text); font-weight: 800; }
.feature p  { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.feature.feature-eco { border-color: var(--success); background: linear-gradient(135deg, #F0FDF4 0%, #FFF8F2 100%); }
.feature.feature-trust { border-color: var(--trust); background: linear-gradient(135deg, var(--trust-soft) 0%, #FFF8F2 100%); }

/* Eco section */
.eco-banner {
  background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.eco-banner::before {
  content: '';
  position: absolute; top: -60px; inset-inline-end: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
}
.eco-emoji { font-size: 80px; line-height: 1; }
.eco-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
}
.eco-banner p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 720px;
}
@media (max-width: 720px) {
  .eco-banner { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
}

/* Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-mark {
  font-size: 60px; line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: -8px;
}
.testimonial p {
  font-size: 16px; line-height: 1.6;
  margin: 0 0 14px;
  color: var(--text);
}
.testimonial-author {
  color: var(--muted); font-size: 13px; font-weight: 600;
}

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 400; font-size: 26px; color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px; line-height: 1.65;
}

/* CTA section */
.section-cta { padding: 60px 0 90px; }
.cta-card {
  background:
    radial-gradient(ellipse at top right, rgba(255, 107, 107, 0.30) 0%, transparent 50%),
    linear-gradient(135deg, #FF7A1A 0%, #E55F00 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.6px;
}
.cta-card p { color: rgba(255,255,255,0.9); font-size: 17px; margin: 0 0 28px; }

.store-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.store-btn {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #1A0F08;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  min-width: 180px;
  min-height: 56px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.15s, border-color 0.15s;
}
.store-btn:hover { transform: scale(1.04); border-color: #fff; color: #fff; }
.store-sub { font-size: 11px; opacity: 0.75; }
.store-name { font-size: 18px; font-weight: 700; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.footer {
  background: #2A1810;
  color: #fff;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 13px; max-width: 280px; }
.footer h4 {
  margin: 0 0 14px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--peach);
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
}
.footer a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 8px;
}

/* ─── Smooth scroll + reveal ─────────────────────────────────────────────── */

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* LTR adjustments — when document switches to English */
html[dir="ltr"] .step-num { inset-inline-end: auto; left: 28px; }
html[dir="ltr"] .phone-frame { transform: rotate(2deg); }
