/* ============================================
   style.css - ChatFormats
   Consolidated styles from all pages
   https://chatformats.com/style.css
   ============================================ */

/* ===== DESIGN SYSTEM ===== */
:root, [data-theme="light"] {
  --bg: #f6f4ef;
  --surface: #fbfaf7;
  --surface-2: #f1eee8;
  --line: #d9d4ca;
  --text: #1f1d19;
  --muted: #666257;
  --faint: #918c80;
  --primary: #0a6864;
  --primary-2: #0f4f4e;
  --inverse: #fcfbf8;
  --success: #2f6e3a;
  --warning: #b45f1b;
  --danger: #8b2a3e;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(24,22,18,.08);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Source Serif 4', serif;
  --max: 1200px;
}

[data-theme="dark"] {
  --bg: #151412;
  --surface: #1d1b18;
  --surface-2: #25221e;
  --line: #3a362f;
  --text: #ece7de;
  --muted: #b0a89a;
  --faint: #847c70;
  --primary: #6ab1ad;
  --primary-2: #8cc7c4;
  --inverse: #0f100f;
  --success: #7fbd88;
  --warning: #e7a05c;
  --danger: #d88095;
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===== SKIP TO CONTENT ===== */
.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  z-index: 99;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
}

.logo svg {
  width: 22px;
  height: 22px;
}

.links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  min-height: 46px;
  transition: all 0.2s;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-2);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-large {
  background: var(--primary);
  color: white;
  padding: 16px 36px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-large:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
}

