/* BrokerCanvas — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0a0f1a;
  --cream: #f8f6f1;
  --moss: #2d5a3d;
  --moss-light: #3a7a50;
  --warm: #c9734a;
  --warm-light: #e8956b;
  --slate: #4a5568;
  --light-slate: #94a0b4;
  --border: #ddd8d0;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
nav {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--moss);
  letter-spacing: -0.5px;
}
.logo-dot { color: var(--warm); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--moss); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--moss);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--moss-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
}
.btn-primary:hover { background: var(--moss-light); }
.btn-warm {
  background: var(--warm);
  color: var(--white);
}
.btn-warm:hover { background: var(--warm-light); }
.btn-outline {
  background: transparent;
  color: var(--moss);
  border: 2px solid var(--moss);
}
.btn-outline:hover { background: var(--moss); color: var(--white); }
.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ============ HERO (shared) ============ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
  max-width: 800px;
}
.hero h1 em { font-style: normal; color: var(--moss); }
.hero-sub {
  font-size: 1.25rem;
  color: var(--slate);
  max-width: 640px;
  margin-top: 24px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ============ DIVIDER ============ */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.divider hr { border: none; border-top: 1px solid var(--border); }

/* ============ PROBLEM SECTION ============ */
.problem {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.problem-left p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.stat-card .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--moss);
  line-height: 1;
}
.stat-card .label {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============ SERVICES SECTION ============ */
.services {
  background: var(--ink);
  color: var(--white);
  padding: 100px 48px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.services-header p {
  color: #94a0b4;
  font-size: 1.1rem;
  max-width: 500px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
}
.service-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-item p {
  font-size: 0.92rem;
  color: #8a95a8;
  line-height: 1.6;
}
.service-price {
  margin-top: auto;
  padding-top: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--warm-light);
  font-size: 1rem;
}
.service-item .learn-more {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--warm-light);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-item:hover .learn-more { opacity: 1; }

/* ============ USE CASES ============ */
.usecases {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.usecases h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.usecases > p {
  color: var(--slate);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 520px;
}
.usecase-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.usecase-item .check {
  color: var(--moss);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--white);
  padding: 100px 48px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ============ CLOSING CTA ============ */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto 20px;
}
.closing p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-slate);
}
footer a { color: var(--moss); text-decoration: none; }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
footer .footer-links a:hover { text-decoration: underline; }

/* ============ OFFER DETAIL PAGE ============ */
.offer-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}
.offer-hero .offer-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  background: rgba(201, 115, 74, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.offer-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 700px;
}
.offer-hero .offer-tagline {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
}
.offer-hero .offer-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  background: var(--white);
  border: 2px solid var(--moss);
  border-radius: 12px;
  padding: 14px 28px;
}
.offer-price-tag .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--moss);
}
.offer-price-tag .price-note {
  font-size: 0.9rem;
  color: var(--slate);
}

/* Offer Content Grid */
.offer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.offer-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  margin-top: 48px;
}
.offer-main h2:first-child { margin-top: 0; }
.offer-main p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.deliverables-list {
  list-style: none;
  padding: 0;
}
.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.deliverables-list li:last-child { border-bottom: none; }
.deliverables-list .icon {
  color: var(--moss);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
}
.timeline-block .timeline-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
}
.timeline-block .timeline-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.timeline-block .timeline-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--moss);
  min-width: 100px;
}
.timeline-block .timeline-desc {
  font-size: 0.92rem;
  color: var(--slate);
}

/* Offer Sidebar */
.offer-sidebar {
  position: sticky;
  top: 32px;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.booking-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-card p {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.5;
}
.booking-card .btn { width: 100%; margin-bottom: 12px; }
.booking-card .or-text {
  font-size: 0.85rem;
  color: var(--light-slate);
  margin: 4px 0;
}
.ideal-for {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 20px;
}
.ideal-for h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}
.ideal-for ul {
  list-style: none;
  padding: 0;
}
.ideal-for li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 6px 0;
  line-height: 1.4;
}
.ideal-for li .dot {
  color: var(--warm);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.contact-details {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-details .detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--slate);
}
.contact-details .detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--warm); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--moss);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.visible { display: block; }
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45, 90, 61, 0.1);
  color: var(--moss);
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.form-error.visible { display: block; }

/* ============ BOOKING PLACEHOLDER ============ */
.booking-placeholder {
  background: rgba(45, 90, 61, 0.04);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}
