/* ============================================================
   Zento — Shared Stylesheet
   ============================================================ */

/* ------------------------------------------------------------------
   1. CSS Custom Properties
------------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --color-blue:        #486AF2;
  --color-blue-light:  #EEF1FF;
  --color-blue-dark:   #3355D4;
  --color-pink:        #E5487A;
  --color-yellow:      #F7C120;
  --color-sky:         #3AA7F5;
  --color-white:       #FDFDFD;
  --color-gray-200:    #E8EAED;
  --color-gray-400:    #C8C8D0;
  --color-gray-600:    #5E5E6E;
  --color-near-black:  #18181B;
  --color-purple:      #7B5EA7;

  /* Feature icon backgrounds */
  --color-yellow-bg:   #FFF5E6;
  --color-yellow-icon: #F7A120;
  --color-pink-bg:     #FFEEF5;
  --color-sky-bg:      #E6F8FF;
  --color-purple-bg:   #F0EEF5;

  /* Typography */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium:  500;
  --font-weight-semibold: 600;
  --font-weight-bold:    700;

  /* Border Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-pill: 999px;

  /* Spacing (8pt grid) */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-8:  64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Layout */
  --container-max: 1140px;
  --container-px:  24px;

  /* Nav */
  --nav-height: 68px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-phone: 0 32px 80px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.14);
}

/* ------------------------------------------------------------------
   2. Reset & Base
------------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-near-black);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------------
   3. Container
------------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ------------------------------------------------------------------
   4. Navigation
------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(253, 253, 253, 0.88);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-color: var(--color-gray-200);
}

.nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.nav-logo {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  letter-spacing: -.5px;
  color: var(--color-near-black);
  line-height: 1;
}

.nav-logo .logo-o {
  color: var(--color-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
  transition: color .18s ease;
}

.nav-links a:hover {
  color: var(--color-near-black);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ------------------------------------------------------------------
   5. Buttons
------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-pill);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .12s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}

.btn:active {
  transform: scale(.97);
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  box-shadow: 0 4px 16px rgba(72, 106, 242, .35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-blue);
  border: 1.5px solid var(--color-blue);
}

.btn-secondary:hover {
  background: var(--color-blue-light);
}

.btn-large {
  padding: 14px 32px;
  font-size: 17px;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--color-near-black);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  text-decoration: none;
  transition: background .18s ease, box-shadow .18s ease, transform .12s ease;
  cursor: pointer;
}

.btn-appstore:hover {
  background: #2a2a2e;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.btn-appstore:active {
  transform: scale(.97);
}

.btn-appstore .appstore-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

.btn-appstore .appstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-appstore .appstore-text .appstore-line1 {
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: .3px;
  opacity: .85;
}

.btn-appstore .appstore-text .appstore-line2 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  letter-spacing: -.2px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #fff;
  color: var(--color-blue);
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .12s ease;
}

.btn-white .appstore-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-blue);
}

.btn-white .appstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-white .appstore-text .appstore-line1 {
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: .3px;
  color: var(--color-blue);
  opacity: .8;
}

.btn-white .appstore-text .appstore-line2 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-blue);
  letter-spacing: -.2px;
}

.btn-white:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.btn-white:active {
  transform: scale(.97);
}

/* ------------------------------------------------------------------
   6. Section Scaffolding
------------------------------------------------------------------ */
section {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: .4px;
  text-transform: uppercase;
  background: var(--color-blue-light);
  color: var(--color-blue);
  margin-bottom: var(--space-2);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--color-near-black);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--color-gray-600);
  max-width: 520px;
  margin-inline: auto;
}

/* ------------------------------------------------------------------
   7. Hero Section
------------------------------------------------------------------ */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-10));
  padding-bottom: var(--space-12);
  background: linear-gradient(145deg, var(--color-blue-light) 0%, #f5f3ff 40%, #fdf9ff 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #fff;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-600);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--color-near-black);
  margin-bottom: var(--space-2);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-blue);
}

.hero-sub {
  font-size: 18px;
  color: var(--color-gray-600);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-link {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .18s ease;
}

.hero-link:hover {
  gap: 9px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ------------------------------------------------------------------
   8. Phone Frame (CSS Mockup)
------------------------------------------------------------------ */
.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--color-near-black);
  border-radius: 44px;
  padding: 14px 12px 12px;
  box-shadow: var(--shadow-phone);
  flex-shrink: 0;
}

/* Notch / Dynamic Island */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: var(--color-near-black);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* Side buttons */
.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 56px;
  background: #333;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 64px 0 #333;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f2f3f7;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Screen header */
.screen-header {
  background: var(--color-blue);
  padding: 42px 16px 16px;
  flex-shrink: 0;
}

.screen-header-title {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 2px;
}

.screen-header-sub {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  font-weight: var(--font-weight-medium);
}

