/* ========================================
   GoToMarket Pro — Landing Page Styles
   Inspired by ElevenLabs, Duna, Notion
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --bg-dark: #0d0d0d;
  --bg-muted: #f3f1ee;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #9a9a9a;
  --accent: #ff5c35;
  --accent-hover: #e8482a;
  --accent-light: #fff4f1;
  --border: #e8e5e1;
  --border-light: #f0ede9;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

img {
  max-width: 100%;
  display: block;
}

/* --- Typography --- */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--bg-dark);
  color: #fff;
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  font-size: 22px;
}

.logo-pro {
  color: var(--accent);
}

.logo-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* --- Hero --- */
.hero {
  padding: 140px 0 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid #ffe0d6;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}

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

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

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Hero Visual / Demo --- */
.hero-visual {
  margin-top: 64px;
  perspective: 1200px;
}

.hero-demo {
  position: relative;
}

.demo-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.demo-dots span:first-child { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:last-child { background: #28ca41; }

.demo-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.demo-content {
  padding: 24px;
  text-align: left;
}

.demo-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 320px;
}

/* Slack panel — realistic */
.demo-slack {
  padding-right: 24px;
  background: #fff;
  border-radius: 8px;
}

.slack-sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #4A154B;
  border-radius: 8px 8px 0 0;
  color: #fff;
}

.slack-channel-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-messages {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.demo-msg {
  display: flex;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: var(--delay, 0s);
}

.demo-msg:hover {
  background: #f8f8f8;
}

.demo-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  flex-shrink: 0;
}

.demo-msg-body {
  flex: 1;
}

.demo-msg-header {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.demo-msg-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.demo-msg-time {
  font-size: 11px;
  color: var(--text-muted);
}

.demo-msg-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #1d1c1d;
  margin-top: 2px;
  text-align: left;
}

/* Arrow */
.demo-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--accent);
}

.demo-arrow-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin-bottom: 8px;
  border-radius: 1px;
}

/* HubSpot panel — Activities tab view */
.demo-hubspot {
  padding-left: 24px;
  border-left: 1px solid var(--border-light);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.hs-tabs {
  display: flex;
  border-bottom: 2px solid #eaf0f6;
  background: #f5f8fa;
}

.hs-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #7c98b6;
  cursor: default;
  position: relative;
}

.hs-tab-active {
  color: #33475b;
  font-weight: 600;
}

.hs-tab-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff7a59;
}

.hs-activity-feed {
  padding: 16px;
}

.hs-note {
  border-left: 3px solid #ff7a59;
  padding-left: 14px;
  opacity: 0;
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}

.hs-note-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hs-note-icon {
  width: 24px;
  height: 24px;
  background: #fff4f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-note-title {
  font-size: 12px;
  font-weight: 600;
  color: #33475b;
}

.hs-note-timestamp {
  font-size: 11px;
  color: #99acc2;
  margin-left: auto;
}

.hs-note-body {
  background: #f5f8fa;
  border: 1px solid #eaf0f6;
  border-radius: 6px;
  padding: 14px;
}

.hs-note-label {
  font-size: 14px;
  font-weight: 700;
  color: #33475b;
  margin-bottom: 8px;
}

.hs-note-meta-line {
  font-size: 12px;
  color: #7c98b6;
  margin-bottom: 3px;
}

.hs-note-author {
  font-size: 13px;
  font-weight: 600;
  color: #33475b;
  margin: 10px 0 4px;
}

.hs-note-message {
  font-size: 13px;
  color: #33475b;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hs-note-replies {
  border-top: 1px solid #dde4eb;
  padding-top: 10px;
}

.hs-reply {
  font-size: 12px;
  color: #516f90;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid #eaf0f6;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: var(--delay, 0s);
}

.hs-reply:last-child {
  border-bottom: none;
}

.hs-reply strong {
  color: #33475b;
}

/* Breeze AI card */
.hs-ai-card {
  margin-top: 14px;
  background: linear-gradient(135deg, #faf5ff 0%, #f0e8ff 100%);
  border: 1px solid #e4d5f0;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}

.hs-ai-card-header {
  padding: 8px 14px;
  border-bottom: 1px solid #e4d5f0;
}

.hs-ai-card-body {
  padding: 12px 14px;
  font-size: 13px;
  color: #5a3e7a;
  line-height: 1.6;
}

.demo-ai-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #8b5cf6;
  margin-bottom: 4px;
}

/* Slack date divider */
.slack-date-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 8px;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: var(--delay, 0s);
}

.slack-date-divider::before,
.slack-date-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.slack-date-divider span {
  padding: 2px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1d1c1d;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  background: #fff;
  white-space: nowrap;
}

