/* ==========================================================================
   Pertui AI & n8n DM Generator Workflow - Monochrome Design System
   Color Palette: Pure Black (#000000), White (#FFFFFF), and Grays (#171717 - #A3A3A3)
   ========================================================================== */

:root {
  /* Strict Monochrome Color Palette */
  --bg-main: #000000;
  --bg-subtle: #0a0a0a;
  --surface-card: #121212;
  --surface-card-hover: #1a1a1a;
  --border-subtle: #262626;
  --border-hover: #404040;

  /* Primary & Accent (Pure White & Grays) */
  --primary: #ffffff;
  --primary-hover: #e5e5e5;
  --primary-glow: rgba(255, 255, 255, 0.15);

  --accent-gray: #a3a3a3;
  --muted-gray: #737373;
  --dark-gray: #171717;

  /* Status Colors (Monochrome High-Contrast) */
  --status-bg: #171717;
  --status-border: #404040;
  --status-text: #ffffff;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-tertiary: #737373;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle Monochrome Ambient Spotlight */
.bg-ambient-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 500px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

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

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: #ffffff;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.text-success { color: #ffffff; }

/* Monochrome Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-md {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

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

.btn-accent {
  background: #262626;
  color: #ffffff;
  border: 1px solid #404040;
}

.btn-accent:hover {
  background: #404040;
  border-color: #525252;
  transform: translateY(-1px);
}

.btn-outline {
  background: #0a0a0a;
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: #171717;
  border-color: var(--border-hover);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pertui-header-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.pertui-header-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
}

.pertui-footer-logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.brand-badge {
  background: #171717;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-counter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #171717;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: #121212;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-eyebrow .badge-icon {
  color: #ffffff;
}

.hero-eyebrow .divider {
  color: var(--text-tertiary);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.trust-microcopy {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.trust-microcopy span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Monochrome Platform Bar */
.platform-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}

.platform-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.platform-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Section Common */
.section-header {
  margin-bottom: 44px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #171717;
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* Proof Section */
.proof-section {
  padding: 70px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-card-hover);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-tertiary);
  opacity: 0.5;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: #171717;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Monochrome Live Simulator Wrapper */
.demo-wrapper {
  background: #0a0a0a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.demo-header {
  background: #121212;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #404040;
}

.window-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-tertiary);
}

.demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

@media (max-width: 860px) {
  .demo-body {
    grid-template-columns: 1fr;
  }
}

.demo-terminal {
  background: #000000;
  padding: 20px;
  border-right: 1px solid var(--border-subtle);
  font-family: 'JetBrains Mono', 'Fira Code', monospace, sans-serif;
  display: flex;
  flex-direction: column;
}

.terminal-bar {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.825rem;
  line-height: 1.5;
  overflow-y: auto;
  max-height: 300px;
}

.log-line {
  word-break: break-all;
}

.log-success { color: #ffffff; font-weight: 600; }
.log-info { color: #a3a3a3; }
.log-warn { color: #d4d4d4; }

/* Monochrome Notion Preview Card */
.demo-notion {
  background: #0f0f0f;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.notion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.notion-tag {
  margin-left: auto;
  font-size: 0.75rem;
  background: #171717;
  border: 1px solid #333333;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
}

.notion-card-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notion-field {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.875rem;
}

.notion-field.full-width {
  flex-direction: column;
  gap: 6px;
}

.field-label {
  color: var(--text-tertiary);
  font-weight: 500;
  min-width: 110px;
  font-size: 0.825rem;
}

.field-value {
  color: var(--text-primary);
  font-weight: 500;
}

.highlight-phrase {
  background: #262626;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.score-badge {
  background: #171717;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.dm-draft-box {
  background: #000000;
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #d4d4d4;
  min-height: 75px;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.result-box {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
}

.result-icon {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.result-box h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.result-box p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Blueprint Section (Lead Capture) */
.blueprint-section {
  padding: 70px 0;
}

.blueprint-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .blueprint-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.blueprint-title {
  font-size: 1.9rem;
  margin-top: 8px;
  margin-bottom: 10px;
}

.blueprint-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.list-icon {
  width: 36px;
  height: 36px;
  background: #171717;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.deliverables-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.deliverables-list p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Optin Form styling */
.blueprint-form-container {
  background: #000000;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  background: #0a0a0a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.input-icon-wrapper input {
  padding-left: 40px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #ffffff;
  background: #121212;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.form-footer {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 6px;
}

/* Section 4: Upsell Section & Comparison Table */
.upsell-section {
  padding: 80px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--surface-card);
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  background: #0a0a0a;
}

.comparison-table .highlight-column {
  background: #171717;
  border-left: 1px solid var(--border-hover);
  border-right: 1px solid var(--border-hover);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Waitlist Card */
.waitlist-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.offer-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: #262626;
  border: 1px solid #404040;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.waitlist-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.waitlist-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* VIP Waitlist Custom Styling */
.vip-waitlist-card {
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid #333333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.vip-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.vip-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0 32px 0;
}

.vip-perk-card {
  background: #171717;
  border: 1px solid #282828;
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
}

.vip-perk-card:hover {
  border-color: #555555;
  transform: translateY(-2px);
  background: #1c1c1c;
}

.vip-perk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vip-icon {
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
}

.vip-perk-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.vip-perk-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

.vip-form-box {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.vip-perk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vip-perk-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vip-perk-meta i {
  color: var(--text-secondary);
}

.waitlist-form {
  max-width: 580px;
}

.waitlist-input-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .waitlist-input-group {
    flex-direction: column;
  }
}

.waitlist-input-group input {
  flex-grow: 1;
  padding: 12px 16px;
  background: #000000;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Monochrome Modal Overlay & Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #121212;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(10px);
  transition: transform 0.2s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.success-icon {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.warning-icon {
  font-size: 2.5rem;
  color: #a3a3a3;
  margin-bottom: 10px;
}

.modal-header h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-callout {
  background: #171717;
  border: 1px solid var(--border-subtle);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.modal-callout h4 {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-callout p {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.modal-offer-box {
  background: #000000;
  border: 1px solid var(--border-subtle);
  padding: 18px;
  border-radius: var(--radius-md);
}

.modal-offer-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.modal-offer-box h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.modal-offer-box p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .header-actions {
    display: none;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