.screen-body {
  flex: 1;
  overflow: hidden;
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Order cards inside phone */
.order-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}

.order-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.order-card-title {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-near-black);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .2px;
  flex-shrink: 0;
  margin-left: 6px;
}

.order-badge.confirmed  { background: #E6F9F0; color: #1A8C4E; }
.order-badge.in-prep    { background: #FFF3E0; color: #C25F00; }
.order-badge.pending    { background: #FFF5E6; color: #B36200; }
.order-badge.open       { background: var(--color-blue-light); color: var(--color-blue); }

.order-card-sub {
  font-size: 9.5px;
  color: var(--color-gray-600);
}

/* Screen tab bar */
.screen-tabbar {
  background: #fff;
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 10px;
  flex-shrink: 0;
}

.screen-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 44px;
}

.screen-tab-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gray-400);
}

.screen-tab-icon.active-icon {
  color: var(--color-blue);
}

.screen-tab-label {
  font-size: 8px;
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
}

.screen-tab.active .screen-tab-label {
  color: var(--color-blue);
  font-weight: var(--font-weight-semibold);
}

.screen-tab-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-blue);
  margin-top: -2px;
}

/* Dark phone variant */
.phone-frame.phone-dark .phone-screen {
  background: #1a1a2e;
}

.phone-frame.phone-dark .screen-body {
  padding: 10px;
}

/* ------------------------------------------------------------------
   9. Screenshot Phone variants
------------------------------------------------------------------ */
.screenshots-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-row::-webkit-scrollbar {
  display: none;
}

.screenshots-row .phone-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.screenshot-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-600);
  text-align: center;
}

.screenshots-row .phone-wrap.center-phone {
  transform: scale(1.06);
  transform-origin: bottom center;
  position: relative;
  z-index: 2;
}

.screenshots-row .phone-wrap.center-phone .phone-frame {
  box-shadow: 0 40px 100px rgba(0,0,0,.28), 0 10px 30px rgba(0,0,0,.16);
}

/* Weekly plan screen */
.plan-screen-header {
  background: #1a1a2e;
  padding: 42px 14px 14px;
  flex-shrink: 0;
}

.plan-screen-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 2px;
}

.plan-screen-sub {
  font-size: 11px;
  color: rgba(255,255,255,.6);
}

.plan-body {
  flex: 1;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #1a1a2e;
}

.plan-day-label {
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.plan-event {
  border-radius: 6px;
  padding: 7px 10px;
}

.plan-event-title {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: #fff;
}

.plan-event-sub {
  font-size: 9.5px;
  opacity: .75;
  color: #fff;
}

.plan-event.blue-event   { background: rgba(72,106,242,.35); border-left: 3px solid #486AF2; }
.plan-event.pink-event   { background: rgba(229,72,122,.25); border-left: 3px solid #E5487A; }
.plan-event.yellow-event { background: rgba(247,193,32,.25); border-left: 3px solid #F7C120; }
.plan-event.sky-event    { background: rgba(58,167,245,.25); border-left: 3px solid #3AA7F5; }

.plan-screen-tabbar {
  background: #252540;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 10px;
  flex-shrink: 0;
}

.plan-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 44px;
}

.plan-tab-label {
  font-size: 8px;
  font-weight: var(--font-weight-medium);
  color: rgba(255,255,255,.45);
}

.plan-tab.active .plan-tab-label {
  color: var(--color-sky);
}

/* Customers screen */
.customers-screen-header {
  background: #fff;
  padding: 42px 14px 12px;
  border-bottom: 1px solid var(--color-gray-200);
  flex-shrink: 0;
}

.customers-screen-title {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--color-near-black);
}

.customers-search {
  margin-top: 8px;
  background: var(--color-gray-200);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--color-gray-600);
}

.customers-body {
  flex: 1;
  overflow: hidden;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.customer-row {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-gray-200);
}

.customer-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  flex-shrink: 0;
}

.customer-info {
  flex: 1;
  min-width: 0;
}

.customer-name {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-near-black);
}

.customer-detail {
  font-size: 9.5px;
  color: var(--color-gray-600);
}

/* ------------------------------------------------------------------
   10. Features Grid
------------------------------------------------------------------ */
.features-section {
  background: var(--color-white);
  padding: var(--space-12) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.feature-card {
  background: #fff;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-near-black);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.feature-live-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #4E8B63;
  background: #e8f5ec;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-600);
  background: var(--color-gray-200);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-card-soon {
  opacity: 0.85;
}

.feature-card-soon:hover {
  opacity: 1;
}

/* ------------------------------------------------------------------
   11. How It Works
------------------------------------------------------------------ */
.howitworks-section {
  background: var(--color-blue-light);
  padding: var(--space-12) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-near-black);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}

.step-card p {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.65;
}

/* ------------------------------------------------------------------
   12. Screenshots Section
------------------------------------------------------------------ */
.screenshots-section {
  background: var(--color-white);
  padding: var(--space-12) 0;
  overflow: hidden;
}

/* ------------------------------------------------------------------
   13. Testimonials
------------------------------------------------------------------ */
.testimonials-section {
  background: var(--color-blue-light);
  padding: var(--space-12) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 16px;
  color: var(--color-near-black);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--color-blue);
  line-height: .8;
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  opacity: .5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-blue);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-near-black);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--color-gray-600);
}

