/* 1stIdeaWeb — Homepage (1stIdea OS launch design), 2026.
   Self-contained stylesheet for public/index.html only. Does not affect any other page. */

:root {
  --navy: #0a0f1e;
  --navy-2: #0f1830;
  --navy-3: #141f3d;
  --ink: #0f172a;
  --body-text: #475467;
  --muted: #667085;
  --line: #e6e9f0;
  --line-soft: #eef1f6;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-soft-2: #f2f5fb;
  --blue: #2f5fe0;
  --blue-dark: #1f47b8;
  --purple: #7c3aed;
  --cyan: #0ea5c8;
  --green: #17a06b;
  --orange: #ee7a2b;
  --white: #ffffff;
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-soft: linear-gradient(180deg, #f6f8ff 0%, #ffffff 60%);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 14px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 18px 40px -12px rgba(16, 24, 40, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1320px;
  --header-h: 76px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset (scoped to this page) ---------- */
.hp * ,
.hp *::before,
.hp *::after { box-sizing: border-box; }
.hp { margin: 0; padding: 0; }
.hp ul, .hp ol { margin: 0; padding: 0; list-style: none; }
.hp img { max-width: 100%; display: block; height: auto; }
.hp a { color: inherit; text-decoration: none; }
.hp button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.hp h1, .hp h2, .hp h3, .hp h4, .hp p { margin: 0; }
.hp svg { display: block; }

.hp {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hp .container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.hp .eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #dfe4fb;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hp .eyebrow-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}

.hp .section {
  padding: 96px 0;
}
.hp .section-head {
  max-width: 700px;
  margin: 0 0 52px;
}
.hp .section-head.center { margin-inline: auto; text-align: center; }
.hp .eyebrow {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.hp h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hp .section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

.hp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.hp .btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(47, 95, 224, 0.55);
}
.hp .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(47, 95, 224, 0.6); }
.hp .btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.hp .btn-secondary:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.hp .btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.hp .btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hp .btn:focus-visible,
.hp a:focus-visible,
.hp button:focus-visible,
.hp input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Skip link ---------- */
.hp .skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 10000;
}
.hp .skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ================= HEADER ================= */
.hp .site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.hp .site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hp .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.hp .brand img { height: 38px; width: auto; }
.hp .primary-nav { display: none; }
.hp .primary-nav ul { display: flex; align-items: center; gap: 4px; }
.hp .primary-nav li { position: relative; }
.hp .primary-nav a,
.hp .primary-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.hp .primary-nav a:hover,
.hp .primary-nav .nav-trigger:hover { background: var(--bg-soft-2); color: var(--blue-dark); }
.hp .nav-trigger svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.hp .has-dropdown:hover .nav-trigger svg,
.hp .has-dropdown:focus-within .nav-trigger svg { transform: rotate(180deg); }
.hp .dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.hp .has-dropdown:hover .dropdown-panel,
.hp .has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hp .dropdown-panel a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
}
.hp .dropdown-panel a small { color: var(--muted); font-weight: 500; font-size: 12px; margin-top: 2px; }
.hp .dropdown-panel a:hover { background: var(--bg-soft-2); }
.hp .header-actions { display: flex; align-items: center; gap: 8px; }
.hp .icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--ink);
}
.hp .icon-btn:hover { background: var(--bg-soft-2); }
.hp .login-link {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.hp .login-link:hover { background: var(--bg-soft-2); }
.hp .hamburger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.hp .hamburger:hover { background: var(--bg-soft-2); }
.hp .hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.hp .hamburger span::before, .hp .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform 0.2s ease;
}
.hp .hamburger span::before { top: -6px; }
.hp .hamburger span::after { top: 6px; }

@media (min-width: 1024px) {
  .hp .primary-nav { display: block; }
  .hp .hamburger { display: none; }
}
@media (max-width: 1023px) {
  .hp .desktop-only { display: none !important; }
}

/* ---- Mobile drawer ---- */
.hp .mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
}
.hp .mobile-drawer[data-open="true"] { visibility: visible; }
.hp .drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 15, 30, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hp .mobile-drawer[data-open="true"] .drawer-backdrop { opacity: 1; }
.hp .drawer-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: #fff;
  box-shadow: -12px 0 40px rgba(16,24,40,0.18);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.hp .mobile-drawer[data-open="true"] .drawer-panel { transform: translateX(0); }
