﻿:root {
  --bg: #07111f;
  --bg-2: #0c1830;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #eef5ff;
  --line: #e5edf7;
  --text: #0f172a;
  --muted: #5a6475;
  --muted-dark: #c9d7f0;
  --primary: #3b82f6;
  --primary-soft: rgba(59, 130, 246, 0.10);
  --success: #0f9f6e;
  --shadow-xl: 0 30px 90px rgba(2, 6, 23, 0.16);
  --shadow-lg: 0 18px 54px rgba(15, 23, 42, 0.10);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.07);
  --max-width: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
p { color: var(--muted); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}
.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }

h1 {
  font-size: clamp(3rem, 5.8vw, 5.45rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 900;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 850;
}
h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}
h4 {
  font-size: 1.03rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-head h2,
.section-heading h2,
.pricing-title {
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(59, 130, 246, 0.12);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14);
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  /* match AI receptionist hero background */
  background: #0B0F14;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bg);
}

/* header link and toggle colors for dark header */
.site-header .site-nav a{
  color: #eef4ff;
}
.site-header .brand,
.site-header .brand span{
  color: #eef4ff;
}
.nav-toggle{
  color: #0f172a; /* darker hamburger lines for better visibility */
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 700;
}

.site-logo{
  width:62px; /* 10% larger */
  height:62px; /* 10% larger */
  display:block;
  object-fit:contain;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #5eaaff 0%, #2f83f7 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.28);
}
.site-nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}
.site-nav a {
  color: #475569;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}
.nav-toggle {
  border: 0;
  background: var(--surface-2);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  cursor: pointer;
  color: #0f172a; /* ensure hamburger lines remain dark on light backgrounds */
  font-size: 20px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 118px;
  color:#ffffff;
  background:#0B0F14;
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.20), transparent 34%),

