/* ================================================================
   ONVER FOOD — Landing Page Premium
   Design System + Mockups + Responsivo + Animações
   ================================================================ */

/* ── 1. Custom Properties ──────────────────────────────────────── */
:root {
  --of-navy:        #0A192F;
  --of-navy-mid:    #102653;
  --of-navy-light:  #1C3A5E;
  --of-navy-text:   #8892A4;
  --of-white:       #ffffff;
  --of-snow:        #f8fafc;
  --of-gray-50:     #f1f5f9;
  --of-gray-100:    #e2e8f0;
  --of-gray-200:    #cbd5e1;
  --of-gray-400:    #94a3b8;
  --of-gray-600:    #475569;
  --of-gray-800:    #1e293b;
  --of-blue:        #3B82F6;
  --of-blue-light:  #60A5FA;
  --of-blue-pale:   #EFF6FF;
  --of-orange:      #FF5C00;
  --of-orange-end:  #FF3D00;
  --of-orange-soft: #FFF4ED;
  --of-green:       #10B981;
  --of-green-soft:  #ECFDF5;
  --of-cyan:        #06B6D4;
  --of-purple:      #8B5CF6;
  --of-purple-soft: #F3EFFE;
  --of-red:         #EF4444;
  --of-font:        'Manrope', system-ui, -apple-system, sans-serif;
  --of-max:         1400px;
  --of-gutter:      clamp(20px, 5vw, 80px);
  --of-section-pad: clamp(60px, 10vh, 120px);
  --of-radius:      16px;
  --of-radius-lg:   24px;
  --of-radius-xl:   32px;
  --of-shadow:      0 4px 24px rgba(10, 25, 47, 0.06);
  --of-shadow-lg:   0 20px 60px rgba(10, 25, 47, 0.10);
  --of-shadow-xl:   0 32px 80px rgba(10, 25, 47, 0.14);
  --of-trans:       all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Base Reset ─────────────────────────────────────────────── */
*, *::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(--of-font);
  color: var(--of-navy);
  background: var(--of-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── 3. Header ─────────────────────────────────────────────────── */
.of-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--of-trans);
}

.of-header__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: height 300ms ease;
}

.of-header.is-scrolled .of-header__inner { height: 56px; }

.of-header__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
  color: var(--of-navy);
}
.of-header__brand span { color: var(--of-orange); }

.of-header__logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--of-orange), var(--of-orange-end));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 16px;
}

.of-header__nav { display: flex; gap: 8px; }

.of-header__link {
  padding: 8px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--of-gray-600);
  transition: var(--of-trans);
}
.of-header__link:hover { background: var(--of-gray-50); color: var(--of-navy); }

/* ── 4. Sections ───────────────────────────────────────────────── */
.of-section {
  padding: var(--of-section-pad) 0;
  position: relative;
  overflow: hidden;
}

.of-section--cliente { background: var(--of-white); }
.of-section--entregador { background: var(--of-snow); }
.of-section--estabelecimento { background: var(--of-white); }

.of-section__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  min-height: 520px;
}

.of-section__inner--reverse { grid-template-columns: 55fr 45fr; }

.of-section__text { max-width: 560px; }
.of-section__inner--reverse .of-section__text { justify-self: end; }

.of-section__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}

/* ── 5. Typography ─────────────────────────────────────────────── */
.of-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--of-orange);
  margin-bottom: 20px;
}
.of-eyebrow::before {
  content: ''; width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--of-orange), var(--of-orange-end));
}

.of-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--of-navy);
  margin-bottom: 20px;
}

.of-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--of-gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ── 6. Benefits ───────────────────────────────────────────────── */
.of-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 40px;
}

.of-benefit {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--of-gray-800);
}

.of-benefit__icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.of-benefit__icon--orange { background: var(--of-orange-soft); color: var(--of-orange); }
.of-benefit__icon--blue   { background: var(--of-blue-pale);   color: var(--of-blue); }
.of-benefit__icon--green  { background: var(--of-green-soft);  color: var(--of-green); }
.of-benefit__icon--purple { background: var(--of-purple-soft); color: var(--of-purple); }

