/* ===================================================
   FILEFLARE, Main Stylesheet
   Brand: #6f50cc (primary), #d62a86 (pink), #411264 (dark purple),
          #e3a8c9 (blush), #0a0d12 (near-black)
=================================================== */

:root {
  --primary: #6f50cc;
  --primary-dark: #5a3fb8;
  --accent-pink: #d62a86;
  --deep-purple: #411264;
  --blush: #e3a8c9;
  --ink: #0a0d12;
  --surface: #ffffff;
  --surface-2: #f5f3fb;
  --surface-3: #ede9f8;
  --border: #e2ddf0;
  --text: #1a1625;
  --text-mute: #6b6480;
  --text-faint: #a89fc4;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(111,80,204,0.08);
  --shadow: 0 4px 24px rgba(111,80,204,0.12);
  --shadow-lg: 0 12px 48px rgba(111,80,204,0.18);
  --nav-h: 68px;
  --container: 1200px;
  --transition: 0.22s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-pink));
  width: 0%; z-index: 1000; transition: width 0.1s linear;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: var(--ink); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.025em; color: var(--ink); }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
h4 { font-size: 1rem; font-weight: 700; color: var(--ink); }
p { line-height: 1.7; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

.accent { color: var(--primary); }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-pad { padding: 5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head p { color: var(--text-mute); margin-top: 1rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); }
.full-width { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mute);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--surface-3); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1.5rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 2rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.mobile-menu a { padding: 0.6rem 0; font-size: 0.95rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
}

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  padding: 5rem 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,13,18,0.92) 40%, rgba(65,18,100,0.7) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text .eyebrow { color: var(--blush); }
.hero-text h1 { color: #fff; }
.hero-text .body { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-top: 1.25rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-item { flex: 1; padding: 1rem 1.25rem; }
.proof-num { font-size: 1.35rem; font-weight: 800; color: #fff; display: block; }
.proof-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; display: block; margin-top: 2px; }
.proof-divider { width: 1px; background: rgba(255,255,255,0.12); }
.hero-visual { display: flex; justify-content: flex-end; }
.hero-screen-wrap { position: relative; }
.hero-screen {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(111,80,204,0.2);
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 4rem 0; }
}

/* ===================================================
   STAT BAND
=================================================== */
.stat-band {
  background: var(--deep-purple);
  padding: 3.5rem 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-plus { color: var(--accent-pink); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 0.4rem; }
.stat-sub {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ===================================================
   TWO COL INTRO
=================================================== */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.intro-left h2 { margin-top: 0.5rem; }
.intro-right p { color: var(--text-mute); }
@media (max-width: 768px) {
  .two-col-intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================================================
   DELIVERY SECTION
=================================================== */
.delivery-section {
  background: var(--ink);
  padding: 5rem 0;
}
.delivery-section .section-head { color: #fff; }
.delivery-section .section-head h2 { color: #fff; }
.delivery-section .section-head p { color: rgba(255,255,255,0.6); }
.delivery-section .eyebrow { color: var(--blush); }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.delivery-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.delivery-card:hover { border-color: var(--primary); background: rgba(111,80,204,0.08); }
.delivery-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.delivery-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.delivery-card h3 { color: #fff; margin-bottom: 0.75rem; }
.delivery-card p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; line-height: 1.65; }
@media (max-width: 768px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   SPLIT SECTION
=================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.split-text .eyebrow { color: var(--primary); }
.split-text h2 { margin-top: 0.5rem; }
.split-text p { color: var(--text-mute); margin-top: 1rem; }
.check-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--surface-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split-grid.reverse { direction: ltr; }
}

/* ===================================================
   PRODUCTS SECTION
=================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.product-icon { font-size: 2rem; margin-bottom: 1rem; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.6; }
.product-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   VIDEO
=================================================== */
.video-section { background: var(--surface-2); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===================================================
   PRICING PREVIEW (homepage)
=================================================== */
.price-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-tier {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.price-tier:last-child { border-right: none; }
.price-tier.featured { background: var(--primary); }
.price-tier.featured .tier-name,
.price-tier.featured .tier-price,
.price-tier.featured .tier-desc { color: #fff; }
.tier-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.tier-name { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 0.5rem; }
.tier-price { font-size: 1.75rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; }
.tier-price span { font-size: 0.9rem; font-weight: 600; }
.tier-desc { font-size: 0.8rem; color: var(--text-mute); margin-top: 0.5rem; line-height: 1.5; }
@media (max-width: 900px) {
  .price-band { grid-template-columns: 1fr 1fr; }
  .price-tier { border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .price-band { grid-template-columns: 1fr; }
}

/* ===================================================
   SERVICES TEASER
=================================================== */
.services-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.strio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.strio-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.strio-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.strio-card h3 { margin-bottom: 0.75rem; }
.strio-card p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.65; }
.more-link { display: inline-block; margin-top: 1.25rem; font-size: 0.8rem; font-weight: 700; color: var(--primary); }
.more-link:hover { color: var(--primary-dark); }
@media (max-width: 768px) {
  .services-trio { grid-template-columns: 1fr; }
}

/* ===================================================
   CTA BIG
=================================================== */
.cta-big {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary) 60%, var(--accent-pink) 100%);
  padding: 6rem 0;
  text-align: center;
}
.cta-big h2 { color: #fff; }
.cta-big p { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 1.05rem; }
.cta-big .eyebrow { color: var(--blush); }
.ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ===================================================
   PAGE HERO
=================================================== */
.page-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
}
.page-hero-inner {
  max-width: 720px;
}
.page-hero-inner h1 { color: #fff; }
.page-hero-inner p { color: rgba(255,255,255,0.65); margin-top: 1rem; font-size: 1.05rem; }
.page-hero-inner .eyebrow { color: var(--blush); }

/* ===================================================
   FEATURES PAGE
=================================================== */
.feat-group { margin-bottom: 3rem; }
.feat-group-head { margin-bottom: 2.5rem; }
.feat-group-head h2 { margin-top: 0.5rem; }
.feat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.feat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.6; }
@media (max-width: 768px) {
  .feat-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .feat-cards { grid-template-columns: 1fr; }
}

/* ===================================================
   PRICING PAGE
=================================================== */
.billing-toggle {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}
.toggle-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mute);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toggle-btn.active { background: var(--primary); color: #fff; }
.save-tag {
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.plan-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 1rem; }
.plan-name { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); margin-bottom: 0.4rem; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.7); }
.price-num { font-size: 2rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; }
.price-per { font-size: 0.875rem; font-weight: 600; color: var(--text-mute); }
.plan-card.featured .price-num, .plan-card.featured .price-per { color: #fff; }
.plan-billing { font-size: 0.72rem; color: var(--text-faint); margin-top: 2px; }
.plan-card.featured .plan-billing { color: rgba(255,255,255,0.55); }
.plan-desc { font-size: 0.825rem; color: var(--text-mute); line-height: 1.55; margin-bottom: 1.25rem; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.8); }
.plan-btn { width: 100%; margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.plan-features li {
  font-size: 0.8125rem;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li.yes::before { content: '✓'; color: var(--primary); font-weight: 900; flex-shrink: 0; }
.plan-card.featured .plan-features li.yes::before { color: #fff; }
.plan-features li.no::before { content: ', '; color: var(--text-faint); flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-mute);
  margin-top: 2rem;
  padding: 1rem;
  background: var(--surface-2);
  border-radius: 8px;
}
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.faq-item h4 { margin-bottom: 0.5rem; font-size: 0.9375rem; }
.faq-item p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.6; }
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   SERVICES PAGE
=================================================== */
.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.alt { background: none; }
.sb-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  padding-top: 0.25rem;
}
.sb-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.sb-lead { font-size: 1.05rem; color: var(--text-mute); line-height: 1.7; margin-bottom: 1.5rem; }
@media (max-width: 640px) {
  .service-block { grid-template-columns: 1fr; gap: 0.5rem; }
  .sb-num { font-size: 1.5rem; }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--border);
}
.process-step:last-child::before { display: none; }
.step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.step-content h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.6; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ===================================================
   INTEGRATIONS PAGE
=================================================== */
.int-category { margin-bottom: 3.5rem; }
.int-cat-title { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 1.5rem; }
.int-cat-title .accent { font-size: 0.75rem; }
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.int-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.int-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.int-icon { font-size: 2rem; margin-bottom: 1rem; }
.int-card h3 { margin-bottom: 0.5rem; }
.int-card p { font-size: 0.875rem; color: var(--text-mute); line-height: 1.6; margin-bottom: 1rem; }
.int-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--primary);
}
.int-badge.plan { background: var(--deep-purple); color: #fff; }
.file-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.file-type {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 768px) {
  .int-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mute); line-height: 1.7; margin-bottom: 2rem; }
.contact-block { margin-bottom: 1.25rem; }
.contact-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 0.3rem; }
.contact-link { font-weight: 600; color: var(--primary); font-size: 1rem; }
.contact-value { font-size: 0.9375rem; color: var(--text); }
.contact-services { margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cs-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  color: var(--text);
}
.cs-item:last-child { border-bottom: none; }
.cs-item:hover { background: var(--surface-2); }
.cs-num { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; color: var(--primary); width: 24px; }
.cs-name { font-size: 0.9rem; font-weight: 600; flex: 1; }
.cs-arrow { color: var(--text-faint); }
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111,80,204,0.12);
}
.form-submit { width: 100%; margin-top: 0.25rem; }
.form-note { font-size: 0.75rem; color: var(--text-faint); text-align: center; margin-top: 0.75rem; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  gap: 1rem;
}
.success-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
}
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 0.6rem 0.9rem; border-radius: 7px; font-size: 0.85rem; margin-bottom: 0.75rem; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ===================================================
   LOGIN PAGE