/* ------------------------------------------------------------------
   14. CTA Section
------------------------------------------------------------------ */
.cta-section {
  background: var(--color-blue);
  padding: var(--space-12) 0;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.3);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: #fff;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: var(--font-weight-bold);
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  line-height: 1.65;
}

/* ------------------------------------------------------------------
   15. Footer
------------------------------------------------------------------ */
.footer {
  background: var(--color-near-black);
  padding: var(--space-6) 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  letter-spacing: -.4px;
}

.footer-logo .logo-o {
  color: var(--color-blue);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: rgba(255,255,255,.55);
  transition: color .18s ease;
}

.footer-links a:hover {
  color: rgba(255,255,255,.9);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ------------------------------------------------------------------
   16. Animations
------------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in:nth-child(2) { transition-delay: .08s; }
.fade-in:nth-child(3) { transition-delay: .16s; }
.fade-in:nth-child(4) { transition-delay: .24s; }
.fade-in:nth-child(5) { transition-delay: .32s; }
.fade-in:nth-child(6) { transition-delay: .40s; }

/* ------------------------------------------------------------------
   17. Inner Page Styles (privacy, support)
------------------------------------------------------------------ */
.inner-hero {
  padding-top: calc(var(--nav-height) + var(--space-10));
  padding-bottom: var(--space-8);
  background: var(--color-blue-light);
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: var(--font-weight-bold);
  letter-spacing: -.7px;
  color: var(--color-near-black);
  margin-bottom: 12px;
}

.inner-hero p {
  font-size: 18px;
  color: var(--color-gray-600);
  max-width: 520px;
  margin-inline: auto;
}

.inner-content {
  max-width: 760px;
  margin-inline: auto;
  padding: var(--space-10) var(--container-px);
}

.inner-content h2 {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-near-black);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  letter-spacing: -.2px;
}

.inner-content h2:first-child {
  margin-top: 0;
}

.inner-content p {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.inner-content ul {
  list-style: disc;
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
}

.inner-content ul li {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 4px;
}

.inner-content a {
  color: var(--color-blue);
  font-weight: var(--font-weight-medium);
}

.inner-content a:hover {
  text-decoration: underline;
}

.inner-content .effective-date {
  display: inline-block;
  font-size: 14px;
  color: var(--color-gray-600);
  background: var(--color-gray-200);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-6);
}

.faq-item {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-near-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  user-select: none;
  transition: background .15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: var(--font-weight-regular);
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--color-blue-light);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* Contact support box */
.contact-box {
  background: var(--color-blue-light);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  margin-top: var(--space-6);
}

.contact-box h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-near-black);
  margin-bottom: 8px;
}

.contact-box p {
  font-size: 16px;
  color: var(--color-gray-600);
  margin-bottom: var(--space-3);
}

.contact-box .contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  transition: background .18s ease, box-shadow .18s ease;
}

.contact-box .contact-email:hover {
  background: var(--color-blue-dark);
  box-shadow: 0 4px 16px rgba(72,106,242,.4);
  text-decoration: none;
}

.response-note {
  margin-top: 10px;
  font-size: 13px !important;
  color: var(--color-gray-600) !important;
  margin-bottom: 0 !important;
}

/* ------------------------------------------------------------------
   18. Responsive — Tablet (≤ 900px)
------------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: none;
    margin-inline: auto;
  }

  .hero-sub {
    max-width: 480px;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .footer-links {
    justify-content: center;
  }
}

/* ------------------------------------------------------------------
   19. Responsive — Mobile (≤ 600px)
------------------------------------------------------------------ */
@media (max-width: 600px) {
  :root {
    --nav-height: 60px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-6));
    padding-bottom: var(--space-8);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 16px;
  }

  .inner-hero h1 {
    font-size: 28px;
  }

  .btn-large {
    padding: 13px 26px;
    font-size: 16px;
  }

  .screenshots-row {
    gap: var(--space-2);
    padding-inline: var(--container-px);
  }

  .screenshots-row .phone-wrap.center-phone {
    transform: scale(1);
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .nav-cta .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* ------------------------------------------------------------------
   Real screenshot support
------------------------------------------------------------------ */

/* Nav logo image */
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

/* Phone frame without Dynamic Island notch (used with real screenshots) */
.phone-frame--real::before {
  display: none;
}

/* Screenshot image fills the phone screen exactly */
.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: inherit;
}