/* Pages that should use a dark hero/header combination */
.hero-dark .site-header {
  background: #0B0F14;
  border-bottom: none;
  box-shadow: none;
}
.hero-dark .hero {
  background: #0B0F14;
  color: #ffffff;
}
    linear-gradient(135deg, #07111f 0%, #0c1830 50%, #12345f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.hero-sub,
.hero-proofline,
.hero-note {
  max-width: 735px;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.hero-proofline {
  font-weight: 700;
  color: #e6efff;
}
.hero-actions,
.btn-row,
.hero-chips,
.best-fit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions {
  margin-top: 30px;
}
.hero-chips {
  margin-top: 24px;
}
.chip,
.best-fit {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #eef4ff;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-note {
  margin-top: 18px;
  max-width: 700px;
  font-size: 0.95rem;
  color: #dbe8ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: 0.22s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #5eaaff 0%, #2f83f7 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.section {
  padding: 110px 0;
}
.section--alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.section-heading {
  max-width: 860px;
  margin: 0 auto 40px;
  display: grid;
  gap: 16px;
  text-align: center;
}
.section-heading h2 {
  margin: 0 auto;
}
.section-heading p {
  font-size: 1.04rem;
  margin: 0 auto;
  max-width: 720px;
}

.values-grid,
.pricing-grid,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-2,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.pricing-card,
.contact-card,
.policy-card {
  padding: 28px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.card:hover {
  transform: translateY(-2px);
}
.card h3 {
  margin: 0 0 0.5rem;
}
.card p,
.contact-card p {
  color: var(--muted);
}

.cta-box,
.cta-panel {
  padding: 42px 32px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)), linear-gradient(135deg, #0b1728 0%, #103b73 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}
.cta-box p,
.cta-panel p {
  color: #d8e5ff;
  margin-top: 0.65rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .hero-actions,
.cta-panel .btn-row {
  justify-content: center;
  margin-top: 24px;
}

.pricing-card {
  max-width: 960px;
  margin: 34px auto 0;
  text-align: center;
}
.pricing-card .price,
.pricing-card .pricing-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #111827;
  font-weight: 900;
  margin-top: 16px;
}
.pricing-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.05fr 0.95fr;
}
form {
  display: grid;
  gap: 0.9rem;
}
label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 2.6rem 0 3.2rem;
  color: var(--muted);
}
.site-footer .container {
  border-top: 1px solid rgba(229, 237, 247, 0.95);
  padding-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
}

.section-sm {
  padding: 80px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 40px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.section-head p {
  font-size: 1.04rem;
  margin: 0 auto;
  max-width: 720px;
}

.hero-copy {
  max-width: 770px;
}

.hero-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-card h3 {
  color: #fff;
}

.hero-card p {
  margin-top: 12px;
  color: #d6e4ff;
}

.hero-stack {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.hero-stack-item {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stack-item strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
}

.hero-stack-item span {
  display: block;
  margin-top: 6px;
  color: #d6e4ff;
  font-size: 0.91rem;
  line-height: 1.55;
}

.trust-band {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.trust-band strong {
  display: block;
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.4;
}

.trust-band span {
  display: block;
  margin-top: 6px;
  color: #d7e5ff;
  font-size: 0.9rem;
  line-height: 1.55;
}

.problem {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.problem-wrap,
.solution-wrap,
.case-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  align-items: stretch;
}

.problem-card,
.problem-side,
.solution-card,
.framework-card {
  padding: 32px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.problem-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain {
  padding: 18px 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  color: #111827;
  font-weight: 700;
  line-height: 1.55;
}

.problem-side {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cost-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.cost-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cost-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cost-item strong {
  display: block;
  color: #111827;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.cost-item span {
  display: block;
  margin-top: 7px;
  color: #475569;
  font-weight: 700;
  line-height: 1.45;
}

.urgency-band {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #eef5ff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  color: #17325d;
  font-weight: 800;
  line-height: 1.55;
}

.solution {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 24%), linear-gradient(180deg, #edf8fd 0%, #f8fdff 100%);
}

.solution-points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.solution-point {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #111827;
  font-weight: 700;
  line-height: 1.5;
}

.framework {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.framework-step {
  position: relative;
  padding: 16px 16px 16px 58px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(59, 130, 246, 0.10);
}

.framework-step .num {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #5ca9ff 0%, #2f83f7 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.20);
}

.framework-step strong {
  display: block;
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.2;
}

.framework-step span {
  display: block;
  margin-top: 6px;
  color: #556274;
  font-size: 0.92rem;
  line-height: 1.55;
}

.steps {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.steps-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 26px 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #58a8ff 0%, #2f83f7 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.22);
}

.step p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.steps-note {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-3);
  border: 1px solid rgba(59, 130, 246, 0.12);
  color: #18345f;
  font-weight: 800;
  text-align: center;
}

.proof {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 24%), linear-gradient(180deg, #edf8fd 0%, #f8fdff 100%);
}

.case-study {
  max-width: 980px;
  margin: 38px auto 0;
  padding: 34px 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(59, 130, 246, 0.10);
}

.metric strong {
  display: block;
  color: #111827;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: #475569;
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.92rem;
}

.case-points {
  display: grid;
  gap: 12px;
}

.case-point {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  position: relative;
  padding: 30px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.20);
}

.stars,
.testimonial p,
.testimonial .by {
  position: relative;
  z-index: 1;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 14px;
}

.testimonial .by {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #111827;
  font-weight: 800;
  line-height: 1.45;
}

.pricing {
  background: #fff;
}

.pricing-card {
  max-width: 960px;
  margin: 34px auto 0;
  padding: 42px 30px;
  border-radius: 32px;
  background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.pricing-title {
  margin-top: 16px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #111827;
  font-weight: 900;
}

.pricing-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.pricing-box {
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.pricing-box strong {
  display: block;
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.2;
}

.pricing-box span {
  display: block;
  margin-top: 8px;
  color: #556274;
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-cta {
  background: #0b0f14;
  color: #fff;
}

.cta-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: center;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  color: #d8e5ff;
}

.cta-mini {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cta-mini span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eef4ff;
  font-size: 0.88rem;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .problem-wrap,
  .solution-wrap,
  .case-grid,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid,
  .testimonial-grid,
  .pricing-grid,
  .case-metrics,
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 82px 0; }
  .section-sm { padding: 66px 0; }
  .hero { padding: 74px 0 96px; }
  .hero-grid,
  .problem-wrap,
  .solution-wrap,
  .case-grid,
  .steps-grid,
  .testimonial-grid,
  .pricing-grid,
  .case-metrics,
  .problem-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    max-width: 360px;
  }
  .btn-row,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    position: relative;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }
  /* When mobile nav is visible on white background, use dark link color for contrast */
  .site-nav a {
    color: #0f172a;
  }
  .site-header.nav-open .site-nav {
    display: flex;
  }
  /* Ensure dropdown links are dark and visible when nav is open */
  .site-header.nav-open .site-nav a,
  .site-header.nav-open .site-nav a:link,
  .site-header.nav-open .site-nav a:visited {
    color: #0f172a;
    font-weight: 700;
  }
  .hero {
    padding: 64px 0 84px;
  }
}