/* ── 7. CTAs ───────────────────────────────────────────────────── */
.of-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.of-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 32px; border-radius: 16px;
  background: linear-gradient(135deg, var(--of-orange), var(--of-orange-end));
  color: var(--of-white);
  font-family: var(--of-font);
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 61, 0, 0.25);
  transition: var(--of-trans);
  text-decoration: none;
}
.of-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 61, 0, 0.35);
}
.of-cta-primary:active { transform: translateY(0); }

.of-cta-primary[disabled], .of-cta-primary.is-disabled {
  opacity: 0.5; pointer-events: none; cursor: default;
}

.of-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 0 28px; border-radius: 16px;
  background: transparent;
  color: var(--of-navy);
  font-family: var(--of-font);
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--of-gray-200);
  cursor: pointer;
  transition: var(--of-trans);
  text-decoration: none;
}
.of-cta-secondary:hover {
  border-color: var(--of-navy);
  background: var(--of-gray-50);
}

.of-cta-soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--of-gray-400);
  padding: 10px 0;
}
.of-cta-soon svg { width: 18px; height: 18px; }

/* ── 8. Price Card ─────────────────────────────────────────────── */
.of-price {
  display: inline-flex; align-items: baseline; gap: 4px;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--of-snow);
  border: 1px solid var(--of-gray-100);
  border-radius: var(--of-radius);
}
.of-price__label { font-size: 13px; font-weight: 600; color: var(--of-gray-600); }
.of-price__value { font-size: 36px; font-weight: 800; color: var(--of-navy); letter-spacing: -0.02em; }
.of-price__period { font-size: 15px; font-weight: 500; color: var(--of-gray-400); }

/* ── 9. Phone Frame ────────────────────────────────────────────── */
.of-phones { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.of-phone {
  width: 260px;
  background: var(--of-navy);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--of-shadow-xl), inset 0 1px 1px rgba(255,255,255,0.05);
  position: relative;
}

.of-phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: var(--of-navy);
  border-radius: 0 0 18px 18px; z-index: 3;
}

.of-phone__screen {
  background: var(--of-white);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
}

.of-phone--front { z-index: 2; }
.of-phone--back {
  position: absolute;
  z-index: 1;
  transform: translateX(-55%) scale(0.88) rotateY(8deg);
  opacity: 0.9;
}

/* ── 10. Laptop Frame ──────────────────────────────────────────── */
.of-laptop {
  width: 100%;
  max-width: 580px;
  position: relative;
}

.of-laptop__screen {
  background: var(--of-navy);
  border-radius: 16px 16px 0 0;
  padding: 8px 8px 0 8px;
  position: relative;
}

