:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #0f172a;
  /* Slate 900 */
  --muted: #64748b;
  /* Slate 500 */
  --brand: #0f172a;
  /* Deep Navy/Slate 900 (was bright blue) */
  --brand-heavy: #020617;
  /* Slate 950 */
  --brand2: #10b981;
  /* Emerald 500 */
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --radius: 8px;
  --max: 1160px;
  --link: #2563eb;
  /* Keep links blue for affordance, but maybe darker? Let's use #1d4ed8 (Blue 700) */
  --link: #1d4ed8;
}

.call-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.5px;
}

.call-now span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-heavy);
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn.primary:hover {
  background: var(--brand-heavy);
  border-color: var(--brand-heavy);
  color: white;
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--muted);
}

.btn.ghost:hover {
  background: #f1f5f9;
  color: var(--text);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  /* Slate 100 */
  color: #334155;
  /* Slate 700 */
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 13px;
}

/* ... (skip unmodified sections) ... */

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  /* Slate 50 */
  color: var(--text);
  /* Dark Slate */
  border: 1px solid #e2e8f0;
  font-size: 20px;
}

/* ... */

.callout {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  /* Slate 50 */
  color: #334155;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
}

.grid-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.h1 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.1;
  margin: 20px 0 20px;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: #0f172a;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mini {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand2);
}

/* Panels & Cards */
.panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-card {
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.hero-mock {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.kpi {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
}

.kpi .label {
  color: #64748b;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.kpi .value {
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
  color: #0f172a;
  font-feature-settings: 'tnum';
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 32px;
  letter-spacing: -0.8px;
  color: #0f172a;
  font-weight: 800;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 65ch;
  font-size: 17px;
}

.featu.price-cta {
  margin-top: 16px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .h1,
.hero .lead,
.hero-cta,
.mini {
  animation: fadeIn 0.6s ease-out forwards;
}

.hero .lead {
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-cta {
  animation-delay: 0.2s;
  opacity: 0;
}

.mini {
  animation-delay: 0.3s;
  opacity: 0;
}

.btn,
.card,
.nav-links a {
  transition: all 0.2s ease;
}

/* Browser Mockup Frame */
.hero-mock {
  position: relative;
  padding-top: 42px;
  /* space for browser bar */
}

.hero-mock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: #e2e8f0;
  border-bottom: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
}

.hero-mock::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 20px 0 0 #febc2e, 40px 0 0 #28c840;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  padding: 8px 0;
}

@media (max-width: 980px) {
  .nav-inner {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .actions .btn {
    display: none;
    /* hide standard buttons on mobile, show hamburger */
  }

  .mobile-toggle {
    display: flex;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }

  .mobile-toggle {
    display: none !important;
  }
}

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

.feature {
  padding: 24px;
}

.feature h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.feature p {
  margin: 0;
  font-size: 15px;
  /* Override general p */
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--brand);
  font-size: 20px;
}

/* Split Section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.list {
  padding: 32px;
}

.list h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.list ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.list li {
  margin-bottom: 6px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.price {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.price .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
}

.price h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.price .amt {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 8px;
  color: #0f172a;
  letter-spacing: -1px;
}

.price .amt span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: normal;
}

.price ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #f8fafc;
}

.footer .fgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.small {
  font-size: 14px;
}

hr.sep {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* Sub-Pages */
.page {
  padding: 60px 0 80px;
}

.page h1 {
  margin: 0 0 16px;
  font-size: 42px;
  letter-spacing: -1px;
  color: #0f172a;
}

.page .sub {
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.7;
  font-size: 18px;
}

.callout {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1e3a8a;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.input {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 980px) {
  .nav-inner {
    height: 64px;
  }

  .grid-hero {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .actions .btn.ghost {
    display: none;
  }
}

/* mock classes */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-title {
  font-weight: 900;
  color: #0f172a;
}

.mock-footer {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
}

.callout-title {
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
  /* Slate 900 */
}

.footer-desc {
  margin: 16px 0 0;
  line-height: 1.7;
  max-width: 34ch;
}

.footer-head {
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.footer-links {
  display: grid;
  gap: 10px;
}