/* ========================================
   TMM Solutions — AI Lead & Appointment Accelerator
   Landing Page Theme
   ======================================== */

:root {
  --bg-primary: #0b0f1a;
  --bg-secondary: #111827;
  --bg-card: #1a2332;
  --teal: #00E5CC;
  --teal-dim: #00c4ae;
  --amber: #f59e0b;
  --amber-dim: #d97706;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e2d40;
}

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

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== SHARED ===== */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  padding-right: 64px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.amber {
  color: var(--amber);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 80px;
  line-height: 1.3;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  position: relative;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ===== HERO (New) ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  background: linear-gradient(180deg, #0b0f1a 0%, #0d1520 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0,229,204,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,229,204,0.08);
  border: 1px solid rgba(0,229,204,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00E5CC;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-teal { color: #00E5CC; }
.hero-sub {
  font-size: 1.05rem;
  color: #7a8fa6;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 28px;
  background: #00E5CC;
  color: #0b0f1a;
  border: none;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: #00c4ae; }
.btn-secondary {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); }

/* ===== PLAYBOOKS ===== */
.playbooks {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.playbooks-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.playbooks-header {
  text-align: center;
  margin-bottom: 56px;
}
.playbooks-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.playbooks-sub {
  font-size: 1rem;
  color: #7a8fa6;
  max-width: 500px;
  margin: 0 auto;
}
.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.playbook-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.playbook-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-bestseller {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.25);
}
.badge-new {
  background: rgba(0,229,204,0.1);
  color: #00E5CC;
  border: 1px solid rgba(0,229,204,0.2);
}
.badge-bonus {
  background: rgba(0,229,204,0.06);
  color: #00E5CC;
  border: 1px solid rgba(0,229,204,0.15);
  font-size: 0.65rem;
}
.playbook-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.playbook-subtitle {
  font-size: 0.8rem;
  color: #7a8fa6;
  margin-bottom: 16px;
  line-height: 1.5;
  font-style: italic;
}
.playbook-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.playbook-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.playbook-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #00E5CC;
}
.btn-buy {
  padding: 10px 22px;
  background: #00E5CC;
  color: #0b0f1a;
  border: none;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-buy:hover { background: #00c4ae; }
.playbooks-guarantee {
  text-align: center;
  padding: 20px 24px;
  background: rgba(0,229,204,0.05);
  border: 1px solid rgba(0,229,204,0.12);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #7a8fa6;
}
.playbooks-guarantee strong { color: #00E5CC; }

/* ===== SERVICES ===== */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.services-sub {
  font-size: 1rem;
  color: #7a8fa6;
  max-width: 520px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.service-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00E5CC;
  margin-bottom: 12px;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.service-pricing {
  margin-bottom: 20px;
}
.service-setup {
  font-size: 0.75rem;
  color: #7a8fa6;
  margin-bottom: 4px;
}
.service-monthly {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}
.service-monthly span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #7a8fa6;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%2300E5CC' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300E5CC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 2px;
}
.services-guarantee {
  text-align: center;
  font-size: 0.9rem;
  color: #7a8fa6;
}
.services-guarantee strong { color: #00E5CC; }

/* ===== AFFILIATE ===== */
.affiliate {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.affiliate-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.affiliate-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.affiliate-headline span { color: #00E5CC; }
.affiliate-sub {
  font-size: 1rem;
  color: #7a8fa6;
  line-height: 1.7;
  margin-bottom: 32px;
}
.affiliate-commission-table {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.commission-item {
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
}
.commission-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00E5CC;
  margin-bottom: 6px;
}
.commission-label {
  font-size: 0.75rem;
  color: #7a8fa6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== YOUTUBE ===== */
.youtube {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.youtube-header {
  text-align: center;
  margin-bottom: 48px;
}
.youtube-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.youtube-sub {
  font-size: 0.95rem;
  color: #7a8fa6;
  max-width: 480px;
  margin: 0 auto;
}
.youtube-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.youtube-channel-icon {
  width: 80px;
  height: 80px;
  background: rgba(0,229,204,0.08);
  border: 1px solid rgba(0,229,204,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.youtube-channel-info {
  text-align: left;
}
.youtube-channel-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.youtube-channel-desc {
  font-size: 0.88rem;
  color: #7a8fa6;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 20px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 32px;
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 0.95rem;
  color: #7a8fa6;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4a5a6a;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00E5CC;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8fa6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  padding: 20px;
  background: rgba(0,229,204,0.08);
  border: 1px solid rgba(0,229,204,0.2);
  border-radius: 8px;
  text-align: center;
  color: #00E5CC;
  font-weight: 600;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 20px;
}
.availability-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.footer-mission {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.6;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .playbooks-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }
  .footer-inner {
    flex-direction: column;
    padding: 40px 24px;
  }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; max-width: 320px; text-align: center; }
  .contact-inner { padding: 64px 20px; }
  .youtube-channel { flex-direction: column; text-align: center; gap: 16px; }
  .youtube-channel-info { text-align: center; }
}