/* ===== THEME TOGGLE ===== */
.theme {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ===== FOOTER ===== */
footer {
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 20px;
}

.foot p, .foot a {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .section-title, .category-title {
  font-family: var(--font-display);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

/* ===== CARDS & GRIDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0 64px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 40px;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
}

/* ===== HERO SECTIONS ===== */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

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

.hero-inner h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-inner .lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 48px 32px;
  margin: 48px 0;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== WORKFLOW STEPS ===== */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0 64px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 48px 0;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 1rem;
}

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

.check-yes {
  color: var(--success);
  font-weight: 600;
}

.check-no {
  color: var(--danger);
}

/* ===== FAQ STYLES ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-question-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
}

.faq-answer {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
  padding-left: 40px;
  display: block;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== CATEGORY BUTTONS ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 40px;
}

.cat-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== PRICING CARDS ===== */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card.featured {
  border-top: 4px solid var(--primary);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan-name {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 20px 0 8px;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.feature-list {
  list-style: none;
  margin: 24px 0 28px;
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--primary);
  font-weight: bold;
  font-style: normal;
}

/* ===== ALERTS & BADGES ===== */
.alert {
  padding: 16px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.alert-success {
  background: color-mix(in srgb, var(--success) 15%, transparent);
  border-left: 4px solid var(--success);
  color: var(--success);
}

.alert-error {
  background: color-mix(in srgb, var(--danger) 15%, transparent);
  border-left: 4px solid var(--danger);
  color: var(--danger);
}

.alert-warning {
  background: color-mix(in srgb, var(--warning) 15%, transparent);
  border-left: 4px solid var(--warning);
  color: var(--warning);
}

.alert-info {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  border-left: 4px solid var(--primary);
  color: var(--primary);
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 40px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ===== FORMS ===== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  margin: 32px 0;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

input, .faq-search input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border 0.2s;
}

input:focus, .faq-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(10,104,100,0.1);
}

input::placeholder {
  color: var(--faint);
}

.help-text {
  font-size: 0.8rem;
  color: var(--faint);
  margin-top: 6px;
}

.inline-code {
  font-family: monospace;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.token-output {
  background: var(--surface-2);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--line);
  display: none;
}

.token-output.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.token-code {
  font-family: monospace;
  font-size: 0.9rem;
  background: var(--bg);
  padding: 20px;
  border-radius: 14px;
  word-break: break-all;
  margin: 16px 0;
  border: 1px solid var(--line);
}

.copy-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: var(--surface-2);
}

.loading {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 64px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CONTACT PAGE ===== */
.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.google-form-container {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}

.google-form-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.google-form-wrapper iframe {
  width: 100%;
  height: 1650px;
  border: none;
  background: transparent;
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-content a {
  color: var(--primary);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success);
  color: white;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.business-hours {
  background: var(--surface-2);
  border-radius: 20px;
  padding: 20px;
  margin-top: 24px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--faint);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.quick-links {
  background: var(--surface-2);
  border-radius: 28px;
  padding: 48px 40px;
  margin-bottom: 48px;
  text-align: center;
}

.links-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.quick-link-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quick-link-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== CTA SECTIONS ===== */
.cta-home, .cta-demo, .cta-security, .cta-outro {
  background: var(--text);
  color: var(--inverse);
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
  margin: 56px 0 32px;
}

.cta-home h2, .cta-demo h2, .cta-security h2, .cta-outro h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.cta-home p, .cta-demo p, .cta-security p, .cta-outro p {
  color: #d4cec2;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-home .btn, .cta-demo .btn, .cta-security .btn, .cta-outro .btn {
  background: var(--inverse);
  color: var(--text);
}

/* ===== SECURITY PAGE ===== */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0 24px;
}

.flow-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.flow-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.flow-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.flow-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0 40px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.info-card ul, .info-card p {
  color: var(--muted);
  margin-top: 8px;
}

.info-card li {
  margin-left: 20px;
  margin-bottom: 8px;
}

.placeholder-note {
  background: var(--surface-2);
  border-left: 4px solid var(--primary);
  padding: 18px;
  border-radius: 16px;
  margin: 20px 0;
  font-size: 0.9rem;
}

/* ===== LEGAL PAGES (Disclaimer, Privacy, Terms) ===== */
.disclaimer-hero, .privacy-hero, .terms-hero {
  padding: 64px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.disclaimer-hero h1, .privacy-hero h1, .terms-hero h1 {
  font-size: clamp(38px, 5vw, 54px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.legal-warning {
  background: var(--surface-2);
  border-left: 4px solid var(--danger);
  padding: 16px 24px;
  border-radius: 20px;
  margin: 24px auto 20px;
  max-width: 860px;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-outline {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 32px;
  margin: 20px 0 28px;
}

.disclaimer-grid, .privacy-grid, .terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0 24px;
}

.disclaimer-card, .privacy-card, .terms-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.disclaimer-card h3, .privacy-card h3, .terms-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.disclaimer-card p, .privacy-card p, .terms-card p,
.disclaimer-card li, .privacy-card li, .terms-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.disclaimer-card ul, .privacy-card ul, .terms-card ul {
  margin-top: 12px;
  padding-left: 20px;
}

.contact-line {
  background: var(--surface-2);
  border-radius: 20px;
  padding: 28px;
  margin: 32px 0 24px;
  text-align: center;
}

.contact-line a {
  color: var(--primary);
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  padding: 80px 20px;
  text-align: center;
}

.thankyou-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 88px;
  height: 88px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 52px;
  color: white;
}

.next-steps {
  background: var(--surface-2);
  border-radius: 24px;
  padding: 28px;
  margin: 32px 0;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  padding-left: 0;
}

.next-steps li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.next-steps li span:first-child {
  font-size: 1.3rem;
  min-width: 40px;
}

.contact-options {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-options a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== 404 PAGE ===== */
.error-container {
  max-width: 600px;
  text-align: center;
}

.error-container h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 120px;
  color: #0a6864;
  margin-bottom: 20px;
}

.error-container h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.error-container p {
  color: #666257;
  margin-bottom: 32px;
}

/* ===== INFO BANNER ===== */
.info-banner {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.info-banner strong {
  color: var(--primary);
}

/* ===== STEPS CONTAINER ===== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

/* ===== PRICING BANNER ===== */
.pricing-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  color: white;
  margin: 32px 0;
}

.pricing-banner .btn {
  background: white;
  color: var(--primary);
}

/* ===== ACTIVATION BANNER ===== */
.activation-banner {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: 24px;
  padding: 28px 32px;
  margin: 32px 0 48px;
  border-left: 4px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== ROI BANNER ===== */
.roi-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 24px;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
  color: white;
}

/* ===== PERSONA GRID ===== */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0 56px;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.persona-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* ===== DELIVERABLES GRID ===== */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0 64px;
}

.deliverable-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
}

.deliverable-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

/* ===== AGENDA GRID ===== */
.agenda-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.agenda-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 32px;
  transition: box-shadow 0.2s;
}

.step-number-large {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
}

/* ===== LOGISTICS LIST ===== */
.logistics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
}

.logistics-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

/* ===== PILLAR ROW ===== */
.pillar-row {
  display: flex;
  gap: 28px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.pillar-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border-radius: 28px;
  margin: 40px 0;
  color: var(--muted);
}

/* ===== STILL NEED HELP ===== */
.still-need {
  background: var(--surface-2);
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0 32px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 980px) {
  .grid-3, .grid-4, .workflow, .faq-grid,
  .disclaimer-grid, .privacy-grid, .terms-grid,
  .flow-grid, .persona-grid, .deliverables-grid,
  .logistics-list, .two-col-grid, .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-info {
    position: static;
    order: 2;
  }
  
  .google-form-container {
    order: 1;
  }
  
  .links {
    display: none;
  }
  
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  .pillar-row {
    flex-direction: column;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }
  
  .activation-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .agenda-step {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  
  .step-number-large {
    text-align: center;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons, .trust-badges {
    justify-content: center;
  }
  
  .video-section {
    padding: 32px 24px;
  }
  
  .google-form-wrapper iframe {
    height: 1900px;
  }
}

@media (max-width: 860px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .page-hero h1,
  .disclaimer-hero h1,
  .privacy-hero h1,
  .terms-hero h1,
  .demo-hero h1,
  .contact-hero h1,
  .pricing-hero h1,
  .faq-hero h1 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .section-title,
  .category-title {
    font-size: 1.8rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  .price-card {
    padding: 24px;
  }
  
  .faq-item,
  .disclaimer-card,
  .privacy-card,
  .terms-card,
  .card-outline {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding-left: 28px;
  }
  
  .contact-info,
  .google-form-container,
  .quick-links {
    padding: 24px;
  }
  
  .links-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .quick-link-btn {
    width: 100%;
    justify-content: center;
  }
  
  .thankyou-card {
    padding: 32px 24px;
  }
  
  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 42px;
  }
  
  .next-steps {
    padding: 20px;
  }
  
  .next-steps li {
    font-size: 0.9rem;
  }
  
  .stat-item {
    min-width: auto;
  }
  
  .google-form-wrapper iframe {
    height: 2150px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .error-container h1 {
    font-size: 80px;
  }
}