.booking-placeholder .cal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.booking-placeholder h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-placeholder p {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 20px;
}

/* ============ BLOG LIST PAGE ============ */
.blog-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}
.blog-hero .blog-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 700px;
}
.blog-hero p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

.blog-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--ink);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--moss);
}
.blog-card-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--moss);
  background: rgba(45, 90, 61, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}
.blog-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--light-slate);
}
.blog-card-read {
  font-weight: 600;
  color: var(--moss);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-read { color: var(--moss-light); }

/* ============ BLOG ARTICLE PAGE ============ */
.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.article-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}
.article-header .article-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  background: rgba(201, 115, 74, 0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.article-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 780px;
  margin-bottom: 20px;
}
.article-header .article-meta {
  font-size: 0.88rem;
  color: var(--light-slate);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-header .article-meta span { display: flex; align-items: center; gap: 6px; }

/* Article body */
.article-body {
  min-width: 0;
}
.article-body h2 {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.article-body p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* Prompt examples */
.prompt-example {
  background: var(--ink);
  color: #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  position: relative;
}
.prompt-example::before {
  content: "PROMPT";
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--warm-light);
  margin-bottom: 10px;
}
.prompt-result {
  background: rgba(45, 90, 61, 0.06);
  border-left: 3px solid var(--moss);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: -8px 0 24px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
}
.prompt-result::before {
  content: "RESULT";
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--moss);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

/* Pull quote */
.article-pullquote {
  border-left: 4px solid var(--moss);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(45, 90, 61, 0.04);
  border-radius: 0 10px 10px 0;
}
.article-pullquote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* Stat callout */
.stat-callout {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
  align-items: center;
}
.stat-callout .stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--moss);
  line-height: 1;
  white-space: nowrap;
}
.stat-callout .stat-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

/* Internal links between articles */
.related-articles {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-top: 48px;
}
.related-articles h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.related-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--moss-light); }
.related-link .arrow { flex-shrink: 0; margin-top: 2px; }

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Course CTA card */
.course-cta-card {
  background: var(--moss);
  color: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.course-cta-card .cta-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.course-cta-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.course-cta-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.course-cta-card .price-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 4px 16px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn-white {
  background: var(--white);
  color: var(--moss);
}
.btn-white:hover { background: var(--cream); }

/* Inline article CTA (at end of article body) */
.article-cta-block {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 48px;
  text-align: center;
}
.article-cta-block .cta-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm-light);
  margin-bottom: 12px;
}
.article-cta-block h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-cta-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.article-cta-block .price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

/* ============ NAV COURSE BADGE ============ */
.nav-course-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--warm);
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
  line-height: 1.4;
}

/* ============ COURSE HERO CTA ============ */
.btn-course {
  background: transparent;
  color: var(--warm);
  border: 2px solid var(--warm);
}
.btn-course:hover {
  background: var(--warm);
  color: #fff;
}

/* ============ COURSE ENTRY SECTION ============ */
.course-entry {
  background: var(--white);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.course-entry-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.course-entry-header {
  text-align: center;
  margin-bottom: 64px;
}
.course-entry-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  background: rgba(201, 115, 74, 0.08);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.course-entry-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.course-entry-header p {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.course-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.course-entry-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.course-deliverables {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.course-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.course-deliverables li:last-child { border-bottom: none; }
.course-deliverables .check {
  color: var(--moss);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.course-entry-note {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 32px;
}
.course-entry-right {
  position: sticky;
  top: 32px;
}
.value-ladder-card {
  background: var(--cream);
  border: 2px solid var(--moss);
  border-radius: 16px;
  padding: 32px;
}
.value-ladder-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--moss);
  margin-bottom: 20px;
}
.value-ladder-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.value-ladder-item:last-of-type { border-bottom: none; }
.value-ladder-item .vl-label {
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
}
.value-ladder-item .vl-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--slate);
  font-size: 0.95rem;
}
.value-ladder-item.value-ladder-start {
  background: rgba(45, 90, 61, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 4px;
  border: 1px solid rgba(45, 90, 61, 0.15) !important;
}
.value-ladder-item.value-ladder-start .vl-label {
  font-weight: 700;
  color: var(--moss);
  font-size: 1rem;
}
.value-ladder-item.value-ladder-start .vl-price {
  color: var(--warm);
  font-size: 1rem;
}
.value-ladder-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* ============ OFFER PAGE COURSE CALLOUT ============ */
.course-callout {
  background: rgba(201, 115, 74, 0.06);
  border: 2px solid rgba(201, 115, 74, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}
.course-callout-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  margin-bottom: 10px;
}
.course-callout h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.course-callout p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}
.course-callout .btn-course-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.course-callout .btn-course-callout:hover { background: var(--warm-light); }