.of-laptop__display {
  background: var(--of-snow);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.of-laptop__base {
  background: linear-gradient(180deg, #d4dae3 0%, #bcc5d1 100%);
  height: 16px;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.of-laptop__base::after {
  content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: #a8b4c4; border-radius: 4px;
}

/* ── 11. App Screen: Client Home ───────────────────────────────── */
.of-scr { font-family: var(--of-font); font-size: 8px; height: 100%; display: flex; flex-direction: column; }

.of-scr-home__header {
  background: var(--of-navy);
  padding: 34px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.of-scr-home__brand { color: white; font-size: 11px; font-weight: 800; }
.of-scr-home__brand span { color: var(--of-orange); }
.of-scr-home__avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--of-blue-light); }

.of-scr-home__search {
  margin: 8px 10px;
  background: var(--of-gray-50); border-radius: 8px;
  padding: 6px 10px; font-size: 7px; color: var(--of-gray-400);
  display: flex; align-items: center; gap: 4px;
}
.of-scr-home__search::before { content: '🔍'; font-size: 8px; }

.of-scr-home__cats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 6px 10px;
}
.of-scr-home__cat {
  text-align: center; font-size: 6px; font-weight: 600; color: var(--of-gray-600);
}
.of-scr-home__cat-icon {
  width: 32px; height: 32px; border-radius: 50%;
  margin: 0 auto 3px; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.of-scr-home__cat:nth-child(1) .of-scr-home__cat-icon { background: #FFF3E0; }
.of-scr-home__cat:nth-child(2) .of-scr-home__cat-icon { background: #FFEBEE; }
.of-scr-home__cat:nth-child(3) .of-scr-home__cat-icon { background: #FFF8E1; }
.of-scr-home__cat:nth-child(4) .of-scr-home__cat-icon { background: #E8F5E9; }
.of-scr-home__cat:nth-child(5) .of-scr-home__cat-icon { background: #E3F2FD; }
.of-scr-home__cat:nth-child(6) .of-scr-home__cat-icon { background: #F3E5F5; }

.of-scr-home__banner {
  margin: 6px 10px;
  background: linear-gradient(135deg, var(--of-navy) 0%, var(--of-navy-mid) 100%);
  border-radius: 10px;
  padding: 10px 12px;
  color: white;
}
.of-scr-home__banner-title { font-size: 8px; font-weight: 700; margin-bottom: 2px; }
.of-scr-home__banner-sub { font-size: 6px; opacity: 0.7; }

.of-scr-home__rest {
  padding: 8px 10px 4px;
  font-size: 8px; font-weight: 700; color: var(--of-navy);
}

.of-scr-home__card {
  margin: 4px 10px;
  display: flex; gap: 8px; align-items: center;
  background: var(--of-white); border-radius: 10px;
  padding: 8px; border: 1px solid var(--of-gray-100);
}
.of-scr-home__card-img {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
}
.of-scr-home__card-name { font-size: 8px; font-weight: 700; color: var(--of-navy); }
.of-scr-home__card-info { font-size: 6px; color: var(--of-gray-400); margin-top: 2px; }
.of-scr-home__card-tag {
  font-size: 5px; font-weight: 700; color: var(--of-green);
  background: var(--of-green-soft); padding: 2px 5px; border-radius: 4px;
  display: inline-block; margin-top: 3px;
}

.of-scr-home__nav {
  margin-top: auto;
  display: flex; justify-content: space-around; padding: 8px 0;
  border-top: 1px solid var(--of-gray-100);
  background: var(--of-white);
}
.of-scr-home__nav-item { text-align: center; font-size: 6px; color: var(--of-gray-400); font-weight: 600; }
.of-scr-home__nav-item--active { color: var(--of-orange); }
.of-scr-home__nav-dot { width: 16px; height: 16px; margin: 0 auto 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* ── 12. App Screen: Client Tracking ───────────────────────────── */
.of-scr-track__map {
  height: 45%;
  background: linear-gradient(170deg, #E8F4FD 0%, #D1E9F6 40%, #C5E1D6 100%);
  position: relative;
  overflow: hidden;
}
.of-scr-track__map::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 20px, rgba(59,130,246,0.06) 20px, rgba(59,130,246,0.06) 21px),
              repeating-linear-gradient(90deg, transparent 0px, transparent 20px, rgba(59,130,246,0.06) 20px, rgba(59,130,246,0.06) 21px);
}
.of-scr-track__route {
  position: absolute; top: 30%; left: 20%; width: 60%; height: 40%;
  border: 2px dashed var(--of-blue); border-radius: 30%; opacity: 0.4;
}
.of-scr-track__pin-rest {
  position: absolute; top: 25%; left: 25%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--of-orange); border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.of-scr-track__pin-moto {
  position: absolute; top: 45%; left: 55%;
  font-size: 14px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.of-scr-track__pin-home {
  position: absolute; bottom: 20%; right: 22%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--of-green); border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.of-scr-track__info { padding: 10px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.of-scr-track__eta {
  text-align: center;
  background: var(--of-white); border-radius: 10px;
  padding: 8px; border: 1px solid var(--of-gray-100);
}
.of-scr-track__eta-time { font-size: 18px; font-weight: 800; color: var(--of-navy); }
.of-scr-track__eta-label { font-size: 6px; color: var(--of-gray-400); font-weight: 600; }

.of-scr-track__steps {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4px;
}
.of-scr-track__step {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 5px; font-weight: 600; color: var(--of-gray-400);
}
.of-scr-track__step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--of-gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 6px;
}
.of-scr-track__step--done .of-scr-track__step-dot { background: var(--of-green); color: white; }
.of-scr-track__step--active .of-scr-track__step-dot {
  background: var(--of-orange);
  color: white;
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.2);
}
.of-scr-track__step--active { color: var(--of-orange); }

.of-scr-track__driver {
  display: flex; align-items: center; gap: 8px;
  background: var(--of-white); border-radius: 10px; padding: 8px;
  border: 1px solid var(--of-gray-100);
}
.of-scr-track__driver-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--of-blue-light), var(--of-blue));
  flex-shrink: 0;
}
.of-scr-track__driver-name { font-size: 8px; font-weight: 700; color: var(--of-navy); }
.of-scr-track__driver-info { font-size: 6px; color: var(--of-gray-400); }
.of-scr-track__driver-actions { margin-left: auto; display: flex; gap: 4px; }
.of-scr-track__driver-btn {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.of-scr-track__driver-btn--chat { background: var(--of-blue-pale); }
.of-scr-track__driver-btn--call { background: var(--of-green-soft); }

/* ── 13. App Screen: Courier ───────────────────────────────────── */
.of-scr-courier { background: #0B121E; color: white; }

.of-scr-courier__header {
  padding: 34px 14px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.of-scr-courier__greeting { font-size: 8px; font-weight: 600; opacity: 0.7; }
.of-scr-courier__name { font-size: 10px; font-weight: 800; }
.of-scr-courier__bell { width: 20px; height: 20px; border-radius: 50%; background: #1C2D42; display: flex; align-items: center; justify-content: center; font-size: 10px; }

.of-scr-courier__status {
  margin: 8px 10px;
  background: #13233F; border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.of-scr-courier__status-left { display: flex; align-items: center; gap: 8px; }
.of-scr-courier__status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--of-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: of-pulse-green 2s infinite;
}
.of-scr-courier__status-text { font-size: 9px; font-weight: 700; }
.of-scr-courier__status-sub { font-size: 6px; opacity: 0.5; }
.of-scr-courier__toggle {
  width: 36px; height: 20px; border-radius: 10px;
  background: var(--of-green); position: relative;
}
.of-scr-courier__toggle::after {
  content: ''; position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: white;
}

.of-scr-courier__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 4px 10px;
}
.of-scr-courier__metric {
  background: #13233F; border-radius: 10px;
  padding: 8px; text-align: center;
}
.of-scr-courier__metric-icon { font-size: 12px; margin-bottom: 3px; }
.of-scr-courier__metric-value { font-size: 11px; font-weight: 800; }
.of-scr-courier__metric-label { font-size: 5px; opacity: 0.5; font-weight: 600; }

.of-scr-courier__offer {
  margin: 8px 10px;
  background: #13233F; border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(255,92,0,0.3);
}
.of-scr-courier__offer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.of-scr-courier__offer-badge {
  background: var(--of-orange); color: white;
  font-size: 5px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 7px; border-radius: 6px;
}
.of-scr-courier__offer-timer { font-size: 9px; font-weight: 700; color: var(--of-orange); }

.of-scr-courier__offer-value { font-size: 20px; font-weight: 800; text-align: center; margin: 4px 0; }
.of-scr-courier__offer-dist { font-size: 7px; text-align: center; opacity: 0.5; margin-bottom: 8px; }

.of-scr-courier__offer-route { display: flex; flex-direction: column; gap: 6px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.of-scr-courier__offer-point { display: flex; align-items: center; gap: 8px; font-size: 7px; }
.of-scr-courier__offer-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.of-scr-courier__offer-dot--pickup { background: var(--of-orange); }
.of-scr-courier__offer-dot--dropoff { background: var(--of-green); }
.of-scr-courier__offer-name { font-weight: 700; }
.of-scr-courier__offer-km { opacity: 0.5; font-size: 6px; }

.of-scr-courier__offer-actions { display: grid; grid-template-columns: 1fr 2fr; gap: 6px; margin-top: 8px; }
.of-scr-courier__offer-btn {
  padding: 8px; border-radius: 10px; text-align: center;
  font-size: 7px; font-weight: 800;
}
.of-scr-courier__offer-btn--reject { background: #1C2D42; color: var(--of-gray-400); }
.of-scr-courier__offer-btn--accept { background: var(--of-orange); color: white; }

/* ── 14. App Screen: Dashboard ─────────────────────────────────── */
.of-scr-dash { display: flex; height: 100%; font-size: 7px; }

.of-scr-dash__sidebar {
  width: 44px; background: #182232; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 0; gap: 2px;
}
.of-scr-dash__sidebar-logo {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--of-orange), var(--of-orange-end));
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 900; color: white; margin-bottom: 8px;
}
.of-scr-dash__sidebar-item {
  width: 32px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
  cursor: default;
}
.of-scr-dash__sidebar-item--active {
  background: var(--of-orange); color: white;
}

.of-scr-dash__main { flex: 1; background: var(--of-snow); overflow: hidden; }

.of-scr-dash__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px; background: white; border-bottom: 1px solid var(--of-gray-100);
}
.of-scr-dash__topbar-name { font-size: 8px; font-weight: 700; color: var(--of-navy); }
.of-scr-dash__topbar-badge {
  font-size: 5px; font-weight: 700;
  background: var(--of-green-soft); color: var(--of-green);
  padding: 2px 6px; border-radius: 4px;
}

.of-scr-dash__kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 6px 8px;
}
.of-scr-dash__kpi {
  background: white; border-radius: 6px;
  padding: 6px; border: 1px solid var(--of-gray-100);
}
.of-scr-dash__kpi-label { font-size: 5px; color: var(--of-gray-400); font-weight: 600; }
.of-scr-dash__kpi-value { font-size: 9px; font-weight: 800; color: var(--of-navy); margin-top: 2px; }
.of-scr-dash__kpi-change {
  font-size: 5px; font-weight: 700; color: var(--of-green); margin-top: 1px;
}

.of-scr-dash__chart {
  margin: 4px 8px;
  background: white; border-radius: 6px;
  padding: 8px; border: 1px solid var(--of-gray-100);
}
.of-scr-dash__chart-title { font-size: 6px; font-weight: 700; color: var(--of-navy); margin-bottom: 6px; }
.of-scr-dash__chart-bars { display: flex; align-items: flex-end; gap: 3px; height: 40px; }
.of-scr-dash__chart-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: var(--of-blue-pale);
  min-height: 4px;
}
.of-scr-dash__chart-bar--active { background: linear-gradient(180deg, var(--of-orange), var(--of-orange-end)); }

.of-scr-dash__orders {
  margin: 4px 8px;
  background: white; border-radius: 6px;
  padding: 6px; border: 1px solid var(--of-gray-100);
}
.of-scr-dash__orders-title { font-size: 6px; font-weight: 700; color: var(--of-navy); margin-bottom: 4px; }
.of-scr-dash__order {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--of-gray-50);
}
.of-scr-dash__order:last-child { border-bottom: none; }
.of-scr-dash__order-id { font-weight: 700; color: var(--of-navy); }
.of-scr-dash__order-name { color: var(--of-gray-400); }
.of-scr-dash__order-badge {
  font-size: 5px; font-weight: 700; padding: 2px 5px; border-radius: 4px;
}
.of-scr-dash__order-badge--new { background: #FEF0EA; color: var(--of-orange); }
.of-scr-dash__order-badge--prep { background: #E1F7F6; color: #1A7377; }
.of-scr-dash__order-badge--ready { background: var(--of-green-soft); color: var(--of-green); }

/* ── 15. Floating Elements ─────────────────────────────────────── */
.of-float {
  position: absolute;
  background: var(--of-white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--of-shadow-lg);
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  z-index: 5;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.of-float--icon {
  width: 48px; height: 48px;
  padding: 0; display: flex; align-items: center; justify-content: center;
  font-size: 22px; border-radius: 50%;
}

.of-float__value { font-size: 15px; font-weight: 800; color: var(--of-navy); }
.of-float__label { font-size: 10px; color: var(--of-gray-400); }

.of-float--green { border-left: 3px solid var(--of-green); }
.of-float--orange { border-left: 3px solid var(--of-orange); }
.of-float--blue { border-left: 3px solid var(--of-blue); }

/* ── 16. Footer ────────────────────────────────────────────────── */
.of-footer {
  background: var(--of-navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0;
  text-align: center;
}

.of-footer__inner {
  max-width: var(--of-max);
  margin: 0 auto;
  padding: 0 var(--of-gutter);
}

.of-footer__brand {
  font-size: 18px; font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.of-footer__brand span { color: var(--of-orange); }
.of-footer__tagline { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.of-footer__copy { font-size: 13px; }

/* ── 17. Animations ────────────────────────────────────────────── */
@keyframes of-pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes of-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .of-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .of-reveal.is-visible { opacity: 1; transform: translateY(0); }

  .of-reveal--delay-1 { transition-delay: 100ms; }
  .of-reveal--delay-2 { transition-delay: 200ms; }
  .of-reveal--delay-3 { transition-delay: 300ms; }
  .of-reveal--delay-4 { transition-delay: 400ms; }

  .of-float { animation: of-float-y 5s ease-in-out infinite; }
  .of-float:nth-child(2) { animation-delay: -1.5s; }
  .of-float:nth-child(3) { animation-delay: -3s; }
  .of-float:nth-child(4) { animation-delay: -4s; }

  .of-phone { transition: transform 400ms ease, box-shadow 400ms ease; }
  .of-phone:hover { transform: translateY(-6px); box-shadow: var(--of-shadow-xl); }

  .of-cta-primary { transition: transform 250ms ease, box-shadow 250ms ease; }
}

@media (prefers-reduced-motion: reduce) {
  .of-reveal { opacity: 1; transform: none; }
  .of-float { animation: none; }
  .of-phone:hover { transform: none; }
}

/* ── 18. Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .of-phone { width: 220px; }
  .of-phone--back { transform: translateX(-50%) scale(0.85) rotateY(6deg); }
}

@media (max-width: 960px) {
  .of-header__nav { display: none; }

  .of-section__inner,
  .of-section__inner--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .of-section__text { max-width: 100%; justify-self: center; }
  .of-section__inner--reverse .of-section__text { justify-self: center; }

  .of-section__inner--reverse .of-section__visual { order: -1; }

  .of-benefits { justify-content: center; text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }

  .of-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }

  .of-ctas { justify-content: center; }

  .of-price { margin-left: auto; margin-right: auto; }

  .of-section__visual { min-height: 350px; }

  .of-phone { width: 230px; }
  .of-phone--back { transform: translateX(-50%) scale(0.86); }

  .of-float { display: none; }
}

@media (max-width: 640px) {
  .of-header__inner { height: 60px; padding: 0 16px; }
  .of-header__brand { font-size: 17px; }

  .of-section { padding: clamp(40px, 8vh, 60px) 0; }

  .of-section__inner,
  .of-section__inner--reverse {
    gap: 28px;
    padding: 0 16px;
  }

  .of-title { font-size: clamp(28px, 7vw, 36px); }
  .of-subtitle { font-size: 15px; }

  .of-benefits { grid-template-columns: 1fr; gap: 10px; max-width: 300px; }

  .of-ctas { flex-direction: column; width: 100%; }
  .of-cta-primary, .of-cta-secondary { width: 100%; }

  .of-section__visual { min-height: 300px; }

  .of-phone { width: 200px; border-radius: 30px; padding: 10px; }
  .of-phone__notch { width: 80px; height: 24px; }
  .of-phone__screen { border-radius: 22px; }
  .of-phone--back { display: none; }

  .of-laptop { max-width: 100%; }

  .of-price { padding: 12px 20px; }
  .of-price__value { font-size: 28px; }

  .of-footer { padding: 32px 0; }
}

/* ── 19. Section Spacer (first section accounts for header) ───── */
.of-section:first-of-type { padding-top: calc(72px + var(--of-section-pad)); }
