/* ==========================================================================
   Storefront Studio
   Dark theme · warm amber accent · custom portfolio site
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --border: #262626;
  --border-strong: #333333;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-faint: #6b6b6b;
  --accent: #f5a524;
  --accent-bright: #fbbf24;
  --accent-dim: #b8780f;
  --accent-glow: rgba(245, 165, 36, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.hidden { display: none; }

/* ==========================================================================
   Ambient background
   ========================================================================== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  opacity: 0.25;
}
.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d97706 0%, transparent 70%);
  top: 40%;
  right: -200px;
  opacity: 0.18;
  animation-delay: -7s;
}
.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #92400e 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
  opacity: 0.2;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}
.brand-name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 120px 32px 80px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero-inner { max-width: 900px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(245, 165, 36, 0.08);
  border: 1px solid rgba(245, 165, 36, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-bright);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
}
.btn-block { width: 100%; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 700px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--bg-elev);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-faint);
}
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 120px 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.section-head {
  max-width: 800px;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  background: var(--bg-card);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
}
.service:hover {
  background: var(--bg-card-hover);
}
.service:hover .service-num { color: var(--accent); }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  transition: color var(--transition);
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ==========================================================================
   Work
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.work-card.featured:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.work-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover .work-image img { transform: scale(1.03); }
.work-info { padding: 30px; }
.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.work-tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(245, 165, 36, 0.1);
  color: var(--accent-bright);
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.work-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap var(--transition);
}
.work-link:hover {
  gap: 12px;
  color: var(--accent-bright);
}

.work-card.placeholder {
  background: transparent;
  border: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px;
}
.placeholder-content { max-width: 280px; }
.placeholder-icon {
  font-size: 48px;
  font-family: var(--font-display);
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.placeholder-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.placeholder-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 32px 0 0;
  border-top: 1px solid var(--border-strong);
  position: relative;
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 30%;
  height: 1px;
  background: var(--accent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text .btn { margin-top: 16px; }
.about-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stack-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stack-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.stack-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section {
  padding-top: 80px;
  padding-bottom: 100px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px;
}
.contact-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 400px;
}
.contact-direct a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
}
.contact-direct a:hover { color: var(--accent-bright); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { margin-top: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 32px 30px;
  background: var(--bg-elev);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-brand .brand-name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.footer-brand .brand-mark { color: var(--accent); font-size: 1.4rem; margin-right: 8px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--text); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    gap: 16px;
    align-items: flex-start;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { width: 100%; text-align: center; }

  .hero { padding-top: 60px; padding-bottom: 60px; }
  .section { padding: 80px 24px; }

  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .meta-item { flex-direction: row; justify-content: space-between; align-items: baseline; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .nav-wrap { padding: 16px 20px; }
  .hero { padding: 40px 20px 50px; }
  .section { padding: 60px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .marquee-track { font-size: 18px; }
  .work-info, .service { padding: 24px 22px; }
  .contact-inner { padding: 32px 22px; }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section .section-head { text-align: center; margin-left: auto; margin-right: auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.06), var(--bg-card));
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 14px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-suffix {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 50px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.92rem;
  padding-left: 24px;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Care plans */
.care-plans {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 40px;
}
.care-head {
  text-align: center;
  margin-bottom: 40px;
}
.care-head h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.care-head p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.care-grid-2col {
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin: 0 auto;
}
.care-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}
.care-card:hover {
  border-color: var(--border-strong);
}
.care-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.06), var(--bg-card));
}
.care-tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.care-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.care-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}
.care-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.care-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.care-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.care-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.care-card li strong {
  color: var(--text);
  font-weight: 600;
}

/* Standalone chatbot add-on card */
.addon-card {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.08), rgba(245, 165, 36, 0.02));
  border: 1px solid rgba(245, 165, 36, 0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.addon-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-content {
  flex: 1;
}
.addon-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.addon-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.addon-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.addon-content strong {
  color: var(--accent);
  font-weight: 700;
}
.addon-card .btn {
  flex-shrink: 0;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.page-hero {
  padding: 80px 32px 50px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero-inner { max-width: 900px; }
.page-hero .section-label { margin-bottom: 16px; }

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-story .story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-direct a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
  width: fit-content;
}
.contact-direct a:hover { color: var(--accent-bright); }

/* Stats grid */
.stats-section { padding-top: 80px; padding-bottom: 80px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.stat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.stats-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 24px;
}

/* Chatbot deep-dive section */
.chatbot-section .chatbot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.chatbot-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.chatbot-text em {
  font-style: italic;
  color: var(--text);
}
.chatbot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Chatbot pricing callout (about page) */
.chatbot-pricing {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.chatbot-pricing h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.chatbot-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: left;
}
.chatbot-price-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all var(--transition);
}
.chatbot-price-option.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.08), var(--bg-card));
}
.chatbot-price-option .price-tag {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.chatbot-price-option .price-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.chatbot-price-option p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Full services list */
.services-list-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-row {
  background: var(--bg-card);
  padding: 28px 26px;
  transition: background var(--transition);
}
.service-row:hover { background: var(--bg-card-hover); }
.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.service-row p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Bottom CTA */
.cta-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.08), rgba(245, 165, 36, 0.02));
  border: 1px solid rgba(245, 165, 36, 0.25);
  border-radius: var(--radius);
  padding: 60px 40px;
}
.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 20px 0 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Active nav state */
.site-nav a.active {
  color: var(--accent);
}

