/* === CSS VARIABLES === */
:root {
  /* Color Palette */
  --clr-primary: #122c4d; /* Deep Blue - Autorevolezza, Sicurezza */
  --clr-secondary: #2B5E4A; /* Elegant Green - Rassicurante, Crescita */
  --clr-secondary-light: #3e8167; 
  --clr-accent: #d4af37; /* Gold Accent - Valore */
  --clr-accent-light: #f5eed3;
  --clr-bg-light: #f8fafc; /* Grigio chiarissimo per sfondi */
  --clr-bg-white: #ffffff;
  --clr-text-main: #1f2937; /* Grigio scuro/Antracite per leggibilità */
  --clr-text-light: #4b5563; /* Grigio per testi secondari */
  --clr-text-inverted: #f8fafc;
  
  /* Borders & Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-family-serif: 'Merriweather', serif; /* Per titoli più eleganti, se necessario */
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Radius */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
}

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

body {
  font-family: var(--font-family-sans);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  color: var(--clr-primary);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: var(--clr-secondary);
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

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

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

/* === TYPOGRAPHY & UTILITIES === */
.text-center { text-align: center; }
.text-light { color: var(--clr-text-light); }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.px-1 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--clr-secondary);
  color: var(--clr-bg-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--clr-secondary-light);
  transform: translateY(-2px);
  color: var(--clr-bg-white);
}

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

.btn-outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-bg-white);
}

.btn-accent {
  background-color: var(--clr-accent);
  color: var(--clr-primary);
}
.btn-accent:hover {
  background-color: #bfa131;
  color: var(--clr-primary);
}

/* === NAVBAR === */
.navbar {
  background-color: var(--clr-bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.navbar-brand span {
  color: var(--clr-secondary);
}

.navbar-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.navbar-menu a {
  color: var(--clr-text-main);
  font-weight: 500;
  font-size: 1.05rem;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--clr-secondary);
}

/* === DROPDOWNS === */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--clr-bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: var(--space-xs) 0;
  z-index: 101;
  border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
  animation: fadeIn 0.15s ease-in-out;
}

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

.nav-dropdown-content a {
  color: var(--clr-text-main);
  padding: 0.75rem var(--space-md);
  display: block;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--clr-bg-light);
  transition: all var(--transition-fast);
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover {
  background-color: var(--clr-bg-light);
  color: var(--clr-secondary);
  padding-left: calc(var(--space-md) + 5px);
}

/* === NAV CTA === */
.nav-cta {
  background-color: var(--clr-secondary);
  color: var(--clr-bg-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background-color: var(--clr-secondary-light);
  transform: translateY(-2px);
  color: var(--clr-bg-white) !important;
}

.navbar-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--clr-primary);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, var(--clr-bg-light) 0%, var(--clr-bg-white) 100%);
  padding: calc(var(--space-xxl) * 1.5) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-accent-light) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.25rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
  background-color: var(--clr-primary);
  color: var(--clr-text-inverted);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 2px solid var(--clr-accent);
}
.trust-bar-flex {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  color: var(--clr-text-inverted);
}
.trust-item span { color: var(--clr-accent); font-size: 1.2rem; }

/* === COLORED SECTIONS === */

.bg-primary { background-color: var(--clr-primary); color: var(--clr-text-inverted); }
.bg-primary h2, .bg-primary p { color: var(--clr-text-inverted); }

.bg-white { background-color: var(--clr-bg-white); }
.bg-light { background-color: var(--clr-bg-light); }


/* === MISSION SECTION === */
.mission-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.mission-section h2 {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
}
.mission-section p {
  font-size: 1.15rem;
  color: var(--clr-text-light);
}

/* === CARD === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.article-card {
  background-color: var(--clr-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--clr-accent);
}

.article-card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-xs);
}

.article-category {
  color: var(--clr-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.article-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-primary);
}

.article-card-excerpt {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

/* === CATEGORY SECTION === */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.category-pill {
  background-color: var(--clr-bg-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--clr-primary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.category-pill:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-bg-white);
  border-color: var(--clr-secondary);
  transform: translateY(-2px);
}

/* === WHO IS THIS FOR === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.feature-item {
  background-color: var(--clr-bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--clr-accent-light);
  color: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 0;
}


/* === NEWSLETTER === */
.newsletter-section {
  text-align: center;
  padding: var(--space-xxl) 0;
}

