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

:root {
  --chalk-beige: #faf8f3;
  --carbon-graphite: #2a2a28;
  --obsidian-charcoal: #1a1a18;
  --deep-sea: #1f2422;
  --atlantic-teal: #4a6b6b;
  --oatmeal-gray: #c9c4bb;
  --frost-line: #e8e6e1;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--chalk-beige);
  color: var(--carbon-graphite);
  line-height: 1.6;
}

a {
  color: var(--atlantic-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--carbon-graphite);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--obsidian-charcoal) 0%, var(--deep-sea) 100%);
  color: var(--chalk-beige);
  padding: 12px 0 0 0;
}

.top-rule-bar {
  border-bottom: 1px solid var(--oatmeal-gray);
  padding: 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--oatmeal-gray);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--chalk-beige);
}

.logo a {
  color: var(--chalk-beige);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: var(--chalk-beige);
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

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

nav .active a {
  color: var(--atlantic-teal);
}

nav .active a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--atlantic-teal);
}

nav .active a::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--atlantic-teal);
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--atlantic-teal);
  background: transparent;
  color: var(--atlantic-teal);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: scale(1);
}

.btn:hover {
  transform: scale(1.02);
  background: rgba(74, 107, 107, 0.08);
}

.btn-primary {
  background: var(--atlantic-teal);
  color: var(--chalk-beige);
  border-color: var(--atlantic-teal);
}

.btn-primary:hover {
  background: var(--carbon-graphite);
  border-color: var(--carbon-graphite);
}

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

.chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--oatmeal-gray);
  color: var(--carbon-graphite);
  font-size: 12px;
  border-radius: 3px;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--atlantic-teal);
  margin-bottom: 16px;
}

.micro-meta {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--carbon-graphite);
  margin-bottom: 16px;
  line-height: 1.3;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero {
  background: linear-gradient(135deg, var(--obsidian-charcoal) 0%, var(--deep-sea) 100%);
  color: var(--chalk-beige);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: var(--chalk-beige);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frost-line);
  padding: 24px;
  text-align: center;
}

.hero-feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.feature-caption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--chalk-beige);
  margin-bottom: 12px;
}

.feature-ref {
  font-size: 12px;
  color: var(--oatmeal-gray);
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  align-items: center;
}

.cta-note {
  font-size: 12px;
  color: var(--oatmeal-gray);
  font-style: italic;
}

.numbered-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 60px 0;
}

.tile {
  background: var(--chalk-beige);
  border: 1px solid var(--frost-line);
  padding: 32px;
  position: relative;
}

.tile-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--oatmeal-gray);
  margin-bottom: 16px;
  opacity: 0.4;
}

.tile h3 {
  margin-bottom: 16px;
}

.tile p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.dot-rule {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: var(--atlantic-teal);
  border-radius: 50%;
}

.dot-rule::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: var(--atlantic-teal);
}

.section-light {
  background: var(--chalk-beige);
  padding: 60px 0;
}

.section-dark {
  background: linear-gradient(135deg, var(--obsidian-charcoal) 0%, var(--deep-sea) 100%);
  color: var(--chalk-beige);
  padding: 60px 0;
}

.section-dark h2,
.section-dark h3 {
  color: var(--chalk-beige);
}

.section-dark .section-kicker {
  color: var(--atlantic-teal);
}

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

.panel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frost-line);
  padding: 32px;
  border-radius: 2px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.panel-row:last-child {
  border-bottom: none;
}

.panel-label {
  font-weight: 600;
  color: var(--atlantic-teal);
}

.panel-value {
  color: var(--chalk-beige);
}

.two-column-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.guide-image {
  width: 100%;
  height: auto;
  border: 1px solid var(--frost-line);
}

.guide-content ol {
  list-style: decimal;
  margin-left: 20px;
}

.guide-content li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.product-card {
  background: var(--chalk-beige);
  border: 1px solid var(--frost-line);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--atlantic-teal);
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  overflow: hidden;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-meta {
  padding: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-badge {
  font-size: 11px;
  background: var(--oatmeal-gray);
  color: var(--carbon-graphite);
  padding: 4px 8px;
  border-radius: 2px;
}

.product-content {
  padding: 0 16px 16px 16px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--carbon-graphite);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--atlantic-teal);
  margin-bottom: 12px;
}

.product-footer {
  padding: 12px 16px 16px 16px;
  border-top: 1px solid var(--frost-line);
  display: flex;
  gap: 8px;
}

.product-footer .btn {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
}

.pill-tabs {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.pill-tab {
  padding: 8px 20px;
  border: 1px solid var(--oatmeal-gray);
  background: transparent;
  color: var(--carbon-graphite);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.pill-tab.active {
  background: var(--atlantic-teal);
  color: var(--chalk-beige);
  border-color: var(--atlantic-teal);
}

.browse-hint {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  font-style: italic;
}

.item-count {
  font-size: 12px;
  color: var(--oatmeal-gray);
  margin-bottom: 24px;
}

.dot-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--atlantic-teal);
  border-radius: 50%;
  margin: 0 6px;
}

footer {
  background: var(--obsidian-charcoal);
  color: var(--chalk-beige);
  padding: 60px 0 32px 0;
  border-top: 1px solid var(--frost-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: var(--chalk-beige);
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-column a {
  color: var(--oatmeal-gray);
}

.footer-column a:hover {
  color: var(--atlantic-teal);
}

.footer-note {
  font-size: 12px;
  color: var(--oatmeal-gray);
  border-top: 1px solid rgba(248, 248, 248, 0.1);
  padding-top: 24px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.faq-item {
  margin-bottom: 32px;
}

.faq-question {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--carbon-graphite);
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--carbon-graphite);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--frost-line);
  background: var(--chalk-beige);
  color: var(--carbon-graphite);
  font-size: 14px;
  font-family: inherit;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 13px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--atlantic-teal);
  color: var(--chalk-beige);
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: var(--carbon-graphite);
}

.thank-you-container {
  text-align: center;
  padding: 80px 0;
}

.thank-you-container h1 {
  margin-bottom: 24px;
}

.thank-you-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--obsidian-charcoal);
  color: var(--chalk-beige);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  font-size: 13px;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border: 1px solid var(--atlantic-teal);
  background: transparent;
  color: var(--atlantic-teal);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: var(--atlantic-teal);
  color: var(--chalk-beige);
  border-color: var(--atlantic-teal);
}

.cookie-btn:hover {
  opacity: 0.8;
}

.legal-section {
  background: var(--chalk-beige);
  padding: 40px 0;
}

.legal-section h2 {
  margin: 40px 0 20px 0;
}

.legal-section h3 {
  margin: 28px 0 16px 0;
}

.legal-section p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 14px;
}

.legal-section ul,
.legal-section ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  nav ul {
    gap: 20px;
    font-size: 13px;
  }

  .numbered-tiles {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-layout,
  .two-column-guide,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-main {
    padding: 20px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .section-light,
  .section-dark {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .pill-tabs {
    flex-direction: column;
  }

  .pill-tab {
    width: 100%;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

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