:root {
  --bg: #06080f;
  --surface: #0a0e1a;
  --surface-2: #0f1525;
  --border: #1a2540;
  --blue: #4f8ef7;
  --blue-dim: rgba(79, 142, 247, 0.12);
  --blue-glow: rgba(79, 142, 247, 0.25);
  --accent: #22d3a0;
  --accent-dim: rgba(34, 211, 160, 0.12);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.12);
  --green-glow: rgba(34, 197, 94, 0.25);
  --white: #f0f4ff;
  --muted: #6b7fa3;
  --serif: 'Bitter', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* COMMAND CENTER HERO */
.cc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 80px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cc-hero-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.cc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cc-label-dot {
  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.5); }
}

.cc-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.cc-brand {
  background: linear-gradient(135deg, var(--green) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cc-tm {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--green);
  -webkit-text-fill-color: var(--green);
}

.cc-sub {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
}

.cc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}

.btn-cc-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-cc-primary:hover {
  background: #16a34a;
  border-color: #16a34a;
}

.btn-cc-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cc-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Dashboard preview */
.cc-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.06);
}

.cc-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cc-dash-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.cc-dash-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
}

.cc-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cc-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-metric-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cc-metric-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.cc-green { color: var(--green) !important; }
.cc-red { color: #ef4444 !important; }

.cc-dash-plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-plan-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.cc-plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
}

.cc-check { color: var(--green); font-size: 13px; }
.cc-empty { color: var(--muted); font-size: 13px; }
.cc-dim { opacity: 0.6; }

/* SERVICES */
.services {
  border-bottom: 1px solid var(--border);
}

