/* ═══════════════════════════════════════════════════════════════
   OLAVE LANDING PAGE — CSS V2
   Palette: Navy #0F1F5C · Orange #FF6B00 · Green #22C55E
   Font: Poppins
═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES & RESET ─────────────────────────────────────── */
:root {
  --navy:        #0F1F5C;
  --navy-light:  #1B3A8A;
  --navy-mid:    #2D4FB5;
  --orange:      #FF6B00;
  --orange-light:#FF8C35;
  --orange-dark: #E55500;
  --green:       #22C55E;
  --green-dark:  #16A34A;
  --green-light: #86EFAC;
  --lime:        #84CC16;
  --bg:          #F4F6FF;
  --surface:     #FFFFFF;
  --text-1:      #0F1F5C;
  --text-2:      #64748B;
  --text-3:      #94A3B8;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 3px rgba(15,31,92,.06), 0 1px 2px rgba(15,31,92,.04);
  --shadow-md:   0 4px 16px rgba(15,31,92,.08), 0 2px 6px rgba(15,31,92,.04);
  --shadow-lg:   0 16px 48px rgba(15,31,92,.12), 0 4px 16px rgba(15,31,92,.06);
  --shadow-orange: 0 8px 24px rgba(255,107,0,.35);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,0,.1), rgba(255,107,0,.05));
  border: 1px solid rgba(255,107,0,.25);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,0,.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.25);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.45);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { width: 38px; height: 38px; object-fit: cover; border-radius: 10px; }
