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

:root {
  --off-white: #f8f6f3;
  --text-dark: #2a2a2e;
  --text-light: #6b6b73;
  --accent-teal: #3d7b7b;
  --accent-gray: #e8e6e1;
  --accent-mist: #f0eeeb;
  --dark-charcoal: #1a1a1d;
  --border-light: #ddd9d0;
  --success-teal: #4a9999;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
}

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

a:hover {
  opacity: 0.85;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

header {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1f1f23 100%);
  color: #fff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: #fff;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.3rem;
}

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

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.cta-button {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  background: transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--accent-teal);
  color: #fff;
  transform: scale(1.02);
}

.cta-button.primary {
  background: var(--accent-teal);
  color: #fff;
  border-color: var(--accent-teal);
}

.cta-button.primary:hover {
  background: #2d6464;
  border-color: #2d6464;
}

.section-hint {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

.hero {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #252529 100%);
  color: #fff;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 500px;
}

.hero-content {
  padding: 2rem;
}

.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-teal);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero > div:last-child {
  display: flex;
  justify-content: flex-end;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 350px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.feature-card-content {
  padding: 1.5rem;
}

.feature-card-caption {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.feature-card-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.section-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.tile {
  background: var(--accent-gray);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.tile-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
}

.tile-indicator::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background: var(--accent-teal);
  right: 2.5px;
  top: 6px;
}

.tile h3 {
  margin-bottom: 1rem;
}

.tile p {
  font-size: 0.95rem;
}

.light-section {
  background: var(--off-white);
  padding: 3rem 0;
}

.dark-section {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1f1f23 100%);
  color: #fff;
  padding: 3rem 0;
}

.dark-section h2, .dark-section h3 {
  color: #fff;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.8);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin: 3rem 0;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.split-panel-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.split-panel-row:last-child {
  margin-bottom: 0;
}

.split-panel-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.two-column-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
}

.checklist-mark {
  width: 20px;
  height: 20px;
  background: var(--accent-teal);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
}

.checklist-text {
  flex: 1;
}

.checklist-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--accent-teal);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  overflow: hidden;
  background: var(--accent-mist);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-content {
  padding: 1.5rem;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-badge {
  background: var(--accent-mist);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.75rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-cta {
  padding: 0.6rem 1rem;
  background: var(--accent-teal);
  color: #fff;
  border-radius: 3px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.product-cta:hover {
  background: #2d6464;
  transform: scale(1.05);
}

.pill-tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pill-tab {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  border-radius: 24px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pill-tab.active {
  background: rgba(61, 123, 123, 0.1);
}

.pill-tab:hover {
  background: rgba(61, 123, 123, 0.08);
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.faq-question {
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.guide-section {
  background: var(--accent-gray);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.guide-list {
  list-style: none;
}

.guide-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

.guide-list li:last-child {
  border-bottom: none;
}

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

footer {
  background: var(--dark-charcoal);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-column h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(61, 123, 123, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.submit-button {
  padding: 0.8rem 2rem;
  background: var(--accent-teal);
  color: #fff;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #2d6464;
  transform: scale(1.02);
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.back-button {
  padding: 0.8rem 2rem;
  background: var(--accent-teal);
  color: #fff;
  border-radius: 3px;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-button:hover {
  background: #2d6464;
  transform: scale(1.02);
}

.product-detail {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.product-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.product-detail-content h1 {
  margin-bottom: 1rem;
}

.product-detail-meta {
  background: var(--accent-gray);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.product-detail-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.product-detail-meta-row:last-child {
  border-bottom: none;
}

.product-detail-meta-label {
  font-weight: 600;
  color: var(--text-dark);
}

.product-detail-meta-value {
  color: var(--text-light);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--accent-teal);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #2d6464;
}

.container-hero {
  width: 100%;
  padding: 0;
}

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

.contact-info {
  background: var(--accent-gray);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.contact-info-row {
  margin-bottom: 1.5rem;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  color: var(--text-light);
}

.what-happens-next {
  background: var(--accent-mist);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}

.what-happens-next ol {
  margin-left: 1.5rem;
  color: var(--text-light);
}

.what-happens-next li {
  margin-bottom: 0.8rem;
}

.legal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--dark-charcoal);
  color: #fff;
  padding: 1.5rem;
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-teal);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--accent-teal);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #2d6464;
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    min-height: auto;
  }

  .hero > div:last-child {
    justify-content: center;
  }

  nav ul {
    gap: 1.5rem;
  }

  .header-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .two-column-checklist {
    grid-template-columns: 1fr;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }

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

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