/* Slack thread indicator */
.slack-thread-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 4px 0;
  cursor: pointer;
}

.thread-avatars img {
  border-radius: 3px;
}

.thread-count {
  font-size: 12px;
  font-weight: 700;
  color: #1264a3;
}

.thread-time {
  font-size: 12px;
  color: var(--text-muted);
}

.slack-thread-indicator:hover .thread-count {
  text-decoration: underline;
}

/* Slack context bar */
.slack-context-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin: 4px 0 0;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 12px;
  color: #616061;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Slack message composer */
.slack-composer {
  padding: 8px 12px 12px;
  background: #fff;
}

.slack-composer-inner {
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  padding: 10px 14px;
}

.slack-composer-placeholder {
  font-size: 13px;
  color: #b0b0b0;
}

/* HubSpot thread tag */
.hs-thread-tag {
  font-size: 11px;
  color: #7c98b6;
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Logo Wall --- */
.logos {
  padding: 80px 0;
  text-align: center;
}

.logos-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logo-item {
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-img {
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.logo-img-dark {
  filter: grayscale(100%) brightness(0.6);
}

.logo-item:hover .logo-img {
  filter: none;
  opacity: 1;
}

.logo-text-label {
  font-size: 14px;
  font-weight: 600;
  color: #8a8a8a;
}

.logo-text-brand {
  font-size: 16px;
  font-weight: 700;
  color: #999;
  letter-spacing: -0.3px;
}

/* --- Problem Section --- */
.problem {
  padding: 80px 0 100px;
  text-align: center;
}

.problem-content {
  max-width: 720px;
  margin: 0 auto;
}

.problem-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.problem-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --- Features Bento Grid --- */
.features {
  padding: 100px 0;
  text-align: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.bento-card:hover {
  border-color: #d0cdc8;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bento-large {
  padding: 40px;
}

.bento-large {
  grid-column: span 3;
}

.bento-small {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--text);
}

.bento-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-visual {
  margin-top: 24px;
}

/* Sync animation */
.sync-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.sync-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.sync-dot-1 {
  background: #E01E5A;
  animation: syncPulse 2s ease-in-out infinite;
}

.sync-dot-2 {
  background: #ff5c35;
  animation: syncPulse 2s ease-in-out infinite 1s;
}

.sync-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #E01E5A, #ff5c35);
  position: relative;
  overflow: hidden;
}

.sync-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: syncFlow 1.5s ease-in-out infinite;
}

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

@keyframes syncFlow {
  0% { left: -30%; }
  100% { left: 130%; }
}

/* Object pills */
.objects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.object-pill {
  padding: 6px 14px;
  background: var(--bg-muted);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.object-pill-custom {
  background: var(--accent-light);
  color: var(--accent);
  border-color: #ffe0d6;
}

/* --- How It Works --- */
.how-it-works {
  padding: 100px 0;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  text-align: left;
}

.step {
  flex: 1;
  max-width: 320px;
  padding: 0 32px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 20px;
}

/* --- AI Section --- */
.ai-section {
  padding: 40px 0 100px;
}

.ai-card {
  background: linear-gradient(135deg, #1a1025 0%, #0d0d0d 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ai-card-content {
  position: relative;
  z-index: 1;
}

.ai-sparkle {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.ai-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.ai-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}

.ai-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ai-benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-benefit strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.ai-benefit p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* --- Proof / Stats --- */
.proof {
  padding: 80px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-stat {
  padding: 32px 16px;
}

.proof-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Pricing --- */
.pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card-trial {
  border-color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
}

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

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: #2EB67D;
  font-weight: 700;
  font-size: 14px;
}

/* --- Bottom CTA --- */
.bottom-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.bottom-cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.bottom-cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand .logo-pro {
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .ai-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .logo-tagline {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

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

  .hero {
    padding: 120px 0 0;
  }

  .hero-title {
    letter-spacing: -0.8px;
  }

  .demo-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .demo-slack {
    padding-right: 0;
  }

  .demo-hubspot {
    padding-left: 0;
    border-left: none;
    padding-top: 0;
  }

  .demo-arrow {
    flex-direction: row;
    padding: 12px 0;
  }

  .demo-arrow-line {
    width: 40px;
    height: 2px;
    margin-bottom: 0;
    margin-right: 8px;
    background: linear-gradient(to right, transparent, var(--accent));
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-small {
    grid-column: span 1;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step {
    max-width: 100%;
    padding: 0;
  }

  .step-divider {
    width: 100%;
    height: 1px;
    margin-top: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

  .logos-row {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .demo-content {
    padding: 16px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}
