:root {
  --bg: #fff7ed;
  --bg-alt: #ffffff;
  --text: #1f2937;
  --muted: #7a675a;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --accent-soft: #ffedd5;
  --border: #fed7aa;
  --shadow-soft: 0 15px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.5rem;
  --radius-md: 0.9rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ed 50%, #ffffff 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.policy-page {
  background: #ffffff;
}

.policy-header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.policy-header img {
  height: 56px;
  width: auto;
  display: inline-block;
}

.policy-content .section-inner {
  max-width: 760px;
  margin: 0 auto;
}

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

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

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

header {
  border-bottom: 1px solid rgba(254, 215, 170, 0.7);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 20;
}

.no-border {
  border-bottom: none;
  background: transparent;
  position: static;
  padding-bottom: 0.5rem;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.nav-logo {
  height: 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  margin: 1.2rem 0 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 40rem;
}

.hero-cta-group {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25);
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--accent-strong);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero-device {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(249, 115, 22, 0.5));
  padding: 1.5rem;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  max-width: 304px;
  margin: 0 auto;
}

.hero-device::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero-device img,
.hero-device video {
  width: 100%;
  border-radius: 1.8rem;
  display: block;
}

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-strong);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.7rem;
  margin: 0.1rem 0 0.7rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 45rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem 1.3rem;
  border: 1px solid rgba(254, 215, 170, 0.6);
  box-shadow: var(--shadow-soft);
}

.feature-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#f97316, rgba(249, 115, 22, 0));
}

.timeline-step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(254, 215, 170, 0.7);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  left: -1.05rem;
  top: 1.1rem;
}

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

.faq-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 215, 170, 0.6);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.faq-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

footer {
  border-top: 1px solid rgba(254, 215, 170, 0.8);
  background: #fff3e3;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    padding-inline: 1rem;
  }
}
