/* =============================================
   PETSHOP PRO — Landing Page
   Baseado no estilo Autos360 / Grupo OLX
   ============================================= */

:root {
  /* Paleta exata do front-end da aplicação */
  --purple:        #5b50a0;   /* --color-default */
  --purple-dark:   #44397e;   /* --color-default-dark */
  --purple-mid:    #7060b8;   /* --color-default-medium */
  --purple-light:  #e8e3f8;   /* --color-default-light */
  --purple-subtle: #f3f1fb;   /* --color-default-subtle */

  /* CTA: variante mais escura para contraste em fundo branco */
  --cta:           #5b50a0;
  --cta-dark:      #44397e;
  --cta-light:     #e8e3f8;

  /* Aliases para não quebrar classes btn-green existentes */
  --green:         #5b50a0;
  --green-dark:    #44397e;
  --green-light:   #e8e3f8;

  --dark:          #1a1635;   /* --color-text-primary */
  --text:          #1a1635;
  --text-soft:     #64607e;   /* --color-text-secondary */
  --text-xs:       #a09db8;   /* --color-text-muted */

  --bg:            #ffffff;
  --bg-soft:       #ede9f8;   /* levemente mais saturado que --color-default-subtle */
  --bg-section:    #e4dff5;   /* --color-default-light mais visível */
  --border:        #d0cce8;   /* --color-border */
  --border-light:  #e4e1f2;   /* --color-border-light */

  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg:  0 10px 30px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.04);
  --shadow-xl:  0 20px 60px rgba(15,23,42,0.13), 0 8px 16px rgba(15,23,42,0.06);

  --r:    6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --section-gap: 44px;

  --t:    all 0.22s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { color: var(--text-soft); line-height: 1.75; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 56px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px;
}

.section-title { margin-bottom: 12px; }
.section-sub   { font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-md);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--t); white-space: nowrap;
  letter-spacing: .01em;
}
.btn-green {
  background: #ffffff; color: var(--purple);
  box-shadow: 0 2px 8px rgba(0,0,0,.20);
  font-weight: 700;
}
.btn-green:hover {
  background: #f3f1fb; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
.btn-green:active { transform: translateY(0); }

/* Botão purple sólido — para uso em fundo branco */
.btn-green-solid {
  background: var(--purple); color: #fff;
  box-shadow: 0 1px 3px rgba(91,80,160,.25), 0 4px 12px rgba(91,80,160,.20);
  font-weight: 700;
}
.btn-green-solid:hover {
  background: var(--purple-dark); transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91,80,160,.30);
}
.btn-green-solid:active { transform: translateY(0); }

.btn-purple {
  background: var(--purple); color: #fff;
  box-shadow: 0 1px 3px rgba(124,58,237,.25), 0 4px 12px rgba(124,58,237,.20);
}
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-2px); }

.btn-outline-purple {
  background: transparent; color: var(--purple);
  border-color: var(--purple);
}
.btn-outline-purple:hover { background: var(--purple-light); transform: translateY(-1px); }

.btn-outline-white {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.80);
  transform: translateY(-1px);
}

.btn-lg  { padding: 13px 28px; font-size: .95rem; }
.btn-xl  { padding: 15px 34px; font-size: 1rem; border-radius: var(--r-lg); font-weight: 700; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(91,80,160,.08);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}

/* ── Logo ── */
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.2rem; font-weight: 800; color: #fff;
  flex-shrink: 0; transition: color .3s ease;
}
.nav-logo .logo-box {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.30);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  transition: background .3s ease, border-color .3s ease;
}
.navbar.scrolled .nav-logo { color: var(--purple); }
.navbar.scrolled .nav-logo .logo-box {
  background: var(--purple);
  border-color: var(--purple);
}

/* ── Links ── */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.80); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--r); transition: var(--t);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.10); }
.navbar.scrolled .nav-links a { color: var(--text-soft); }
.navbar.scrolled .nav-links a:hover { color: var(--purple); background: var(--purple-subtle, #f3f1fb); }

/* ── Actions ── */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
  color: rgba(255,255,255,.80); font-weight: 600; font-size: .875rem;
  padding: 8px 16px; border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,.25); transition: var(--t);
}
.nav-login:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.navbar.scrolled .nav-login { color: var(--text-soft); border-color: var(--border); }
.navbar.scrolled .nav-login:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-light); }

