@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design tokens ─────────────────────────────────── */
:root {
  --bg:           #08080f;
  --bg-2:         #0d0d1a;
  --card:         rgba(255,255,255,0.04);
  --card-hover:   rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text:         #f0f4ff;
  --muted:        #7c859a;
  --green:        #22c55e;
  --green-bright: #4ade80;
  --green-dim:    rgba(34,197,94,0.12);
  --green-glow:   rgba(34,197,94,0.18);
  --violet:       #8b5cf6;
  --violet-bright:#a78bfa;
  --violet-dim:   rgba(139,92,246,0.12);
  --amber:        #f59e0b;
  --amber-dim:    rgba(245,158,11,0.12);
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --nav-height:   68px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.5);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Base ──────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5.5rem 0; }

/* ── Gradient text ─────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--violet-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent  { color: var(--green); }
.muted   { color: var(--muted); }
.violet  { color: var(--violet-bright); }

/* ── Header ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(8,8,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-link img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

nav { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li { display: flex; }

.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: var(--card); }

.nav-links .nav-cta {
  color: var(--bg);
  background: var(--green);
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}

.nav-links .nav-cta:hover {
  background: var(--green-bright);
  color: var(--bg);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--bg);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-bright);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-bright);
  background: var(--green-dim);
  transform: translateY(-2px);
}

.btn-violet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-violet:hover {
  background: var(--violet-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.3);
}

/* ── Section labels / typography ───────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  margin-bottom: 1.25rem;
}

.section-label.violet-label {
  color: var(--violet-bright);
  background: var(--violet-dim);
  border-color: rgba(139,92,246,0.25);
}

.section-label.amber-label {
  color: var(--amber);
  background: var(--amber-dim);
  border-color: rgba(245,158,11,0.25);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.card:hover {
  border-color: rgba(34,197,94,0.3);
  background: var(--card-hover);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.08), var(--shadow);
  transform: translateY(-2px);
}

.card-no-hover {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-orb-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 65%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2.75rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-social-proof span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.proof-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  letter-spacing: 0.02em;
}

/* ── Feature / Pillar Grid ──────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  padding: 2rem;
  position: relative;
}

.pillar-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── How it works ───────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 2px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Page header ────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-height) + 4.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Striped sections ───────────────────────────────── */
.section-alt { background: var(--bg-2); }
.section-dark {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── About page ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.avatar-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--muted);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.bio-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 0.975rem;
}

.bio-text p:last-of-type { margin-bottom: 0; }

.bio-text strong { color: var(--text); font-weight: 600; }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 6px;
  padding: 0.28rem 0.65rem;
  letter-spacing: 0.02em;
}

.philosophy-box {
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.philosophy-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.philosophy-box p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  line-height: 1.8;
  font-size: 0.975rem;
}

.philosophy-box p:last-child { margin-bottom: 0; }

/* ── Services page ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-icon.green  { background: var(--green-dim);  }
.service-icon.violet { background: var(--violet-dim); }
.service-icon.amber  { background: var(--amber-dim);  }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.service-card .service-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.service-list li:hover {
  border-left-color: var(--green);
  color: var(--text);
}

.service-list li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

/* ── Pricing page ──────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(34,197,94,0.4);
  background: linear-gradient(180deg, rgba(34,197,94,0.07) 0%, var(--card) 40%);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), var(--shadow-lg);
}

.pricing-card.featured:hover {
  border-color: rgba(34,197,94,0.6);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--green);
  color: var(--bg);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.pricing-card-body {
  padding: 2rem;
  flex: 1;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.pricing-card.violet .pricing-tier { color: var(--violet-bright); }

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.15);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

/* ── FAQ section ────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-item {
  padding: 1.75rem;
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Book / Contact ─────────────────────────────────── */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.form-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.form-section p.form-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-form select { color: var(--text); }
.contact-form select option { background: #1a1a2e; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.form-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--green-bright);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* Calendar section */
.calendar-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.calendar-panel-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calendar-panel-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.calendar-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--green-dim) 0%, transparent 100%);
}

.calendar-placeholder .cal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.calendar-placeholder h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 0.6rem;
}

.calendar-placeholder p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.contact-info-block {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.contact-info-item .ci-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 60px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--green);
  transition: color 0.2s;
}

.contact-info-item a:hover { color: var(--green-bright); }

/* ── Contact standalone page ─────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-aside h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.contact-aside p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-detail-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-detail-card p, .contact-detail-card a {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-detail-card a { color: var(--green); }
.contact-detail-card a:hover { color: var(--green-bright); }

/* ── TOS page ───────────────────────────────────────── */
.tos-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}

.tos-nav {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tos-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tos-nav a:hover {
  color: var(--text);
  border-left-color: var(--green);
  background: var(--green-dim);
}

.tos-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tos-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.tos-section p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.tos-section p:last-child { margin-bottom: 0; }

.tos-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.tos-section ul li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.tos-section strong { color: var(--text); font-weight: 600; }

/* ── Stats row ──────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--card);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Inline services strip ──────────────────────────── */
.services-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}

.strip-item:last-child { border-bottom: none; }

.strip-item:hover { background: var(--card-hover); }

.strip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.strip-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.strip-text p {
  font-size: 0.8rem;
  color: var(--muted);
}

.strip-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--muted);
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text); }

/* ── Divider ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stats-row .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 3.75rem 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a14;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem 1.25rem;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    background: none;
    border-radius: 0;
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links .nav-cta {
    margin-top: 0.75rem;
    background: var(--green);
    color: var(--bg);
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius);
    border-bottom: none;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; justify-content: center; }
  .hero-badge { font-size: 0.7rem; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .avatar-placeholder { max-width: 120px; font-size: 3rem; position: static; }
  .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tos-layout { grid-template-columns: 1fr; }
  .tos-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