=================================================== */
body.auth-page {
  background: var(--ink);
  min-height: 100vh;
}
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth-left {
  background: linear-gradient(160deg, var(--deep-purple) 0%, var(--primary) 60%, var(--accent-pink) 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.auth-brand .brand-logo { height: 32px; filter: brightness(0) invert(1); }
.auth-left-content h2 { color: #fff; font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 0.75rem; }
.auth-left-content p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.auth-bullets { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.auth-bullets li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.ab-icon { color: #fff; font-weight: 900; }
.auth-left-footer { margin-top: auto; }
.auth-preview-img { width: 100%; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); opacity: 0.85; }
.auth-right {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.auth-form-wrap { width: 100%; max-width: 400px; }
.auth-form-wrap h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.auth-sub { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 1.5rem; }
.demo-hint {
  background: var(--surface-3);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.demo-hint strong { color: var(--primary); }
.auth-form .form-group { margin-bottom: 1rem; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 3.5rem; }
.pw-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.remember-label { display: flex; align-items: center; gap: 0.4rem; color: var(--text-mute); cursor: pointer; }
.forgot-link { color: var(--primary); font-weight: 600; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer-note { font-size: 0.8rem; color: var(--text-mute); text-align: center; margin-top: 1.25rem; }
@media (max-width: 768px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
}

/* ===================================================
   APP / DASHBOARD
=================================================== */
body.app-body {
  background: #f0edf9;
  overflow: hidden;
}
.app-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Sidebar */
.app-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  z-index: 200;
  transition: transform 0.3s ease;
}
.sidebar-brand {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo { height: 28px; filter: brightness(0) invert(1); }
.sidebar-nav {
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.snav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  cursor: pointer;
}
.snav-item:hover, .snav-item.active {
  background: rgba(111,80,204,0.3);
  color: #fff;
}
.snav-item.active { background: var(--primary); color: #fff; }
.snav-icon { font-size: 1rem; flex-shrink: 0; }
.sidebar-bottom {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.store-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 0.75rem;
}
.store-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }
.store-name { font-size: 0.78rem; font-weight: 700; color: #fff; }
.store-plan { font-size: 0.65rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.sidebar-logout { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 600; display: block; text-align: center; padding: 0.4rem; }
.sidebar-logout:hover { color: rgba(255,255,255,0.8); }

/* Top bar */
.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.app-topbar {
  height: 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  flex-shrink: 0;
}
.sidebar-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-mute);
  display: none;
  padding: 4px;
}
.topbar-title { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; }
.topbar-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; color: var(--text-mute);
}
.status-dot {
  width: 7px; height: 7px; background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.topbar-avatar {
  width: 30px; height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Content area */
.app-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.75rem;
}
.panel { display: none; }
.panel.active { display: block; }
.panel-header {
  margin-bottom: 2rem;
}
.panel-header h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.panel-header p { font-size: 0.875rem; color: var(--text-mute); }
.panel-sub { font-size: 0.875rem; color: var(--text-mute); margin-left: 1rem; }

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kpi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.kpi-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 0.5rem; }
.kpi-num { font-size: 1.75rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; }
.kpi-delta { font-size: 0.72rem; font-weight: 600; margin-top: 0.4rem; }
.kpi-delta.up { color: #16a34a; }
.kpi-delta.neutral { color: var(--text-mute); }

/* App row / card */
.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.app-card.wide { grid-column: span 1; }
.app-row .app-card:first-child.wide { }
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.card-head h3 { font-size: 0.9rem; font-weight: 700; }
.card-sub { font-size: 0.75rem; color: var(--text-mute); }
.card-link { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

/* Chart */
.chart-area { position: relative; }
.line-chart { width: 100%; height: 160px; }
.chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0 0;
  font-size: 0.7rem;
  color: var(--text-faint);
}

/* Mini table */
.mini-table { width: 100%; border-collapse: collapse; }
.mini-table th { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); padding: 0 0 0.5rem; text-align: left; border-bottom: 1px solid var(--border); }
.mini-table td { font-size: 0.8rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mini-table tr:last-child td { border-bottom: none; }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); padding: 0.5rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { font-size: 0.8rem; padding: 0.75rem; border-bottom: 1px solid var(--border); color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface-2); }
.table-action { font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.table-search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.table-search {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--surface-2);
  outline: none;
}
.table-search:focus { border-color: var(--primary); }
.table-filter {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--surface-2);
  outline: none;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.badge.delivered { background: #dcfce7; color: #15803d; }
.badge.neutral { background: var(--surface-2); color: var(--text-mute); }
.badge.pending { background: #fef9c3; color: #a16207; }
.badge.error { background: #fef2f2; color: #dc2626; }

/* Health grid */
.health-grid { display: flex; flex-direction: column; gap: 0.5rem; }
.health-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.health-item:last-child { border-bottom: none; }
.health-label { color: var(--text-mute); font-weight: 500; }

/* Top products */
.top-products { display: flex; flex-direction: column; gap: 0.75rem; }
.tp-row { display: flex; align-items: center; gap: 0.75rem; }
.tp-name { font-size: 0.78rem; font-weight: 600; color: var(--text); width: 130px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-bar-wrap { flex: 1; background: var(--surface-2); border-radius: 4px; height: 6px; overflow: hidden; }
.tp-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent-pink)); border-radius: 4px; }
.tp-num { font-size: 0.75rem; font-weight: 700; color: var(--text-mute); width: 36px; text-align: right; flex-shrink: 0; }

/* Settings */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.settings-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.settings-card > p { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 1rem; }
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  gap: 1rem;
}
.setting-row:last-child { border-bottom: none; }
.setting-row label { color: var(--text); font-weight: 500; flex-shrink: 0; }
.setting-input {
  flex: 1;
  max-width: 260px;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.8rem;
  font-family: inherit;
  background: var(--surface);
  outline: none;
  color: var(--text);
}
.setting-input.narrow { max-width: 80px; }
.setting-input:focus { border-color: var(--primary); }
.plan-flag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--surface-3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* Toggle switch */
.toggle { position: relative; display: inline-block; cursor: pointer; flex-shrink: 0; }
.toggle input { display: none; }
.toggle-track {
  display: block;
  width: 36px; height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
}
.toggle input:checked + .toggle-track { background: var(--primary); }
.toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-track .toggle-thumb { left: 18px; }

/* Storage */
.storage-meter { margin: 1rem 0; }
.storage-bar-wrap { background: var(--surface-2); border-radius: 4px; height: 8px; overflow: hidden; margin-bottom: 0.5rem; }
.storage-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent-pink)); border-radius: 4px; }
.storage-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-mute); }