/* ── CTA demo button ── */
.nav-demo {
  font-size: .875rem !important; padding: 9px 20px !important;
  border-radius: var(--r-md) !important;
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.30) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.nav-demo:hover { background: rgba(255,255,255,.25) !important; transform: translateY(-1px); }
.navbar.scrolled .nav-demo {
  background: var(--purple) !important;
  color: #fff !important;
  border-color: var(--purple) !important;
  box-shadow: 0 2px 8px rgba(91,80,160,.25) !important;
}
.navbar.scrolled .nav-demo:hover { background: var(--purple-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ─── HERO ─── */
.hero {
  padding-top: 68px;
  background: linear-gradient(145deg, #1a1540 0%, #2d2560 35%, #4a4090 65%, #6858b0 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: 10%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(157,92,229,.32) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 5%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,80,160,.22) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 32px 0 44px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.90);
  border-radius: 6px; padding: 5px 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.20);
}
.hero h1 { color: #ffffff; margin-bottom: 16px; line-height: 1.1; }
.hero h1 .brand {
  background: linear-gradient(90deg, #c084f5, #a89ee8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; align-items: center; }
.hero-proof {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15);
}
.proof-num { font-size: 1.7rem; font-weight: 900; color: #ffffff; line-height: 1; }
.proof-txt { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.4; margin-top: 2px; }
.proof-div { width: 1px; height: 38px; background: rgba(255,255,255,.20); flex-shrink: 0; }

/* Hero screenshot */
.hero-visual {
  position: relative;
}
.hero-screen {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.14), 0 0 0 1px var(--border);
  overflow: hidden;
}
.screen-topbar {
  background: #F5F5FA; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.screen-dots { display: flex; gap: 5px; }
.screen-dots span { width: 9px; height: 9px; border-radius: 50%; }
.sd-r { background: #FF5F57; }
.sd-y { background: #FFBD2E; }
.sd-g { background: #28C840; }
.screen-url {
  flex: 1; background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 4px 10px; font-size: .72rem; color: var(--text-xs);
}
.screen-body { background: var(--bg-soft); }

/* sidebar + content layout */
.screen-layout {
  display: grid; grid-template-columns: 56px 1fr;
}
.screen-sidebar {
  background: var(--purple); padding: 12px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.sbar-item {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  cursor: pointer; transition: var(--t); color: rgba(255,255,255,.6);
}
.sbar-item.act { background: rgba(255,255,255,.18); color: #fff; }
.sbar-item:hover { background: rgba(255,255,255,.12); color: #fff; }
.screen-main { padding: 14px; overflow: hidden; }

/* ─── STATS STRIP ─── */
.stats-strip { background: linear-gradient(90deg, #44397e 0%, #5b50a0 100%); padding: 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 8px; letter-spacing: -0.04em;
}
.stat-lbl { font-size: .84rem; color: rgba(255,255,255,.60); line-height: 1.45; font-weight: 500; }

/* ─── ABOUT / REBRANDING ─── */
/* about = bg-soft (cinza), solutions = branco, benefits = bg-soft, pricing = branco, faq = bg-soft */
.about { background: var(--bg-soft); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-img {
  position: relative;
}
.about-img-bg {
  background: linear-gradient(145deg, #f3f1fb 0%, #e8e3f8 100%);
  border-radius: var(--r-xl); border: 1px solid rgba(91,80,160,.15);
  padding: 20px; position: relative; overflow: hidden;
}
.about-img-bg::before {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(124,58,237,.08);
  pointer-events: none;
}
.about-img-bg::after {
  content: '';
  position: absolute; top: -30px; left: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(22,163,74,.07);
  pointer-events: none;
}
.about-screen {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  position: relative; z-index: 1;
}
.about-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-light); color: var(--purple);
  border-radius: 50px; padding: 6px 14px;
  font-size: .78rem; font-weight: 700; margin-bottom: 20px;
}

/* ─── SOLUTIONS TABS ─── */
.solutions { background: var(--bg); }
.sol-tabs {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.sol-tab {
  padding: 10px 22px; border-radius: 50px;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); color: var(--text-soft);
  background: #fff; transition: var(--t);
}
.sol-tab:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-light); }
.sol-tab.active {
  background: var(--purple); color: #fff; border-color: var(--purple);
  box-shadow: 0 4px 14px rgba(124,58,237,.30);
}

.sol-panel { display: none; }
.sol-panel.active {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 52px; align-items: center;
}
.sol-info h2 { color: var(--dark); margin-bottom: 14px; }
.sol-info > p { font-size: 1rem; margin-bottom: 28px; }
.sol-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sol-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--text-soft);
}
.sol-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; flex-shrink: 0; margin-top: 3px;
}

/* ─── APP SCREENS ─── */
.app-screen {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border); overflow: hidden;
}
.app-bar {
  background: #F9F9FC; padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.app-bar-title { font-size: .82rem; font-weight: 700; color: var(--dark); }
.app-bar-actions { display: flex; gap: 7px; }
.abtn {
  padding: 5px 12px; border-radius: 5px; font-size: .7rem; font-weight: 600;
  cursor: pointer; border: none;
}
.abtn-p { background: var(--purple); color: #fff; }
.abtn-o { background: transparent; color: var(--purple); border: 1.5px solid rgba(124,58,237,.25); }
.app-body { padding: 14px; background: var(--bg-soft); }

/* Agenda screen */
.week-header {
  display: grid; grid-template-columns: 52px repeat(5,1fr);
  border-bottom: 1px solid var(--border); background: #fff;
}
.wh-cell {
  padding: 8px 6px; text-align: center; font-size: .65rem;
  font-weight: 700; color: var(--text-xs); text-transform: uppercase;
  border-right: 1px solid var(--border-light);
}
.wh-cell.today { color: var(--purple); }
.wh-cell span { display: block; font-size: .82rem; font-weight: 800; margin-top: 2px; }
.wh-cell.today span {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 2px auto 0;
}
.week-row { display: grid; grid-template-columns: 52px repeat(5,1fr); }
.wr-time {
  padding: 5px 8px; font-size: .62rem; color: var(--text-xs);
  text-align: right; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border-light); padding-right: 10px;
}
.wr-cell {
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3px; min-height: 38px; position: relative;
}
.ev {
  border-radius: 4px; padding: 4px 7px;
  font-size: .63rem; font-weight: 600;
  position: absolute; left: 3px; right: 3px; top: 3px;
}
.ev-p { background: rgba(124,58,237,.12); color: var(--purple); border-left: 2px solid var(--purple); }
.ev-g { background: rgba(0,181,106,.10); color: var(--green-dark); border-left: 2px solid var(--green); }
.ev-a { background: rgba(245,158,11,.10); color: #B45309; border-left: 2px solid #F59E0B; }
.ev-r { background: rgba(239,68,68,.10); color: #DC2626; border-left: 2px solid #EF4444; }

/* Prontuário screen */
.pront-header-card {
  background: #fff; border-radius: var(--r-md); padding: 14px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
  border: 1px solid var(--border);
}
.pront-avatar {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.pront-name  { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.pront-meta  { font-size: .7rem; color: var(--text-soft); margin-bottom: 5px; }
.pbadge      { display: inline-block; padding: 2px 8px; border-radius: 50px; font-size: .62rem; font-weight: 700; margin-right: 4px; }
.pb-purple   { background: var(--purple-light); color: var(--purple); }
.pb-green    { background: var(--green-light); color: var(--green-dark); }
.pb-amber    { background: #FEF3C7; color: #B45309; }
.pront-ptabs { display: flex; gap: 4px; margin-bottom: 10px; overflow-x: auto; }
.ptab {
  padding: 5px 12px; border-radius: 6px; font-size: .7rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; border: none;
}
.ptab.a { background: var(--purple); color: #fff; }
.ptab:not(.a) { background: #fff; color: var(--text-soft); border: 1px solid var(--border); }
.hist-row {
  background: #fff; border-radius: var(--r-md); padding: 11px 13px;
  display: flex; align-items: flex-start; gap: 10px;
  border: 1px solid var(--border); margin-bottom: 8px;
}
.hist-ico {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.hi-p { background: var(--purple-light); }
.hi-g { background: var(--green-light); }
.hi-a { background: #FEF3C7; }
.hist-date  { font-size: .65rem; color: var(--text-xs); margin-bottom: 2px; }
.hist-title { font-size: .75rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.hist-desc  { font-size: .68rem; color: var(--text-soft); }

/* Dashboard screen */
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.kpi {
  background: #fff; border-radius: var(--r-md); padding: 12px;
  border: 1px solid var(--border);
}
.kpi-lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-xs); margin-bottom: 4px; }
.kpi-val { font-size: 1.5rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.kpi-up   { font-size: .65rem; font-weight: 700; color: var(--green-dark); }
.dash-chart {
  background: #fff; border-radius: var(--r-md); padding: 14px;
  border: 1px solid var(--border); margin-bottom: 8px;
}
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dc-title  { font-size: .75rem; font-weight: 700; color: var(--dark); }
.dc-legend { display: flex; gap: 10px; }
.dcl { display: flex; align-items: center; gap: 4px; font-size: .62rem; color: var(--text-soft); }
.dcl-dot { width: 7px; height: 7px; border-radius: 50%; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 80px; }
.bg { display: flex; gap: 2px; align-items: flex-end; flex: 1; }
.b  { flex: 1; border-radius: 3px 3px 0 0; min-height: 4px; }
.b-p { background: var(--purple); }
.b-g { background: var(--green); }
.bx  { text-align: center; font-size: .58rem; color: var(--text-xs); margin-top: 3px; }

/* Pets screen */
.pets-rows { display: flex; flex-direction: column; gap: 8px; }
.pet-row {
  background: #fff; border-radius: var(--r-md); padding: 11px 13px;
  display: flex; align-items: center; gap: 11px; border: 1px solid var(--border);
}
.pet-ico {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.pi-1 { background: rgba(124,58,237,.10); }
.pi-2 { background: rgba(0,181,106,.10); }
.pi-3 { background: rgba(245,158,11,.10); }
.pi-4 { background: rgba(59,130,246,.10); }
.pi-5 { background: rgba(239,68,68,.10); }
.pet-n  { font-size: .78rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pet-m  { font-size: .68rem; color: var(--text-soft); }

/* Func screen */
.func-rows { display: flex; flex-direction: column; gap: 8px; }
.func-row  {
  background: #fff; border-radius: var(--r-md); padding: 11px 14px;
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
}
.func-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
}
.fav-1 { background: linear-gradient(135deg, var(--purple-mid), var(--purple)); }
.fav-2 { background: linear-gradient(135deg, var(--green),      var(--green-dark)); }
.fav-3 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.fav-4 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.fav-5 { background: linear-gradient(135deg, #EC4899, #DB2777); }
.func-n  { font-size: .78rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.func-r  { font-size: .68rem; color: var(--text-soft); }
.func-st { font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; margin-left: auto; }
.fs-on  { background: var(--green-light); color: var(--green-dark); }
.fs-off { background: #FEF3C7; color: #B45309; }
.func-ac { font-size: .62rem; font-weight: 600; padding: 2px 8px; border-radius: 50px; background: var(--purple-light); color: var(--purple); }

/* ─── BENEFITS ─── */
.benefits { background: var(--bg-soft); border-top: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.benefit-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  background: #fff; transition: var(--t);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--purple);
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg); border-color: var(--purple);
  border-top-color: var(--purple);
  transform: translateY(-5px);
}
.benefit-icon {
  width: 60px; height: 60px; border-radius: var(--r-md); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.bi-purple { background: var(--purple-light); }
.bi-green  { background: var(--green-light); }
.bi-blue   { background: #EFF6FF; }
.bi-amber  { background: #FEF9C3; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--dark); font-weight: 700; }
.benefit-card p  { font-size: .9rem; line-height: 1.65; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(145deg, #1a1540 0%, #2d2560 40%, #5b50a0 100%);
  position: relative; overflow: hidden;
}
.cta-blob-1 {
  position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.cta-blob-2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(34,197,94,.12); pointer-events: none;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
.cta-inner h2 .g { color: #86EFAC; }
.cta-inner p { color: rgba(255,255,255,.68); margin-top: 12px; font-size: .97rem; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.cta-note { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 10px; text-align: center; }

/* ─── FAQ ─── */
.faq { background: var(--bg-soft); border-top: 1px solid var(--border); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: #fff; border-radius: var(--r-md);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: rgba(124,58,237,.30); }
.faq-q {
  padding: 17px 22px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; color: var(--dark); font-size: .92rem; gap: 16px;
  transition: var(--t); user-select: none;
}
.faq-q:hover { color: var(--purple); }
.faq-icon {
  min-width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; transition: var(--t); color: var(--text-soft); font-weight: 700;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--purple); border-color: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--purple); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-a-inner {
  padding: 0 24px 22px; color: var(--text-soft); font-size: .9rem; line-height: 1.8;
  border-top: 1px solid var(--border-light); padding-top: 14px; margin-top: -2px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  margin-bottom: 14px;
}
.footer-logo .logo-box {
  width: 32px; height: 32px; background: var(--purple);
  border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.footer-brand-p { color: rgba(255,255,255,.50); font-size: .86rem; line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 9px; }
.fsoc {
  width: 34px; height: 34px; border-radius: var(--r);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: var(--t);
}
.fsoc:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-1px); }
.footer-col h4 { color: #fff; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.50); font-size: .86rem; transition: var(--t); }
.footer-links a:hover { color: rgba(255,255,255,.90); padding-left: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .8rem; transition: var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── ANIMATIONS ─── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity .45s ease, transform .45s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; } .d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; } .d6 { transition-delay: .36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-btns, .hero-proof { justify-content: center; }
  .hero-desc { margin-inline: auto; }
  .hero-screen { max-width: 560px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .sol-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-login { display: none; }
  .hamburger { display: flex; }
  .navbar.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; padding: 16px 24px; gap: 4px;
    box-shadow: var(--shadow-lg); z-index: 999;
  }
  .navbar.open .nav-links a { color: var(--text); padding: 12px 14px; }
  .navbar.open .nav-login { display: block; color: var(--text-soft); padding: 12px 24px; border-top: 1px solid var(--border); margin-top: 8px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .screen-layout { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
  .hero-proof { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .sol-tabs { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; }
  .bars { height: 60px; }
}
