:root {
  --bg: #fff5f0;
  --bg-alt: #ffe8dc;
  --accent: #ff8c42;
  --accent-soft: rgba(255, 140, 66, 0.12);
  --text: #2d2d2d;
  --muted: #666666;
  --border: #ffd4c4;
  --danger: #ff4b5c;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #ffffff 0%, #fff5f0 50%, #ffe8dc 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(255,245,240,0.92));
  border-bottom: 1px solid rgba(255,140,66,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #ff8c42;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255,140,66,0.25);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title span:first-child {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.nav-title span:last-child {
  font-size: 0.73rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,140,66,0.08);
}

.badge {
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255,140,66,0.1);
  border: 1px solid rgba(255,140,66,0.2);
  color: var(--muted);
}

/* LANGUAGE SELECTOR */
.lang-selector {
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid rgba(255,140,66,0.25);
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.lang-selector:hover {
  background: rgba(255,140,66,0.05);
  border-color: rgba(255,140,66,0.4);
}

.lang-selector:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,180,0,0.15);
}

.lang-selector option {
  background: white;
  color: var(--text);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8c42, #ff6b1f);
  color: white;
  box-shadow: 0 16px 30px rgba(255,140,66,0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(255,140,66,0.4);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,140,66,0.3);
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(255,140,66,0.08);
  color: var(--text);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* HERO */
#hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255,140,66,0.08);
  border: 1px solid rgba(255,140,66,0.15);
  margin-bottom: 0.9rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,180,0,0.25);
}

h1 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

h1 span.highlight {
  background: linear-gradient(135deg, #ffb400, #ff6b1f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.hero-bullets span.bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffd66b;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* HERO PHONE MOCK */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 260px;
  border-radius: 36px;
  padding: 0.8rem;
  background: linear-gradient(to bottom, #fff5f0, #ffe8dc);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,140,66,0.2);
  position: relative;
}

.phone-notch {
  width: 40%;
  height: 12px;
  border-radius: 0 0 99px 99px;
  background: #ffe8dc;
  margin: 0 auto 0.7rem;
}

.phone-screen {
  border-radius: 28px;
  background: radial-gradient(circle at top, #ff8c42 0, #ff6b1f 25%, #2d2d2d 65%);
  padding: 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.phone-alert {
  background: rgba(5,5,12,0.8);
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
  font-size: 0.68rem;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.phone-alert-title {
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-alert-badge {
  font-size: 0.62rem;
  padding: 0.08rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,75,92,0.2);
  color: #ffd4d8;
  border: 1px solid rgba(255,75,92,0.6);
}

.phone-alert-text {
  color: #e4e5ff;
  opacity: 0.85;
}

.phone-lock-status {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(5,5,12,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.phone-lock-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.35);
}

.phone-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.78);
  margin-top: 1rem;
}

.phone-footer span {
  opacity: 0.85;
}

/* GENERIC SECTION STYLES */
section {
  padding: 2.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

section:nth-of-type(even) {
  background: var(--bg-alt);
}

section:nth-of-type(odd) {
  background: var(--bg);
}

.section-header {
  margin-bottom: 1.6rem;
  max-width: 680px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-description {
  color: var(--muted);
  font-size: 0.9rem;
}

/* GRID HELPERS */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(255,140,66,0.1);
  font-size: 0.9rem;
}

.card-soft {
  background: rgba(255,245,240,0.9);
  border-style: dashed;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
}

.pill-label {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,140,66,0.1);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* LISTS */
.list-check {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.list-check li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.list-check li::before {
  content: "✔";
  font-size: 0.8rem;
  margin-top: 0.2rem;
  color: #4ade80;
}

.list-danger li::before {
  content: "!";
  color: var(--danger);
  font-weight: 700;
}

/* STATS SECTION */
.stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(255,140,66,0.1);
  font-size: 0.82rem;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.stat small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: #6c7395;
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-top: 0.8rem;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(255,140,66,0.15);
  padding: 0.55rem 0.6rem;
  text-align: left;
}

.comparison-table th {
  background: rgba(255,140,66,0.08);
  font-weight: 600;
  font-size: 0.84rem;
}

.text-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,140,66,0.15);
  padding: 0.7rem 0;
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* TESTIMONIALS */
.testimonial {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

.testimonial-author {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #e5e5ff;
}

/* FOOTER */
footer {
  padding: 1.5rem 0 2.5rem;
  background: var(--bg-alt);
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255,140,66,0.2);
}

footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid {
    gap: 1.8rem;
  }
  .nav-links {
    gap: 0.5rem;
  }
  .nav-links a {
    display: none;
  }
  .lang-selector {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }
  header {
    position: static;
  }
  #hero {
    padding-top: 2rem;
  }
}