.newsletter-box {
  background-color: var(--clr-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
  margin: 0 auto;
  color: var(--clr-text-inverted);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.newsletter-box h2 {
  color: var(--clr-text-inverted);
  font-size: 2rem;
  position: relative;
}

.newsletter-box p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* === AUTHOR SECTION === */
.author-section {
  background-color: var(--clr-bg-white);
}

.author-flex {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.author-image {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  background: white;
}

.author-content h1,
.author-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-primary);
}

.author-content p {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.author-content .lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}

/* === FOOTER === */
.footer {
  background-color: var(--clr-primary);
  color: #94a3b8;
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  color: var(--clr-bg-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.footer-links h4 {
  color: var(--clr-bg-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.footer-links ul li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal a {
  color: #94a3b8;
  margin-left: var(--space-md);
  font-size: 0.8rem;
}


/* === ARTICLE PAGE DETAILS === */
.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.article-header h1 {
  font-size: 2.8rem;
  margin-bottom: var(--space-sm);
}

.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--clr-text-main);
  line-height: 1.8;
}

.article-body h2 {
  font-size: 2rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-body h3 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.article-body p {
  margin-bottom: var(--space-md);
}

.article-key-concept {
  background-color: var(--clr-bg-white);
  border-left: 4px solid var(--clr-secondary);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.breadcrumbs a {
  color: var(--clr-text-light);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.breadcrumbs a:hover {
  color: var(--clr-secondary);
  text-decoration-color: var(--clr-secondary);
}
.breadcrumbs span {
  margin: 0 0.5rem;
  color: #cbd5e1;
}

/* === LAYOUT SIDEBAR (BLOG) === */
.layout-sidebar {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sidebar-widget {
  background-color: var(--clr-bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--clr-bg-light);
}

.sidebar-link-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-link-list a {
  color: var(--clr-text-main);
  font-weight: 500;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--clr-bg-light);
}

.sidebar-link-list a:hover {
  color: var(--clr-secondary);
  padding-left: 5px;
}

.pillar-banner {
  background-color: var(--clr-accent-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--clr-accent);
}
.pillar-banner h4 {
  color: var(--clr-primary);
  margin-bottom: var(--space-xs);
}

/* === ARTICLE READING LAYOUT (TOC) === */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-xl);
  align-items: start;
}

.sticky-sidebar {
  position: sticky;
  top: 100px; /* Offset for navbar */
}

.toc-widget h3 {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toc-list a {
  font-size: 0.95rem;
  color: var(--clr-text-main);
}
.toc-list a:hover {
  color: var(--clr-secondary);
  font-weight: 600;
}

/* === RELATED ARTICLES === */
.related-articles {
  margin-top: var(--space-xxl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-color);
}
.related-articles h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .author-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sticky-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-bottom: var(--space-md);
  }

  /* Blog sidebar mobile layout */
  .layout-sidebar {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  /* Mobile general improvements */
  .container { padding: 0 var(--space-sm) !important; }
  .section { padding: var(--space-xl) 0 !important; }
  .newsletter-box, .waitlist-box { 
    padding: var(--space-lg) var(--space-sm) !important; 
    max-width: 100% !important; 
    box-sizing: border-box !important; 
    overflow: hidden !important; 
  }
  .article-body { padding: 0 var(--space-xs); }

  .hero h1 { font-size: 2.5rem; }
  .grid-3, .grid-2, .features-grid, .footer-grid, .article-layout, .layout-sidebar { grid-template-columns: 1fr; }
  
  .navbar-menu {
    display: none; /* In a real app we'd toggle a class via JS */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--clr-bg-white);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
  }
  .navbar-menu.active { display: flex; }
  .navbar-toggle { display: block; }
  
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-md); }
  .newsletter-form .btn { border-radius: var(--radius-md); }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* === MARKETING HOMEPAGE STYLES === */
.marketing-hero {
  padding: calc(var(--space-xxl) * 1.8) 0;
}
.hero-cta-wrapper {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.cta-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 94, 74, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(43, 94, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 94, 74, 0); }
}

/* Marketing Features Grid */
.marketing-feature {
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.marketing-feature:hover {
  transform: translateY(-5px);
  border-color: var(--clr-secondary);
}

/* Waitlist Form Section */
.waitlist-section {
  padding: var(--space-xxl) 0;
}
.waitlist-box {
  background-color: var(--clr-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl) var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--clr-secondary);
}
.marketing-form {
  margin-top: var(--space-xl);
}
.form-row {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.form-group {
  flex: 1;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 3px rgba(43, 94, 74, 0.2);
}
.form-privacy {
  text-align: left;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  background-color: var(--clr-bg-light);
  padding: 1rem;
  border-radius: var(--radius-md);
}
.form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  cursor: pointer;
}
.form-privacy input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.2);
}
.privacy-note {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-top: 1rem;
  text-align: center;
}

/* Mobile adjustments for form */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .waitlist-box {
    padding: var(--space-lg) var(--space-md);
  }
  .marketing-hero {
    padding: var(--space-xl) 0;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