/* Footer phone/email links */
.footer-meta a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-meta a:hover { color: var(--accent); }

/* ==========================================================================
   PRICING / ABOUT — Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .care-grid, .care-grid-2col { grid-template-columns: 1fr; }
  .care-plans { padding: 36px 24px; }
  .addon-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .addon-card .btn { width: 100%; }

  .about-story .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .chatbot-section .chatbot-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-list-full { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .chatbot-features { grid-template-columns: 1fr; }
  .chatbot-pricing-grid { grid-template-columns: 1fr; }
  .chatbot-pricing { padding: 36px 24px; }
  .stat-num { font-size: 2.8rem; }
  .cta-inner { padding: 40px 24px; }
}

/* ==========================================================================
   CHATBOT — demo widget (remove this block when swapping to Chatbase)
   ========================================================================== */
#sf-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  font-family: var(--font-body);
}

#sf-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245, 165, 36, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
#sf-chat-toggle:hover {
  background: var(--accent-bright);
  transform: scale(1.05);
}
#sf-chat-toggle .chat-icon-close { display: none; }
#sf-chat-toggle.open .chat-icon-open { display: none; }
#sf-chat-toggle.open .chat-icon-close { display: flex; }

#sf-chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#sf-chatbot.open #sf-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sf-chat-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.15), rgba(245, 165, 36, 0.04));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sf-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sf-chat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sf-chat-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.sf-chat-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.sf-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.sf-chat-body::-webkit-scrollbar { width: 6px; }
.sf-chat-body::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

.sf-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sf-msg.bot {
  background: var(--bg-card);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.sf-msg.user {
  background: var(--accent);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.sf-msg a { color: var(--accent); text-decoration: underline; }
.sf-msg.bot a { color: var(--accent-bright); }

.sf-typing {
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.sf-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing 1.2s infinite;
}
.sf-typing span:nth-child(2) { animation-delay: 0.15s; }
.sf-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.sf-chat-quick {
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.sf-chat-quick button {
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}
.sf-chat-quick button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 165, 36, 0.06);
}

.sf-chat-input {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.sf-chat-input input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.sf-chat-input input:focus {
  outline: none;
  border-color: var(--accent);
}
.sf-chat-input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sf-chat-input button:hover {
  background: var(--accent-bright);
  transform: scale(1.05);
}

/* "Talk to a person" button — sits above the input */
#sf-chat-human {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 28px);
  margin: 0 14px 0;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
#sf-chat-human:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 165, 36, 0.06);
}
#sf-chat-human::before {
  content: "💬";
  font-size: 14px;
}

/* Smart-fallback topic suggestion buttons (inline in bot message) */
.sf-suggest-wrap { padding-bottom: 10px; }
.sf-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.sf-suggest-btn {
  padding: 6px 12px;
  background: rgba(245, 165, 36, 0.08);
  border: 1px solid rgba(245, 165, 36, 0.3);
  color: var(--accent-bright);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.sf-suggest-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Inline lead-capture form (after multiple unanswered questions) */
.sf-lead-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(245, 165, 36, 0.06);
  border: 1px solid rgba(245, 165, 36, 0.25);
  border-radius: 12px;
  margin: 4px 0 8px;
  animation: msgIn 0.3s ease;
}
.sf-lead-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 9px 12px;
  border-radius: 100px;
  font-size: 0.88rem;
}
.sf-lead-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.sf-lead-form button {
  padding: 9px 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.sf-lead-form button:hover {
  background: var(--accent-bright);
}

@media (max-width: 480px) {
  #sf-chatbot { bottom: 16px; right: 16px; }
  #sf-chat-panel {
    width: calc(100vw - 32px);
    height: calc(100vh - 100px);
    bottom: 72px;
  }
}
/* === end chatbot block === */