/* CLOSING */
.closing {
  padding: 100px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.closing h2 .highlight-green {
  background: linear-gradient(135deg, var(--green) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.closing-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-cc-primary-lg {
  display: inline-block;
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-cc-primary-lg:hover {
  background: #16a34a;
  border-color: #16a34a;
}

/* FOOTER */
.footer {
  padding: 64px 80px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-links span, .footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links .dot {
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 12px;
  color: #3a4560;
}

/* PRICING CARD BASE (shared by /offer page and homepage pricing) */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(79, 142, 247, 0.4);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: var(--surface-2);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
  top: 3px;
}

/* BUTTONS */
.btn-blue {
  background: var(--blue);
  color: #000;
  border: 2px solid var(--blue);
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-blue:hover {
  background: #3d7de0;
  border-color: #3d7de0;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--blue-dim);
}

/* ONE-TIME SERVICES */
.offer-services {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 72px 80px;
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-inner h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.services-inner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(79, 142, 247, 0.4);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 24px;
  color: var(--blue);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.service-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(34, 211, 160, 0.3);
  width: fit-content;
  transition: border-color 0.2s;
}

.service-cta:hover {
  border-bottom-color: var(--accent);
}

.bundle-note {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.bundle-note a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 142, 247, 0.3);
}

.bundle-note a:hover {
  border-bottom-color: var(--blue);
}

/* DIGITAL PRODUCTS */
.offer-digital {
  padding: 72px 80px;
}

.digital-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.digital-inner h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.digital-inner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.digital-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.digital-card:hover {
  border-color: rgba(79, 142, 247, 0.4);
  transform: translateY(-2px);
}

.digital-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(34, 211, 160, 0.25);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.digital-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.digital-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.digital-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.digital-btn {
  font-size: 13px;
  padding: 10px 20px;
}

/* FORM ENHANCEMENTS */
.optional-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.services-divider {
  height: 1px;
  background: var(--border);
  margin: 80px 0;
}

/* OFFER PAGE / OFFER SECTIONS */
.offer-page { padding: 80px 80px 100px; max-width: 900px; margin: 0 auto; }

.offer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-back {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--white); }

.offer-hero {
  padding: 80px 80px 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.offer-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.offer-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.offer-tiers { padding: 72px 80px; max-width: 900px; margin: 0 auto; }
.offer-tiers .pricing-card { padding: 36px 28px; }

.cta-section {
  text-align: center;
  padding: 80px 80px;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* FORM */
.lead-form { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3a4560; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7fa3' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-submit {
  width: 100%;
  background: var(--blue);
  color: #000;
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: #3d7de0; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid rgba(79, 142, 247, 0.3);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p { font-size: 15px; color: var(--muted); }

.form-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}

/* THANK YOU PAGE */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.thankyou-icon {
  font-size: 64px;
  margin-bottom: 32px;
}

.thankyou-page h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.thankyou-page h1 em {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou-page p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 48px;
}

/* MODULES SECTION */
.modules-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: block;
}

.services h2, .modules-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.services-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
}

.highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-green {
  background: linear-gradient(135deg, var(--green) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  text-align: left;
}

.module-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
}

.module-card:nth-child(4),
.module-card:nth-child(5) {
  grid-column: span 1;
}

.module-icon-wrap {
  margin-bottom: 4px;
}

.module-icon { font-size: 28px; }

.module-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
}

.module-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.module-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.module-features span {
  font-size: 13px;
  color: var(--white);
}

.module-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(34, 197, 94, 0.4);
  width: fit-content;
  transition: border-color 0.2s;
}

.module-cta:hover {
  border-bottom-color: var(--green);
}

/* SECTION MANIFESTO */
.section-manifesto {
  padding: 72px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.section-manifesto .manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-manifesto .manifesto-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
}

.section-manifesto .manifesto-text {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* COMPARISON TABLE */
.comparison-section { padding: 100px 80px; border-bottom: 1px solid var(--border); }
.comparison-table { max-width: 800px; margin: 0 auto; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.comp-header { display: grid; grid-template-columns: 2fr 1.5fr 2fr; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.comp-col-label, .comp-col-generic, .comp-col-naomi { padding: 16px 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.comp-col-generic, .comp-col-naomi { text-align: center; }
.comp-naomi-badge { background: linear-gradient(135deg, var(--green), var(--accent)); color: #000; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.comp-row { display: grid; grid-template-columns: 2fr 1.5fr 2fr; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: var(--surface); }
.comp-label, .comp-generic, .comp-naomi { padding: 18px 20px; font-size: 14px; line-height: 1.6; }
.comp-label { color: var(--muted); font-weight: 600; }
.comp-generic { color: #6b7fa3; text-align: center; }
.comp-naomi { color: var(--white); font-weight: 500; }

/* SOCIAL PROOF */
.social-proof-section { padding: 72px 80px; border-bottom: 1px solid var(--border); background: var(--surface); }
.social-proof-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.social-proof-label { font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: var(--white); margin-bottom: 40px; }
.social-proof-placeholder { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; align-items: center; }
.proof-dot { width: 40px; height: 40px; border-radius: 8px; background: var(--surface-2); border: 1px dashed var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0.4; }
.social-proof-sub { font-size: 14px; color: var(--muted); }
.social-proof-sub a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(34, 197, 94, 0.3); }

/* PRICING SECTION HOME */
.pricing-section-home {
  padding: 100px 80px;
}

.pricing-section-home .pricing-grid {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-section-home .pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-section-home .pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-section-home .pricing-features li {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-section-home .pricing-features li:first-child {
  border-top: 1px solid var(--border);
}

.pricing-section-home .btn-outline,
.pricing-section-home .btn-blue {
  display: block;
  text-align: center;
  margin-top: auto;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--blue-dim);
}

.btn-blue {
  background: var(--blue);
  color: #000;
  border: 2px solid var(--blue);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-blue:hover {
  background: #3d7de0;
  border-color: #3d7de0;
}
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cc-hero { padding: 60px 32px 48px; }
  .cc-dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .modules-section, .comparison-section { padding: 64px 32px; }
  .section-manifesto { padding: 56px 32px; }
  .social-proof-section { padding: 56px 32px; }
  .pricing-section-home { padding: 64px 32px; }
  .who-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { border-color: var(--blue); }
  .manifesto, .whofor, .services, .closing { padding: 64px 32px; }
  .footer { padding: 48px 32px; }
  .offer-nav { padding: 20px 32px; }
  .offer-hero { padding: 60px 32px 0; }
  .offer-tiers { padding: 48px 32px; }
  .offer-page { padding: 60px 32px 80px; }
  .cta-section { padding: 60px 32px; }
  .comp-header, .comp-row { grid-template-columns: 1.5fr 1.2fr 1.8fr; }
}

/* SPOTIFY THEME */
:root {
  --spotify-green: #1DB954;
  --spotify-dark: #191414;
  --spotify-green-dim: rgba(29, 185, 84, 0.12);
  --spotify-green-glow: rgba(29, 185, 84, 0.3);
}

.spotify-green {
  color: var(--spotify-green);
}

.spotify-green-text {
  color: var(--spotify-green);
}

.btn-spotify {
  display: inline-block;
  background: var(--spotify-green);
  color: #000;
  border: 2px solid var(--spotify-green);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-spotify:hover {
  background: #1ed760;
  border-color: #1ed760;
  transform: translateY(-1px);
}

.btn-spotify-outline {
  display: inline-block;
  background: transparent;
  color: var(--spotify-green);
  border: 2px solid var(--spotify-green);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-spotify-outline:hover {
  background: var(--spotify-green-dim);
  transform: translateY(-1px);
}

.btn-service-sm {
  display: inline-block;
  background: var(--spotify-green);
  color: #000;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-service-sm:hover {
  background: #1ed760;
}

/* HERO */
.spotify-hero {
  padding: 80px 80px 72px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spotify-green);
  border: 1px solid rgba(29, 185, 84, 0.3);
  background: rgba(29, 185, 84, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

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

.spotify-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.spotify-hero .hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost-2 {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost-2:hover {
  border-color: var(--spotify-green);
  color: var(--spotify-green);
}

/* PROBLEM */
.problem-section {
  padding: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
}

.problem-icon {
  font-size: 28px;
}

.problem-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.problem-fix {
  font-size: 16px;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid rgba(29, 185, 84, 0.2);
  padding: 20px 24px;
  border-radius: 8px;
  line-height: 1.7;
}

/* TIERS */
.tiers-header {
  text-align: center;
  margin-bottom: 56px;
}

.tiers-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.tiers-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--spotify-green) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tiers-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card.featured {
  border-color: var(--spotify-green);
  background: var(--surface-2);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--spotify-green), #1ed760);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--spotify-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--spotify-green);
  font-size: 12px;
  top: 3px;
}

.pricing-card .btn-spotify,
.pricing-card .btn-spotify-outline {
  width: 100%;
  text-align: center;
}

/* SERVICES SECTION */
.spotify-services {
  padding: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.services-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--spotify-green) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header p {
  font-size: 16px;
  color: var(--muted);
}

.services-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-category {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spotify-green);
  background: rgba(29, 185, 84, 0.08);
  border-bottom: 1px solid rgba(29, 185, 84, 0.15);
  padding: 14px 20px;
}

.service-stack {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

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

.service-item:hover {
  background: rgba(255,255,255,0.02);
}

.service-item-info h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.service-item-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.service-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.service-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

/* SOCIAL PROOF */
.social-proof {
  padding: 80px;
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.proof-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}

.proof-inner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--spotify-green) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
}

.proof-author {
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
}

.proof-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.metric-item {
  padding: 32px 48px;
  text-align: center;
}

.metric-value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--spotify-green);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.metric-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* GUARANTEE */
.guarantee-section {
  padding: 56px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.guarantee-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.guarantee-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.guarantee-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* FORM */
.form-submit {
  background: var(--spotify-green);
  color: #000;
  border: none;
}

.form-submit:hover {
  background: #1ed760;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 900px) {
  .spotify-hero { padding: 60px 32px 56px; }
  .problem-section { padding: 60px 32px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--3 { grid-template-columns: 1fr; gap: 16px; }
  .spotify-services { padding: 60px 32px; }
  .services-grid-2col { grid-template-columns: 1fr; }
  .social-proof { padding: 60px 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .guarantee-section { padding: 40px 32px; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .cta-section { padding: 60px 32px; }
  .offer-tiers { padding: 48px 32px; }
  .offer-tiers .pricing-grid { margin-bottom: 0; }
  .offer-tiers .pricing-card { padding: 32px 24px; }
  .metric-item { padding: 24px 24px; }
}

@media (max-width: 600px) {
  .spotify-hero h1 { font-size: 36px; }
  .spotify-hero .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-spotify,
  .hero-actions .btn-ghost-2 { width: 100%; text-align: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; align-items: flex-start; }
  .service-item-right { flex-direction: row; align-items: center; }
  .proof-metrics { flex-direction: column; }
  .metric-divider { width: 80px; height: 1px; }
  .guarantee-text h3 { font-size: 18px; }
}

/* ===================== TOOL PAGES ===================== */
:root {
  --accent-green: #22d3a0;
  --accent-green-dim: rgba(34, 211, 160, 0.12);
  --tool-bg: #06080f;
  --tool-surface: #0a0e1a;
  --tool-surface-2: #0f1525;
  --tool-border: #1a2540;
  --tool-blue: #4f8ef7;
  --tool-white: #f0f4ff;
  --tool-muted: #6b7fa3;
  --tool-serif: 'Bitter', Georgia, serif;
  --tool-sans: 'DM Sans', system-ui, sans-serif;
}

/* NAV */
.tool-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  border-bottom: 1px solid var(--tool-border);
  background: var(--tool-bg);
}

.tool-nav .nav-logo {
  font-family: var(--tool-serif);
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--tool-blue) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.tool-nav-links {
  display: flex;
  gap: 8px;
}

.nav-tool-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--tool-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.15s;
}

.nav-tool-link:hover {
  color: var(--tool-white);
  border-color: var(--tool-border);
}

.nav-tool-link.active {
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border-color: rgba(34, 211, 160, 0.3);
}

.nav-back {
  font-size: 13px;
  color: var(--tool-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-back:hover { color: var(--tool-white); }

/* HERO */
.tool-hero {
  padding: 72px 80px 56px;
  text-align: center;
  border-bottom: 1px solid var(--tool-border);
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  border: 1px solid rgba(34, 211, 160, 0.3);
  background: rgba(34, 211, 160, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.tool-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

.tool-hero h1 {
  font-family: var(--tool-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  color: var(--tool-white);
  margin-bottom: 20px;
}

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

.tool-sub {
  font-size: 17px;
  color: var(--tool-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* FORM SECTION */
.tool-form-section {
  padding: 64px 80px 100px;
}

.tool-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-error-msg {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 28px;
}

.tool-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tool-form .form-group {
  margin-bottom: 24px;
}

.tool-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 8px;
}

.tool-form input,
.tool-form textarea,
.tool-form select {
  width: 100%;
  background: var(--tool-surface);
  border: 1px solid var(--tool-border);
  color: var(--tool-white);
  font-family: var(--tool-sans);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.tool-form input:focus,
.tool-form textarea:focus,
.tool-form select:focus { border-color: var(--tool-blue); }
.tool-form input::placeholder,
.tool-form textarea::placeholder { color: #3a4560; }
.tool-form textarea { resize: vertical; min-height: 100px; }

.tool-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7fa3' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.optional-label {
  font-size: 10px;
  color: var(--tool-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.tool-submit {
  width: 100%;
  background: var(--accent-green);
  color: #000;
  border: none;
  font-family: var(--tool-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.tool-submit:hover { background: #1ec28e; }
.submit-icon { font-size: 16px; }

/* RESULT ACTIONS */
.result-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  align-items: center;
}

.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tool-surface);
  border: 1px solid var(--tool-border);
  color: var(--tool-white);
  font-family: var(--tool-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.15s;
  text-decoration: none;
}

.btn-print:hover { border-color: var(--tool-blue); }

.btn-start-over {
  font-size: 13px;
  color: var(--tool-muted);
  text-decoration: none;
  padding: 10px 16px;
  transition: color 0.15s;
}

.btn-start-over:hover { color: var(--tool-white); }

/* RESULT SECTIONS */
.result-section {
  border: 1px solid var(--tool-border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 24px;
  background: var(--tool-surface);
}

.result-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border: 1px solid rgba(34, 211, 160, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.warning-tag {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

.result-title {
  font-family: var(--tool-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--tool-white);
  margin-bottom: 28px;
}

/* SPRINT GRID */
.sprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sprint-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 24px;
}

.sprint-week-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tool-blue);
  margin-bottom: 8px;
}

.sprint-card h3 {
  font-family: var(--tool-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tool-white);
  margin-bottom: 16px;
}

.sprint-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sprint-action {
  font-size: 13px;
  color: var(--tool-muted);
}

.sprint-checkpoint {
  font-size: 12px;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border: 1px solid rgba(34, 211, 160, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.checkpoint-label {
  font-weight: 400;
  color: var(--tool-muted);
  margin-right: 4px;
}

/* ROADMAP MINI */
.roadmap-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  padding: 20px 24px;
  border-radius: 8px;
}

.roadmap-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-blue);
}

.roadmap-goal {
  font-size: 15px;
  color: var(--tool-white);
  margin-bottom: 8px;
}

.roadmap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--tool-muted);
  background: var(--tool-surface);
  border: 1px solid var(--tool-border);
  padding: 3px 10px;
  border-radius: 20px;
}

.roadmap-target {
  font-family: var(--tool-serif);
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-green);
  white-space: nowrap;
}

/* DAILY TASKS */
.daily-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.daily-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 8px;
  padding: 20px 16px;
}

.daily-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-blue);
  margin-bottom: 12px;
}

.daily-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.daily-card li {
  font-size: 13px;
  color: var(--tool-muted);
  line-height: 1.5;
}

/* OPPORTUNITIES */
.opp-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opp-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.opp-title {
  font-family: var(--tool-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tool-white);
}

.opp-badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.badge-effort, .badge-potential {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge-low { background: rgba(34, 211, 160, 0.1); color: var(--accent-green); border: 1px solid rgba(34, 211, 160, 0.2); }
.badge-medium { background: rgba(79, 142, 247, 0.1); color: var(--tool-blue); border: 1px solid rgba(79, 142, 247, 0.2); }
.badge-high { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-very-high { background: rgba(34, 211, 160, 0.2); color: #22d3a0; border: 1px solid rgba(34, 211, 160, 0.3); }

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

/* REVENUE GRID */
.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rev-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 24px;
}

.rev-card-wide {
  grid-column: 1 / -1;
}

.rev-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 8px;
}

.rev-value {
  font-family: var(--tool-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--tool-white);
}

.rev-notes {
  font-size: 13px;
  color: var(--tool-muted);
  margin-top: 8px;
  line-height: 1.6;
}

/* WARNINGS */
.warnings {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warning-card {
  display: flex;
  gap: 16px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.warning-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.warning-flag {
  font-size: 15px;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 6px;
}

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

.warning-fix::before { content: 'Fix: '; font-weight: 600; color: var(--accent-green); }

/* BRAND NAMES */
.brand-names-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.brand-name-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-name-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--tool-blue);
  letter-spacing: 0.1em;
}

.brand-name-text {
  font-family: var(--tool-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--tool-white);
}

.brand-name-reason {
  font-size: 13px;
  color: var(--tool-muted);
  line-height: 1.6;
}

/* LOGO CONCEPT */
.logo-concept-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 28px;
}

.logo-concept-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.logo-concept-item.full-width { margin-bottom: 20px; }

.logo-concept-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 6px;
}

.logo-concept-value {
  font-size: 14px;
  color: var(--tool-white);
  line-height: 1.6;
}

.logo-colors-preview {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* TAGLINES */
.taglines-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tagline-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 20px 24px;
}

.tagline-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--tool-blue);
  background: var(--blue-dim);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tagline-text {
  font-family: var(--tool-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--tool-white);
}

/* MARKETING */
.marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.marketing-channels, .marketing-budget { background: var(--tool-surface-2); border: 1px solid var(--tool-border); border-radius: 10px; padding: 24px; }

.marketing-channels h3, .marketing-budget h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 16px;
}

.channel-list { display: flex; flex-wrap: wrap; gap: 8px; }

.channel-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border: 1px solid rgba(34, 211, 160, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

.budget-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.budget-cat {
  font-size: 13px;
  color: var(--tool-white);
  width: 140px;
  flex-shrink: 0;
}

.budget-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.budget-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--tool-blue), var(--accent-green));
  border-radius: 4px;
}

.budget-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--tool-blue);
  width: 36px;
  text-align: right;
}

.marketing-month1 {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 24px;
}

.marketing-month1 h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 16px;
}

.month1-steps { display: flex; flex-direction: column; gap: 10px; }

.month1-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--tool-white);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--tool-blue);
  background: var(--blue-dim);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WEBSITE COPY */
.website-copy-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  overflow: hidden;
}