/* Analytics */
.bar-chart-area { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.75rem; }
.bbar-row { display: flex; align-items: center; gap: 1rem; }
.bbar-label { font-size: 0.78rem; font-weight: 600; color: var(--text-mute); width: 90px; flex-shrink: 0; }
.bbar-wrap { flex: 1; background: var(--surface-2); border-radius: 4px; height: 28px; overflow: hidden; }
.bbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent-pink));
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  transition: width 0.8s ease;
}
.method-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.method-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.method-item:last-child { border-bottom: none; }
.method-label { font-size: 0.85rem; color: var(--text-mute); }
.method-pct { font-size: 0.9rem; font-weight: 800; color: var(--primary); }

@media (max-width: 900px) {
  .app-sidebar { position: fixed; left: 0; top: 0; transform: translateX(-100%); }
  .app-sidebar.open { transform: none; }
  .sidebar-toggle { display: block; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .app-row { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .app-content { padding: 1.25rem; }
}

/* ===================================================
   FOOTER
=================================================== */
footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand .brand-logo { height: 32px; filter: brightness(0) invert(1); }
.foot-tag { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; line-height: 1.6; }
.foot-system { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.sys-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.foot-col h5 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.foot-col ul li a:hover { color: #fff; }
.foot-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot-brand { grid-column: span 2; }
  .foot-bottom { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-brand { grid-column: span 1; }
}

/* ===================================================
   UTILITY
=================================================== */
.services-three { display: flex; flex-direction: column; }
.shopify-icon { color: #96bf48; }
