:root {
  /* Aurora Theme - Northern lights inspired green/cyan */
  --primary: #00e676;
  --primary-light: #66ffa6;
  --primary-dark: #00b248;
  --secondary: #18ffff;
  --secondary-light: #76ffff;
  --secondary-dark: #00cbcc;
  --background: #0d1b2a;
  --surface: #1b263b;
  --surface-hover: #243447;
  --text-primary: #e0f7fa;
  --text-secondary: #80cbc4;
  --error: #ff5252;
  --warning: #ffab40;
  --info: #40c4ff;
  --success: #69f0ae;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 48px;
  --spacing-2xl: 80px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.15);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text-secondary);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(24, 255, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(24, 255, 255, 0.45);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(124, 77, 255, 0.1);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--spacing-xl);
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
nav {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--spacing-md) 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.material-icons {
  font-size: 24px;
  vertical-align: middle;
}

.material-icons.small {
  font-size: 20px;
}

.material-icons.large {
  font-size: 28px;
}

.logo svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
  color: var(--primary-light);
}

.mobile-login {
  display: none;
}

/* Hero Section */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 230, 118, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(24, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(64, 196, 255, 0.08) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-lg);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  box-shadow: var(--shadow-glow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-card-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 230, 118, 0.15);
  color: var(--primary-light);
  font-weight: 500;
}

.tag-secondary {
  background: rgba(24, 255, 255, 0.15);
  color: var(--secondary-light);
}

.tag-success {
  background: rgba(105, 240, 174, 0.15);
  color: var(--success);
}

/* Dream Types Section */
.dream-types {
  padding: var(--spacing-2xl) 0;
  background: var(--surface);
}

.type-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.type-pill {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--background);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.type-pill:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.type-pill.nightmare {
  border-color: var(--error);
  color: var(--error);
}

.type-pill.lucid {
  border-color: var(--info);
  color: var(--info);
}

.type-pill.prophetic {
  border-color: var(--warning);
  color: var(--warning);
}

/* Features Grid */
.features {
  padding: var(--spacing-2xl) 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background: var(--surface);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--surface-hover);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  display: inline-flex;
  padding: 14px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(24, 255, 255, 0.1));
  border-radius: var(--radius-md);
  color: var(--primary-light);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* AI Section */
.ai-section {
  padding: var(--spacing-2xl) 0;
  background: var(--surface);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-demo-card {
  background: var(--background);
  border-radius: var(--radius-xl);
  border: 1px solid var(--primary);
  padding: 28px;
  box-shadow: var(--shadow-glow);
}

.ai-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.ai-demo-section {
  margin-bottom: 16px;
}

.ai-demo-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-demo-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ai-symbols {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-symbol {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 230, 118, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.ai-symbol-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.ai-symbol-badge.high {
  background: rgba(255, 82, 82, 0.2);
  color: var(--error);
}

.ai-symbol-badge.medium {
  background: rgba(255, 171, 64, 0.2);
  color: var(--warning);
}

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

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

.feature-list i {
  color: var(--success);
  margin-top: 4px;
}

/* Emotions Section */
.emotions-section {
  padding: var(--spacing-2xl) 0;
}

.emoji-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
}

.emoji-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  min-width: 100px;
}

.emoji-item:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
}

.emoji-icon {
  font-size: 2.5rem;
}

.emoji-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Analytics Section */
.analytics {
  padding: var(--spacing-2xl) 0;
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: var(--background);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 500;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.analytics-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.analytics-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.analytics-feature i {
  color: var(--primary-light);
}

/* Calendar Preview */
.calendar-section {
  padding: var(--spacing-2xl) 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calendar-preview {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.calendar-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  margin-bottom: 8px;
}

.calendar-day-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.calendar-date.has-dream {
  background: rgba(0, 230, 118, 0.2);
  color: var(--primary-light);
  font-weight: 600;
}

.calendar-date.has-dream::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
}

.calendar-date.today {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

/* Security & Export */
.trust-section {
  padding: var(--spacing-2xl) 0;
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--background);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateX(4px);
}

.trust-card:nth-child(2) {
  border-left-color: var(--secondary);
}

.trust-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}

.trust-card h3 i {
  color: var(--primary-light);
}

.trust-card:nth-child(2) h3 i {
  color: var(--secondary);
}

/* Pricing */
.pricing {
  padding: var(--spacing-2xl) 0;
}

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

.price-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: var(--text-primary);
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
}

.price-card .feature-list {
  text-align: left;
  margin: 24px 0;
}

.price-card .btn {
  width: 100%;
  margin-top: 8px;
}

.price-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.payment-badge {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.stripe-badge {
  height: 28px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.stripe-badge:hover {
  opacity: 1;
}

/* Footer */
footer {
  background: #12121f;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-payment {
  margin-top: 20px;
}

.footer-payment .stripe-badge {
  height: 24px;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--spacing-2xl);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header h1 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-sm);
}

.legal-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.legal-section p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.legal-section ul {
  list-style: none;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.legal-section ul li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-section a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(0, 230, 118, 0.3);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}

.legal-section strong {
  color: var(--text-primary);
}

/* Cookie/GDPR Tables */
.cookie-table,
.data-table {
  overflow-x: auto;
  margin: var(--spacing-lg) 0;
}

.cookie-table table,
.data-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td,
.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-table th,
.data-table th {
  background: rgba(0, 230, 118, 0.1);
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-table td,
.data-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-table tr:hover,
.data-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* GDPR Rights Cards */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.right-card {
  background: var(--surface);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.right-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.right-card .material-icons {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.right-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.right-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-sm);
  margin: var(--spacing-md) 0;
}

.info-box p {
  margin-bottom: var(--spacing-sm);
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid,
  .split-layout,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .mobile-login {
    display: inline-flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .emoji-grid {
    gap: 10px;
  }

  .emoji-item {
    min-width: 80px;
    padding: 14px 16px;
  }

  .emoji-icon {
    font-size: 2rem;
  }

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

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

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

  /* Legal pages responsive */
  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

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

  .cookie-table table,
  .data-table table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td,
  .data-table th,
  .data-table td {
    padding: 10px 12px;
  }
}