.hp .drawer-top { display: flex; align-items: center; justify-content: space-between; }
.hp .drawer-close {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hp .drawer-close:hover { background: var(--bg-soft-2); }
.hp .drawer-panel nav ul { display: flex; flex-direction: column; gap: 2px; }
.hp .drawer-panel nav a {
  display: block;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.hp .drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.hp .drawer-actions .btn { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .hp * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ================= HERO ================= */
.hp .hero {
  padding: 64px 0 90px;
  background: var(--grad-soft);
  overflow: hidden;
  position: relative;
}
.hp .hero .container {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 56px;
  align-items: center;
}
.hp .hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hp .hero-copy p.lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  max-width: 54ch;
}
.hp .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hp .trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hp .trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink); }
.hp .trust-item .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: #e9f8ef; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}

/* ---- Dashboard mockup ---- */
.hp .hero-visual { position: relative; }
.hp .dashboard {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.hp .dash-top {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hp .dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.hp .dash-title { margin-left: 8px; font-size: 12.5px; color: rgba(255,255,255,0.55); font-weight: 600; }
.hp .dash-body { display: grid; grid-template-columns: 148px minmax(0,1fr); min-height: 420px; }
.hp .dash-side {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 16px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.hp .dash-side .item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.hp .dash-side .item.active { background: rgba(255,255,255,0.08); color: #fff; }
.hp .dash-side .item .sw { width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: 0.7; flex: none; }
.hp .dash-main { padding: 20px; color: #fff; }
.hp .dash-welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hp .dash-welcome h3 { font-size: 15px; font-weight: 700; color: #fff; }
.hp .dash-welcome span { font-size: 11.5px; color: rgba(255,255,255,0.45); }
.hp .dash-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-bottom: 16px; }
.hp .stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}
.hp .stat-card .label { font-size: 10.5px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.hp .stat-card .value { font-size: 19px; font-weight: 800; color: #fff; margin-top: 6px; }
.hp .stat-card .delta { font-size: 11px; font-weight: 700; margin-top: 4px; }
.hp .stat-card .delta.up { color: #4ade80; }
.hp .chart-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 14px 6px;
  margin-bottom: 12px;
}
.hp .chart-card .chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hp .chart-card .chart-head span { font-size: 11.5px; color: rgba(255,255,255,0.55); font-weight: 600; }
.hp .chart-card svg { width: 100%; height: 92px; }
.hp .dash-bottom-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
.hp .mini-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}
.hp .mini-card .label { font-size: 10.5px; color: rgba(255,255,255,0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.hp .mini-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 11px; color: rgba(255,255,255,0.7); }
.hp .mini-bar-track { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.hp .mini-bar-fill { height: 100%; border-radius: 3px; background: var(--grad-brand); }
.hp .demo-flag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
}
.hp .float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.hp .float-chip .ic {
  width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.hp .chip-seo { top: -44px; left: -20px; }
.hp .chip-seo .ic { background: #e9f8ef; color: var(--green); }
.hp .chip-leads { bottom: -16px; right: -12px; }
.hp .chip-leads,
.hp .chip-seo { padding: 10px 14px; }
.hp .chip-leads .ic { background: #eef2ff; color: var(--blue); }
@media (max-width: 640px) {
  .hp .float-chip { display: none; }
}

@media (min-width: 1024px) {
  .hp .hero .container { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

/* ================= SOLUTIONS ================= */
.hp .solutions-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 20px;
}
@media (min-width: 640px) { .hp .solutions-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (min-width: 1100px) { .hp .solutions-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.hp .feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp .feature-card:hover, .hp .feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.hp .feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hp .feature-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); }
.hp .feature-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.hp .feature-link { font-size: 14px; font-weight: 700; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 6px; }
.hp .feature-card:hover .feature-link { gap: 9px; }
.hp .feature-link svg { transition: transform 0.2s ease; }
.hp .feature-card:hover .feature-link svg { transform: translateX(2px); }

.hp .ic-purple { background: #f3ecff; color: var(--purple); }
.hp .ic-blue { background: #eaf0ff; color: var(--blue); }
.hp .ic-cyan { background: #e6f8fc; color: var(--cyan); }
.hp .ic-green { background: #e9f8ef; color: var(--green); }
.hp .ic-orange { background: #fdf0e5; color: var(--orange); }

/* ================= STATS (dark) ================= */
.hp .stats-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
}
.hp .stats-section .section-head h2,
.hp .stats-section .section-head p { color: #fff; }
.hp .stats-section .section-head p { color: rgba(255,255,255,0.6); }
.hp .stats-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 700px) { .hp .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1080px) { .hp .stats-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.hp .stat-tile {
  background: var(--navy-2);
  padding: 30px 22px;
}
.hp .stat-tile .feature-icon { margin-bottom: 16px; }
.hp .stat-tile h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hp .stat-tile p { font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* ================= TOOLS ================= */
.hp .tools-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 16px;
}
@media (min-width: 700px) { .hp .tools-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1100px) { .hp .tools-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.hp .tool-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.hp .tool-card .feature-icon { margin-inline: auto; }
.hp .tool-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-top: 12px; }
.hp .tool-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #eef1f6;
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 999px;
}
.hp .tool-card[aria-disabled="true"] { opacity: 0.92; cursor: not-allowed; }

.hp .icon-sprite { display: none; }

/* ================= HOW IT WORKS ================= */
.hp .steps-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 28px;
  counter-reset: step;
}
@media (min-width: 860px) { .hp .steps-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.hp .step-card { position: relative; padding-top: 8px; }
.hp .step-num {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hp .step-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hp .step-card p { font-size: 14.5px; color: var(--muted); }
.hp .step-connector {
  display: none;
}
@media (min-width: 860px) {
  .hp .step-connector {
    display: block;
    position: absolute;
    top: 26px; left: calc(100% - 8px);
    width: calc(100% - 36px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  }
}

/* ================= WHY US (split) ================= */
.hp .why-section .container { display: grid; grid-template-columns: minmax(0,1fr); gap: 48px; align-items: center; }
@media (min-width: 980px) { .hp .why-section .container { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.hp .why-list { display: grid; gap: 18px; margin-top: 28px; }
.hp .why-item { display: flex; gap: 14px; }
.hp .why-item .feature-icon { flex: none; width: 42px; height: 42px; }
.hp .why-item h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.hp .why-item p { font-size: 14px; color: var(--muted); }

.hp .why-illustration {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hp .why-illustration svg { width: 100%; height: auto; }

/* ================= SERVICES ================= */
.hp .services-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 14px;
}
@media (min-width: 640px) { .hp .services-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (min-width: 1100px) { .hp .services-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.hp .service-row {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hp .service-row:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp .service-row .feature-icon { flex: none; width: 40px; height: 40px; }
.hp .service-row span.name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.hp .service-row small { display: block; font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ================= FINAL CTA ================= */
.hp .final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: 0;
  padding: 96px 0;
}
.hp .final-cta .cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hp .final-cta .eyebrow-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.hp .final-cta h2 { color: #fff; margin-top: 20px; }
.hp .final-cta p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 17px; }
.hp .final-cta .hero-ctas { justify-content: center; margin-top: 32px; }
.hp .cta-orbit { position: absolute; inset: 0; z-index: 1; opacity: 0.55; }

/* ================= FOOTER ================= */
.hp .site-footer { background: #070b16; color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.hp .footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 40px;
}
@media (min-width: 720px) { .hp .footer-grid { grid-template-columns: minmax(0,1.4fr) repeat(4, minmax(0,1fr)); } }
.hp .footer-brand img { height: 34px; margin-bottom: 14px; }
.hp .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 34ch; }
.hp .social-row { display: flex; gap: 10px; margin-top: 18px; }
.hp .social-row a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.hp .social-row a:hover { background: rgba(255,255,255,0.12); }
.hp .footer-col h5 { color: #fff; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.hp .footer-col ul { display: grid; gap: 11px; }
.hp .footer-col a { font-size: 14px; }
.hp .footer-col a:hover { color: #fff; }
.hp .footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 13px;
}
.hp .footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- WhatsApp float ---------- */
.hp .wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 400;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
}
.hp .wa-float:hover { transform: translateY(-2px); }
.hp .wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal-on-scroll ---------- */
.hp .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hp .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .hp .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 640px) {
  .hp .section { padding: 64px 0; }
  .hp .stats-section, .hp .final-cta { padding: 64px 0; }
}