/* ============ GROWTH FUNNEL ============ */
.cta-band {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 72px;
}
.cta-band-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--moss);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band-copy h2,
.cta-band-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cta-band-copy p {
  color: var(--slate);
  max-width: 680px;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-grid,
.outcome-grid,
.fit-grid,
.resource-preview-grid,
.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card,
.outcome-card,
.fit-card,
.resource-preview-card,
.next-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.proof-card h3,
.outcome-card h3,
.fit-card h3,
.resource-preview-card h3,
.next-step-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.proof-card p,
.outcome-card p,
.fit-card p,
.resource-preview-card p,
.next-step-card p {
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.7;
}

.funnel-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
}
.funnel-section-header {
  margin-bottom: 36px;
}
.funnel-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  margin-bottom: 14px;
}
.funnel-section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.funnel-section-header p {
  color: var(--slate);
  max-width: 720px;
  font-size: 1.02rem;
}

.funnel-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.funnel-hero-copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  margin-bottom: 18px;
  letter-spacing: -1.4px;
}
.funnel-hero-copy p {
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 720px;
}
.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--slate);
}

.mini-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(10, 15, 26, 0.04);
}
.mini-form-card h2,
.mini-form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.mini-form-card p {
  color: var(--slate);
  margin-bottom: 20px;
}
.mini-form-card .form-error {
  margin-bottom: 14px;
}
.field-note,
.privacy-note {
  font-size: 0.82rem;
  color: var(--light-slate);
  line-height: 1.5;
}
.privacy-note {
  margin-top: 12px;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.agenda-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
}
.agenda-card .agenda-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--warm);
  margin-bottom: 10px;
}
.agenda-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.agenda-card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.65;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .faq-answer {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

.thank-you-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 48px 88px;
}
.thank-you-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 28px;
}
.thank-you-card h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}
.thank-you-card p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}
.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mobile-sticky-cta {
  display: none;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 100;
    gap: 16px;
  }
  .nav-hamburger { display: flex; }

  .hero { padding: 48px 24px 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .divider { padding: 0 24px; }
  .problem { padding: 56px 24px; grid-template-columns: 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .services { padding: 64px 24px; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }

  .usecases { padding: 64px 24px; }
  .usecase-list { grid-template-columns: 1fr; }

  .how { padding: 64px 24px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }

  .closing { padding: 56px 24px 72px; }

  .offer-hero { padding: 40px 24px 32px; }
  .offer-content {
    padding: 0 24px 64px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .offer-sidebar { position: static; }

  .contact-section {
    padding: 40px 24px 64px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 24px; }
  footer .footer-links { flex-direction: column; gap: 8px; }

  .blog-hero { padding: 40px 24px 32px; }
  .blog-grid-section { padding: 0 24px 72px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  .article-header { padding: 40px 24px 32px; }
  .article-layout { padding: 0 24px 72px; grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }

  .course-entry { padding: 56px 24px; }
  .course-entry-header { margin-bottom: 40px; }
  .course-entry-grid { grid-template-columns: 1fr; gap: 40px; }
  .course-entry-right { position: static; }

  .course-callout { padding: 24px 20px; }

  .cta-band,
  .funnel-section,
  .thank-you-shell { padding-left: 24px; padding-right: 24px; }
  .cta-band-inner,
  .funnel-hero,
  .proof-grid,
  .outcome-grid,
  .fit-grid,
  .resource-preview-grid,
  .next-step-grid,
  .agenda-grid {
    grid-template-columns: 1fr;
  }
  .cta-band-inner,
  .funnel-hero { padding: 24px; }
  .funnel-hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .thank-you-card,
  .mini-form-card { padding: 24px; }
  .mobile-sticky-cta {
    display: block;
    position: sticky;
    bottom: 0;
    padding: 12px 24px 20px;
    background: linear-gradient(to top, rgba(248,246,241,0.98), rgba(248,246,241,0.88));
    backdrop-filter: blur(12px);
    z-index: 20;
  }
  .mobile-sticky-cta .btn {
    width: 100%;
  }
}