.copy-field {
  padding: 24px;
  border-bottom: 1px solid var(--tool-border);
}

.copy-field:last-child { border-bottom: none; }

.copy-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tool-muted);
  margin-bottom: 8px;
}

.copy-value {
  font-size: 16px;
  color: var(--tool-white);
  line-height: 1.6;
}

.copy-cta {
  display: inline-block;
  background: var(--accent-green);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
}

.about-para {
  font-size: 15px;
  line-height: 1.75;
}

/* LAUNCH CHECKLIST */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--tool-white);
  padding: 12px 16px;
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 8px;
}

.checklist-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--tool-border);
  border-radius: 4px;
  flex-shrink: 0;
}

/* SOCIAL MEDIA PLAN */
.social-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-day-card {
  background: var(--tool-surface-2);
  border: 1px solid var(--tool-border);
  border-radius: 10px;
  padding: 20px 16px;
}

.social-day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tool-blue);
  margin-bottom: 8px;
}

.social-platform-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border: 1px solid rgba(34, 211, 160, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.social-content {
  font-size: 12px;
  color: var(--tool-muted);
  line-height: 1.6;
}

/* CONTRACT DOC */
.contract-doc {
  background: #fff;
  color: #1a1a2e;
  border-radius: 12px;
  padding: 56px;
  font-family: 'DM Sans', Georgia, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contract-doc h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 8px;
}

.contract-doc h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
}

