@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-cream: #faf9f5;
  --bg-white: #ffffff;
  --bg-paper: #f4f3f0;
  --text-charcoal: #1e293b;
  --text-light: #64748b;
  
  /* Brand Colors */
  --accent-teal: #0d685f;
  --accent-teal-glow: rgba(13, 104, 95, 0.08);
  --accent-teal-light: #14b8a6;
  --accent-gold: #c39b5b;
  --accent-gold-dark: #a17c45;
  --border-light: #e6e3dd;
  --border-dark: #1e293b;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(13, 104, 95, 0.08), 0 4px 6px -2px rgba(13, 104, 95, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(13, 104, 95, 0.1), 0 10px 10px -5px rgba(13, 104, 95, 0.04);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Typography & General Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--accent-teal);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Attractive Corporate Logo - CAPITALized */
.brand-logo {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.brand-logo .logo-accent {
  color: var(--accent-gold);
  background-color: var(--accent-teal-glow);
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 6px;
  font-size: 1.25rem;
  font-weight: 900;
  border: 1px solid rgba(13, 104, 95, 0.12);
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.brand-logo:hover .logo-accent {
  background-color: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
}

.title-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Round Loading Circle Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-cream);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(13, 104, 95, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-teal);
  animation: spin 1s infinite linear;
}

.loader-text {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-teal);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Affiliate Regulatory Banner */
.affiliate-banner {
  background-color: var(--accent-teal);
  color: var(--bg-cream);
  text-align: center;
  padding: 8px 15px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1001;
}

/* Header & Sticky Nav */
header {
  position: sticky;
  top: 0; width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(250, 249, 245, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-light);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-charcoal);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background-color: var(--accent-teal-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-teal);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--accent-teal);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-solid {
  background-color: var(--accent-teal);
  color: var(--bg-cream);
  box-shadow: var(--shadow-sm);
}

.btn-solid:hover {
  background-color: var(--accent-teal-light);
  border-color: var(--accent-teal-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-teal);
}

.btn-outline:hover {
  background-color: var(--accent-teal);
  color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--accent-teal);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 400px; height: 100vh;
  background: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right var(--transition-smooth);
}

.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a { font-family: var(--font-heading); font-size: 2.2rem; color: var(--accent-teal); }
.mobile-nav a.active { color: var(--accent-gold); }

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #faf9f5 0%, #f4f3f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 5rem;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  z-index: 1;
}

.hero-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.trust-badge span {
  width: 8px; height: 8px;
  background-color: var(--accent-teal-light);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-img-wrapper { max-width: 500px; margin: 0 auto; }
}

/* Feature Grid Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--bg-cream);
  padding: 3.5rem 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-teal);
}

.feature-icon {
  width: 60px; height: 60px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.feature-icon svg {
  width: 28px; height: 28px;
  fill: var(--accent-teal);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
}

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

/* Editorial & Review Styles */
.editorial {
  padding: 100px 0;
  background-color: var(--bg-paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-img-wrapper {
  position: relative;
}

.editorial-img-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.editorial-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.editorial-text p {
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  margin: 2rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.checklist li svg {
  width: 20px; height: 20px;
  fill: var(--accent-teal-light);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 4rem; }
  .editorial-grid.reverse .editorial-text { order: 2; }
  .editorial-grid.reverse .editorial-img-wrapper { order: 1; }
}

/* Detailed Review Page Elements */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.review-header {
  text-align: center;
  padding: 100px 0 60px;
  background-color: var(--bg-paper);
  border-bottom: 1px solid var(--border-light);
}

.review-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-stars {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-body {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 2rem;
  margin: 3.5rem 0 1.2rem;
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.85;
}

.article-body ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--accent-teal);
  font-style: italic;
  border-left: 4px solid var(--accent-gold);
  padding-left: 2rem;
  margin: 3.5rem 0;
}

/* Product & Grid Showcase (Compare & Order) */
.product-showcase {
  padding: 80px 0;
}

.product-showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 901px) {
  .gallery-container {
    position: sticky;
    top: 110px;
  }
}

.gallery-main {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.gallery-main img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.product-details {
  padding-top: 1rem;
}

.product-details h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.product-rating span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.price-card {
  background: var(--accent-teal);
  color: var(--bg-cream);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.price-card .price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}

.price-card .price-amount {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-card .price-amount span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.8;
}

.price-card .price-meta {
  font-size: 0.88rem;
  opacity: 0.9;
}

.spec-list {
  list-style: none;
  margin: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
}

.spec-list span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--accent-teal);
}

.spec-list span:last-child {
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-showcase .container { grid-template-columns: 1fr; gap: 4rem; }
}

/* Plan Comparison Table */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-paper);
}

.comparison-wrapper {
  margin-top: 4rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 700px;
}

.comparison-table th, .comparison-table td {
  padding: 1.8rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.05rem;
}

.comparison-table th {
  background-color: var(--accent-teal);
  color: var(--bg-cream);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(13, 104, 95, 0.02);
}

.comparison-table td svg {
  width: 22px; height: 22px;
  vertical-align: middle;
}

.comparison-table td svg.check {
  fill: var(--accent-teal-light);
}

.comparison-table td svg.cross {
  fill: #ef4444;
}

.highlight-column {
  background-color: rgba(20, 184, 166, 0.04);
  border-left: 2px solid rgba(20, 184, 166, 0.15);
  border-right: 2px solid rgba(20, 184, 166, 0.15);
}

th.highlight-column {
  background-color: var(--accent-teal-light);
  color: #ffffff;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

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

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

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--accent-teal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.faq-btn:hover {
  color: var(--accent-gold-dark);
}

.faq-icon {
  width: 24px; height: 24px;
  fill: var(--accent-teal-light);
  transition: transform var(--transition-fast);
}

.faq-btn.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--accent-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-content p {
  padding-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Contact & Forms */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info {
  background: var(--bg-white);
  padding: 3.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  margin-bottom: 2.5rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-charcoal);
}

.contact-form-container {
  background: var(--bg-white);
  padding: 4rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-teal);
  margin-bottom: 0.8rem;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background-color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
  color: var(--text-charcoal);
}

.form-input:focus {
  border-color: var(--accent-teal-light);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-container { padding: 2.5rem 2rem; }
  .contact-info { padding: 2.5rem 2rem; }
}

/* Legal Content Pages */
.legal-page {
  padding: 100px 0;
  background-color: var(--bg-white);
}

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

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.legal-content p.last-updated {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4rem;
  color: var(--text-light);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 3.5rem 0 1.2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-content ul, .legal-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

/* Footer Section */
footer {
  background-color: var(--accent-teal);
  color: var(--bg-cream);
  padding: 100px 0 30px;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 20;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 700;
}

.footer-col p, .footer-col a {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #ffffff;
}

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

.footer-bottom p {
  color: #cbd5e1;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo span {
  color: var(--accent-gold);
  background-color: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 6px;
  font-size: 1.5rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

.regulatory-disclaimer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.regulatory-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.regulatory-disclaimer p strong {
  color: #ffffff;
}

/* Cookie Banner Card */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  background: var(--bg-white);
  color: var(--text-charcoal);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(13, 104, 95, 0.15);
  padding: 30px;
  z-index: 9999;
  transform: translateY(calc(100% + 50px)); /* Push completely offscreen regardless of mobile height */
  transition: transform var(--transition-smooth);
}

.cookie-banner.active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 15px;
    right: 15px;
    max-width: calc(100% - 30px);
  }
}

.cookie-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-banner a {
  color: var(--accent-teal);
  text-decoration: underline;
  font-weight: 600;
}

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

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.78rem;
}
