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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Header */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  text-decoration: none;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn img {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}

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

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: white;
}

.cta-large {
  padding: 20px 56px;
  font-size: 1.25rem;
}

.cta-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 28px;
  font-size: 1rem;
  z-index: 1000;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

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

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

/* Specific section types */
.features-section,
.how-it-works-section {
  /* Inherits base section padding */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Steps */
.steps-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-detailed {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-detailed h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.step-detailed p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Steps on homepage (simple version) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.step p {
  color: var(--text-light);
  margin: 0;
}

.step-list {
  list-style: none;
  text-align: left;
  padding: 0;
}

.step-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
}

.step-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* Features Overview (used in How It Works page) */
.features-overview {
  margin-top: 80px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary);
}

.cta-section .cta-btn:hover {
  background: var(--bg-alt);
}

/* Safety Section */
.safety-section {
  background: var(--bg);
}

.safety-features {
  max-width: 800px;
  margin: 0 auto;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.safety-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.safety-item h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.safety-item p {
  color: var(--text-light);
  margin: 0;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.policy-content,
.terms-content {
  max-width: 800px;
}

.policy-content h2,
.terms-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 24px;
}

.policy-content p,
.terms-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-content ul,
.terms-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-light);
}

.policy-content li,
.terms-content li {
  margin-bottom: 12px;
}

.policy-links,
.terms-links {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.text-link {
  font-weight: 600;
  color: var(--primary);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.contact-form {
  max-width: 600px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.contact-card img {
  width: 40px;
  height: 40px;
}

.contact-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.875rem;
}

.faq-preview {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.faq-preview h3 {
  margin-bottom: 12px;
}

.faq-preview p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Features Showcase */
.features-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.feature-showcase-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.showcase-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.showcase-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.showcase-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.showcase-content ul {
  padding-left: 20px;
  color: var(--text-light);
}

.showcase-content li {
  margin-bottom: 8px;
}

/* Safety Tips Page */
.safety-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
}

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

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

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

.tip-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tip-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.tip-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.safety-reminder {
  max-width: 800px;
  margin: 60px auto;
  padding: 32px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius);
  border-left: 4px solid #f59e0b;
}

.reminder-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.reminder-content img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: none;
}

.reminder-content h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.reminder-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* Performance Stats */
.performance-stats {
  margin-top: 80px;
  padding: 60px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.performance-stats h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Center CTA */
.cta-center {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: var(--radius);
}

.cta-center h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-center p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1);
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content h3 a {
  color: var(--text);
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: var(--primary);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Blog Article */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 48px;
}

.article-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.875rem;
}

.article-meta img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.article-content {
  line-height: 1.8;
}

.article-content .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.article-content h2 {
  font-size: 2rem;
  margin: 56px 0 24px;
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
}

.article-content p {
  margin-bottom: 24px;
  color: var(--text-light);
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-light);
}

.article-content li {
  margin-bottom: 12px;
}

.article-content a {
  color: var(--primary);
  font-weight: 500;
}

.article-content strong {
  color: var(--text);
}

.article-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-light);
}

.article-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.tag {
  padding: 8px 16px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-light);
}

.share-btn {
  padding: 8px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

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

.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-articles h3 {
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.related-card {
  display: block;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.related-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.related-card h4 {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}

/* FAQ */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.2s;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-question img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-contact {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.faq-contact h3 {
  margin-bottom: 12px;
}

.faq-contact p {
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Features Highlight */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.highlight-item {
  text-align: center;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.highlight-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.highlight-item h4 {
  margin-bottom: 12px;
}

.highlight-item p {
  color: var(--text-light);
}

/* Values List */
.values-list {
  margin: 40px 0;
  padding-left: 24px;
}

.values-list li {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.values-list strong {
  color: var(--text);
}

/* CTA Box */
.cta-box {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  border-radius: var(--radius);
}

.cta-box h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-box .cta-btn {
  background: white;
  color: var(--primary);
}

/* Stories */
.stories-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-light);
  font-size: 1.125rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.story-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.story-avatar {
  flex-shrink: 0;
}

.story-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.story-content h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.story-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.story-location img {
  width: 16px;
  height: 16px;
}

.story-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.share-your-story {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.share-your-story h2 {
  margin-bottom: 16px;
}

.share-your-story p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

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

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

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .desktop-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

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

  .mobile-menu-btn {
    display: block;
  }

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

  .feature-showcase-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-icon {
    margin: 0 auto;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-header h1 {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
  }

  .story-card {
    flex-direction: column;
    text-align: center;
  }

  .story-avatar {
    margin: 0 auto;
  }
}

/* Utility Classes */
.lead {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.text-link {
  font-weight: 600;
  color: var(--primary);
}

/* Back to blog link */
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--primary);
  font-weight: 500;
}

/* Mobile menu state */
.mobile-menu-btn[aria-expanded="true"] + .desktop-nav,
.desktop-nav.open {
  display: flex;
}

/* Ensure no horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

/* Form success message */
.form-success {
  text-align: center;
  padding: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-light);
}