.contract-doc p { margin-bottom: 12px; }
.contract-doc ul { margin: 12px 0 16px 24px; }
.contract-doc li { margin-bottom: 6px; }

.contract-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e2e8f0;
}

.contract-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4f8ef7;
  background: rgba(79, 142, 247, 0.08);
  border: 1px solid rgba(79, 142, 247, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.contract-date {
  font-size: 13px;
  color: #64748b;
}

.contract-section { margin-bottom: 28px; }

.contract-highlight {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0;
}

.contract-highlight p { font-size: 14px; margin-bottom: 6px; }

.invoice-header { text-align: left; }
.invoice-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.invoice-meta h2 { font-size: 32px; font-weight: 900; color: #1a1a2e; }
.invoice-details { text-align: right; }
.invoice-details p { font-size: 13px; color: #64748b; }
.invoice-from-to { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.invoice-from-to .label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #64748b; margin-bottom: 8px; }
.invoice-from-to p { font-size: 14px; color: #1a1a2e; }

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.invoice-table th {
  background: #f1f5f9;
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
}

.invoice-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #1a1a2e;
}

.invoice-total { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.total-row { display: flex; gap: 40px; font-size: 14px; }
.total-row span:first-child { color: #64748b; width: 120px; text-align: right; }
.total-row span:last-child { color: #1a1a2e; min-width: 100px; text-align: right; }
.total-final span { font-weight: 700; font-size: 18px; color: #1a1a2e !important; }

.contract-signatures { margin-top: 48px; }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px; }
.sig-block { display: flex; flex-direction: column; gap: 8px; }
.sig-line { border-bottom: 1px solid #1a1a2e; height: 40px; margin: 8px 0; }

.contract-footer-note {
  margin-top: 40px;
  padding: 16px;
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: 8px;
  font-size: 12px;
  color: #854d0e;
  line-height: 1.6;
}

/* TOOL FOOTER */
.tool-footer {
  border-top: 1px solid var(--tool-border);
}

/* BOTTOM RESULT ACTIONS */
.result-actions.bottom {
  margin-top: 40px;
  margin-bottom: 0;
  padding-top: 32px;
  border-top: 1px solid var(--tool-border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tool-nav { padding: 16px 32px; }
  .tool-hero { padding: 48px 32px 40px; }
  .tool-form-section { padding: 48px 32px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .sprint-grid { grid-template-columns: 1fr; }
  .roadmap-row { grid-template-columns: 80px 1fr; }
  .roadmap-target { display: none; }
  .daily-grid { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid { grid-template-columns: 1fr; }
  .rev-card-wide { grid-column: auto; }
  .brand-names-grid { grid-template-columns: 1fr; }
  .marketing-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .social-plan-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-grid { grid-template-columns: 1fr; }
  .contract-doc { padding: 32px 24px; }
  .invoice-from-to { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .tool-nav-links { display: none; }
  .tool-hero h1 { font-size: 30px; }
  .daily-grid { grid-template-columns: 1fr; }
  .social-plan-grid { grid-template-columns: 1fr; }
  .opp-header { flex-direction: column; }
}