.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo span { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-links a { color: var(--text-2); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); background: rgba(255,107,0,.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-actions .btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
  font-size: .875rem;
  padding: 9px 18px;
}
.nav-actions .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-actions .btn-outline { color: var(--text-1); border-color: var(--border); }
.navbar.scrolled .nav-actions .btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,.05); }
.nav-actions .btn-primary { font-size: .875rem; padding: 9px 18px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-burger span { background: var(--navy); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0A1642 50%, #162470 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,107,0,.12);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(34,197,94,.08);
  bottom: 50px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: rgba(255,107,0,.07);
  top: 50%; left: 35%;
  animation: blobFloat 12s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.3);
  color: var(--orange-light);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--orange); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.trust-item i { color: var(--green); font-size: .8rem; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.phone-mockup { position: relative; }

.phone-frame {
  width: 280px;
  background: linear-gradient(145deg, #1a2464, #0d1540);
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  padding-bottom: 16px;
}

.app-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 20px 16px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.app-greeting { font-size: .8rem; font-weight: 700; color: #fff; }
.app-role { font-size: .65rem; color: rgba(255,255,255,.55); }
.app-notif { margin-left: auto; color: rgba(255,255,255,.6); font-size: .9rem; }

.app-ca-card {
  background: linear-gradient(135deg, var(--orange), #FF9A3C);
  margin: 12px 10px;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(255,107,0,.35);
}
.app-ca-label { font-size: .65rem; color: rgba(255,255,255,.8); font-weight: 500; }
.app-ca-value {
  font-size: 1.25rem; font-weight: 800; color: #fff; margin: 4px 0;
}
.app-ca-value span { font-size: .7rem; font-weight: 500; opacity: .8; }
.app-ca-trend {
  font-size: .65rem; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 4px;
}

.app-stats-row {
  display: flex;
  gap: 6px;
  padding: 0 10px;
  margin-bottom: 12px;
}
.app-mini-stat {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(15,31,92,.06);
}
.app-mini-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  margin: 0 auto 4px;
}
.app-mini-icon.orange { background: rgba(255,107,0,.12); color: var(--orange); }
.app-mini-icon.green  { background: rgba(34,197,94,.12); color: var(--green-dark); }
.app-mini-icon.blue   { background: rgba(59,130,246,.12); color: #3B82F6; }
.app-mini-val { font-size: .85rem; font-weight: 800; color: var(--text-1); }
.app-mini-lbl { font-size: .55rem; color: var(--text-3); }

.app-section-title { font-size: .7rem; font-weight: 700; color: var(--text-1); padding: 0 14px; margin-bottom: 8px; }

.app-activity { padding: 0 10px; display: flex; flex-direction: column; gap: 6px; }
.app-activity-item {
  background: #fff;
  border-radius: 11px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(15,31,92,.05);
}
.app-act-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.app-act-icon.green  { background: rgba(34,197,94,.12); color: var(--green-dark); }
.app-act-icon.orange { background: rgba(255,107,0,.12); color: var(--orange); }
.app-act-icon.navy   { background: rgba(15,31,92,.1); color: var(--navy); }
.app-act-name { font-size: .65rem; font-weight: 600; color: var(--text-1); }
.app-act-time { font-size: .55rem; color: var(--text-3); }
.app-act-amount { margin-left: auto; font-size: .65rem; font-weight: 700; color: var(--green-dark); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,31,92,.15);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
  z-index: 3;
}
.float-badge i { color: var(--orange); }
.badge-top    { top: -20px; left: -60px; animation-delay: 0s; }
.badge-right  { top: 40%; right: -70px; animation-delay: 1.5s; }
.badge-bottom { bottom: -20px; left: -50px; animation-delay: 0.7s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll-indicator {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--orange);
  display: inline;
  margin-left: 3px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card--large {
  grid-column: span 2;
  grid-row: span 1;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,.2);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large .feature-visual {
  margin-top: 24px;
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-icon-wrap.orange { background: rgba(255,107,0,.1); color: var(--orange); }
.feature-icon-wrap.navy   { background: rgba(15,31,92,.08); color: var(--navy); }
.feature-icon-wrap.green  { background: rgba(34,197,94,.1); color: var(--green-dark); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-2);
}
.feature-list li i { color: var(--green-dark); font-size: .75rem; flex-shrink: 0; }

/* Mini chart visual */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  padding: 8px 0;
}
.chart-bar {
  flex: 1;
  background: rgba(255,107,0,.15);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.chart-bar.active { background: linear-gradient(180deg, var(--orange), var(--orange-dark)); }
.feature-card:hover .chart-bar { background: rgba(255,107,0,.25); }
.feature-card:hover .chart-bar.active { background: linear-gradient(180deg, var(--orange), var(--orange-dark)); }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how-it-works { background: var(--surface); }

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 64px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: .75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.step-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(15,31,92,.2);
  border: 4px solid var(--surface);
  transition: var(--transition);
}
.step:hover .step-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: var(--shadow-orange);
  transform: scale(1.08);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}
.step-content p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── SHOWCASE ──────────────────────────────────────────────── */
.showcase {
  background: linear-gradient(160deg, #0A1642 0%, var(--navy) 100%);
  overflow: hidden;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content .section-title { color: #fff; }
.showcase-content p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.role-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.role-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  border: 1.5px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.role-tab:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.25); }
.role-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.role-panel { display: none; }
.role-panel.active { display: block; }

.role-list { display: flex; flex-direction: column; gap: 12px; }
.role-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.role-list li i { color: var(--green); font-size: .9rem; flex-shrink: 0; }

/* Phone duo */
.showcase-phones { display: flex; justify-content: center; align-items: center; }
.phone-duo { position: relative; width: 320px; height: 440px; }

.phone-back {
  position: absolute;
  bottom: 0; left: 0;
  transform: rotate(-6deg) translateX(-30px);
  z-index: 1;
}
.phone-front {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
}

.phone-frame-sm {
  width: 185px;
  background: linear-gradient(145deg, #1a2464, #0d1540);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
}
.phone-screen-sm {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  padding-bottom: 12px;
}

.gs-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gs-avatar {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff;
}
.gs-name { font-size: .65rem; font-weight: 700; color: #fff; }
.gs-status { display: flex; align-items: center; gap: 4px; font-size: .55rem; color: rgba(255,255,255,.7); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; }
.gs-ca {
  margin: 10px 10px 8px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
}
.gs-ca-label { font-size: .6rem; color: var(--text-3); }
.gs-ca-val { font-size: .95rem; font-weight: 800; color: var(--text-1); }
.gs-btn {
  margin: 0 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .65rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.phone-frame-main {
  width: 220px;
  background: linear-gradient(145deg, #1a2464, #0d1540);
  border-radius: 34px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
}
.phone-screen-main {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  padding-bottom: 12px;
}

.pms-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pms-logo { font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: 1px; }
.pms-notif { color: rgba(255,255,255,.65); font-size: .85rem; }

.pms-banner {
  background: linear-gradient(135deg, var(--orange), #FF9A3C);
  margin: 10px;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(255,107,0,.3);
}
.pms-banner-label { font-size: .6rem; color: rgba(255,255,255,.8); }
.pms-banner-val { font-size: 1.1rem; font-weight: 900; color: #fff; margin: 3px 0; }
.pms-banner-sub { font-size: .6rem; color: rgba(255,255,255,.7); }

.pms-cards {
  display: flex;
  gap: 6px;
  padding: 0 10px;
}
.pms-card {
  flex: 1;
  background: #fff;
  border-radius: 11px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(15,31,92,.06);
}
.pms-card i { font-size: .75rem; margin-bottom: 4px; }
.pms-card.orange i { color: var(--orange); }
.pms-card.green i  { color: var(--green-dark); }
.pms-card.navy i   { color: var(--navy); }
.pms-card-val { font-size: .85rem; font-weight: 800; color: var(--text-1); }
.pms-card-lbl { font-size: .55rem; color: var(--text-3); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.testimonials-carousel { overflow: hidden; position: relative; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,0,.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars i { color: #FBBF24; font-size: .9rem; }

.testimonial-text {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--text-1); }
.testimonial-role { font-size: .78rem; color: var(--text-3); margin-top: 2px; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--text-1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ─── PLANS ─────────────────────────────────────────────────── */
.plans { background: var(--surface); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card--popular {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan-card--popular:hover { transform: translateY(-16px); }

.plan-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }

.plan-price {
  margin: 12px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-1);
  line-height: 1;
}
.plan-price .currency {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-2);
}
.plan-price .period {
  font-size: .75rem;
  color: var(--text-3);
}
.plan-price--free .amount {
  color: var(--green-dark);
}
.plan-card--popular .plan-price .amount  { color: #fff; }
.plan-card--popular .plan-price .currency,
.plan-card--popular .plan-price .period  { color: rgba(255,255,255,.6); }

.plan-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.plan-icon.orange { background: rgba(255,107,0,.1);  color: var(--orange); }
.plan-icon.green  { background: rgba(34,197,94,.1);  color: var(--green-dark); }
.plan-icon.navy   { background: rgba(15,31,92,.08);  color: var(--navy); }
.plan-icon.blue   { background: rgba(14,165,233,.1); color: #0EA5E9; }
.plan-icon.purple { background: rgba(106,13,173,.1); color: #6A0DAD; }

.plan-card--popular .plan-icon { background: rgba(255,255,255,.15); color: #fff; }

.plan-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 6px;
}
.plan-card--popular .plan-header h3 { color: #fff; }

.plan-header p {
  font-size: .85rem;
  color: var(--text-2);
}
.plan-card--popular .plan-header p { color: rgba(255,255,255,.6); }

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-2);
}
.plan-features li i.fa-check { color: var(--green-dark); font-size: .8rem; }
.plan-features li i.fa-xmark  { color: var(--text-3);   font-size: .8rem; }
.plan-feature--off { opacity: .55; }
.plan-card--popular .plan-features li { color: rgba(255,255,255,.75); }
.plan-card--popular .plan-features li i.fa-check { color: var(--green-light); }
.plan-card--popular .plan-features li i.fa-xmark  { color: rgba(255,255,255,.3); }
.plan-card--popular .plan-feature--off { opacity: .4; }

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  width: 100%;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(255,107,0,.25); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }

.faq-icon { color: var(--orange); flex-shrink: 0; transition: var(--transition); font-size: .85rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── CTA FINAL ─────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(160deg, var(--navy) 0%, #0A1642 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-blob-1 { width: 400px; height: 400px; background: rgba(255,107,0,.1); top: -100px; right: -100px; }
.cta-blob-2 { width: 350px; height: 350px; background: rgba(34,197,94,.08); bottom: -100px; left: -50px; }

.cta-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-logo {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(255,107,0,.35);
}
.cta-logo img { width: 100%; height: 100%; object-fit: cover; }

.cta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-form {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 28px;
}

.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.cta-form input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .9rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,.4); }
.cta-form input:focus { border-color: var(--orange); background: rgba(255,255,255,.12); }

.cta-legal {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 4px;
}

.cta-contact-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-contact-alt span { font-size: .85rem; color: rgba(255,255,255,.5); }

.contact-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.15);
  color: #fff;
  transition: var(--transition);
}
.contact-chip:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.contact-chip.whatsapp i { color: #25D366; }
.contact-chip.email i { color: var(--orange-light); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: #060D2E; padding: 80px 24px 0; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { width: 36px; border-radius: 9px; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: 1px; }

.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-tagline { color: rgba(255,255,255,.2); }

/* ─── TOAST ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
  border-left: 4px solid var(--orange);
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--green); font-size: 1.1rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 900px) and (min-width: 601px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
  .plan-card { padding: 24px 20px; }
  .plan-card--popular { transform: none; }
  .plan-card--popular:hover { transform: translateY(-4px); }
  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .showcase-container { grid-template-columns: 1fr; }
  .showcase-phones { display: none; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { color: var(--text-1); padding: 12px 16px; border-radius: 10px; }
  .nav-links.open a:hover { background: rgba(255,107,0,.06); color: var(--orange); }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .stats-container { flex-direction: column; gap: 0; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-item { padding: 20px; }

  .cta-form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .phone-frame { width: 240px; }
  .float-badge { display: none; }

  .badge-top, .badge-right, .badge-bottom { display: none; }
}

@media (max-width: 480px) {
  .section-container { padding: 72px 16px; }
  .hero-container { padding: 110px 16px 60px; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-final { padding: 80px 16px; }
  .cta-form { padding: 24px 20px; }
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  z-index: 997;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
.float-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--text-1);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(0,0,0,.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-whatsapp:hover .float-whatsapp-tooltip { opacity: 1; }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 18px rgba(255,107,0,.45);
  z-index: 996;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--orange-dark, #e55500); transform: translateY(-3px); }

/* ─── DOWNLOAD SECTION ───────────────────────────────────────── */
.download-section {
  background: linear-gradient(160deg, #f0f3ff 0%, #e8f5e9 100%);
  padding: 0;
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(15,31,92,.2);
}
.store-badge:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,107,0,.35);
}
.store-badge i { font-size: 1.9rem; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-text span { font-size: .7rem; opacity: .75; }
.store-badge-text strong { font-size: 1rem; font-weight: 700; }
.download-note {
  font-size: .83rem;
  color: var(--text-2);
  background: rgba(255,255,255,.7);
  border-left: 3px solid var(--orange);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.download-note i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

/* QR card */
.download-qr-wrap { display: flex; justify-content: center; }
.qr-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 320px;
  border-top: 4px solid var(--orange);
}
.qr-img-wrap {
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(15,31,92,.1);
}
.qr-img-wrap img { display: block; }
.qr-card-info { text-align: center; }
.qr-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.qr-label i { color: #25D366; margin-right: 6px; }
.qr-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .9rem;
  text-decoration: none;
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .download-content .section-title,
  .download-content .section-subtitle { text-align: center !important; }
  .store-badges { justify-content: center; }
  .download-note { text-align: left; }
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
