/* ==========================================================================
   Mental Insure Landing Page Stylesheet
   ========================================================================== */

/* 1. Imports & Core Reset */
@import url('design_tokens.css');

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-section-light);
}

body {
  background-color: var(--bg-section-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

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

/* Grid & Layout Containers */
.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   2. Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 12, 32, 0.04);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-contact-info {
  display: flex;
  gap: 24px;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-contact-item:hover {
  color: var(--brand-teal);
}

.icon-svg {
  width: 16px;
  height: 16px;
}

.nav-cta-btn {
  background-color: var(--color-cta);
  color: var(--color-cta-text-dark);
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(15, 12, 32, 0.05);
  box-shadow: 0 4px 10px rgba(56, 210, 254, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(56, 210, 254, 0.25);
  filter: brightness(1.03);
}

.btn-arrow-svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-cta-btn:hover .btn-arrow-svg {
  transform: translateX(3px);
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero-section-wrapper {
  padding: 32px 24px 64px 24px;
  background-color: var(--bg-section-light);
}

.hero-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-image: var(--grid-overlay-image), var(--bg-hero-gradient);
  background-size: var(--grid-overlay-size), 100% 100%;
  border-radius: 36px;
  padding: 64px 48px;
  border: 1px solid rgba(15, 12, 32, 0.04);
  box-shadow: 0 15px 40px rgba(15, 12, 32, 0.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-avatars {
  display: flex;
}

.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  margin-right: -10px;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}

.hero-title {
  font-size: 48px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.title-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(56, 210, 254, 0.3);
  z-index: -1;
  border-radius: 10px;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-cta);
  color: var(--color-cta-text-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(56, 210, 254, 0.25);
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(56, 210, 254, 0.35);
  filter: brightness(1.03);
}

.arrow-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow-svg {
  transform: translateX(4px);
}

.hero-right-media {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 12, 32, 0.08);
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.1);
  border: 1px solid rgba(15, 12, 32, 0.04);
  transition: transform 0.2s ease;
}

.floating-badge:hover {
  transform: translateY(-4px) scale(1.02);
}

.chat-icon-bg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-icon-bg svg {
  width: 20px;
  height: 20px;
}

.chat-badge-text {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ==========================================================================
   4. Stress Reality Section
   ========================================================================== */
.reality-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-radius: 36px;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
}

.reality-header, .pricing-header, .blog-header, .faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px auto;
}

.section-title {
  font-size: 36px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.reality-card {
  background-color: var(--bg-section-light);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(15, 12, 32, 0.02);
  transition: all 0.3s ease;
}

.reality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 12, 32, 0.04);
  background-color: #fff;
  border-color: rgba(15, 12, 32, 0.05);
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.teal-theme {
  background-color: rgba(0, 185, 208, 0.08);
  color: var(--brand-teal);
}

.blue-theme {
  background-color: rgba(0, 51, 136, 0.08);
  color: var(--brand-blue-deep);
}

.sky-theme {
  background-color: rgba(56, 210, 254, 0.08);
  color: var(--color-cta);
}

.card-title {
  font-size: 20px;
  margin-bottom: 14px;
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.reality-footer {
  text-align: center;
}

.reality-callout {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-teal-dark);
}

/* ==========================================================================
   5. Interactive Scorecard Pop-up Modal Layout
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 12, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 32px;
  background-color: #fff;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(15, 12, 32, 0.2);
  border: 1px solid rgba(15, 12, 32, 0.05);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--bg-section-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background-color: rgba(15, 12, 32, 0.1);
  transform: scale(1.05);
}

/* Scorecard Inner Layout styling */
.scorecard-card {
  padding: 48px;
}

.quiz-step-view {
  display: none;
}

.quiz-step-view.active {
  display: block;
}

.quiz-header {
  margin-bottom: 32px;
}

.quiz-step-indicator {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--brand-teal-dark);
  display: block;
  margin-bottom: 12px;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: var(--bg-section-light);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--brand-teal);
  border-radius: 10px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question-container {
  margin-bottom: 36px;
}

.quiz-question {
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.35;
}

.quiz-options-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

/* Custom Option Cards */
.quiz-option-card {
  background-color: var(--bg-section-light);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease-in-out;
}

.quiz-option-card:hover {
  background-color: #fff;
  border-color: rgba(0, 185, 208, 0.3);
  transform: translateY(-1px);
}

.quiz-option-card.selected {
  background-color: #fff;
  border-color: var(--brand-teal);
  box-shadow: 0 6px 15px rgba(0, 185, 208, 0.08);
}

.quiz-radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.quiz-option-card.selected .quiz-radio-indicator {
  border-color: var(--brand-teal);
}

.quiz-option-card.selected .quiz-radio-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  display: block;
}

.quiz-option-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 12, 32, 0.05);
  padding-top: 24px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-section-light);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover:not(:disabled) {
  background-color: rgba(15, 12, 32, 0.05);
}

.btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-primary-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--brand-teal);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary-small:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 185, 208, 0.2);
}

/* Spinner & Loader View */
.quiz-loader-view {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.quiz-loader-view.active {
  display: block;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--bg-section-light);
  border-top-color: var(--brand-teal);
  border-radius: 50%;
  margin: 0 auto 24px auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.quiz-loader-view h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.quiz-loader-view p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Results Display View */
.quiz-results-view {
  display: none;
}

.quiz-results-view.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-badge {
  background-color: rgba(0, 185, 208, 0.08);
  color: var(--brand-teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 24px;
}

/* Circular Radial Progress indicator styling */
.radial-progress-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
}

.radial-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.radial-bg {
  fill: none;
  stroke: var(--bg-section-light);
  stroke-width: 8;
}

.radial-bar {
  fill: none;
  stroke: var(--brand-teal);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease-out;
}

.radial-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.radial-number {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1;
}

.radial-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.results-category-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.results-content-box {
  background-color: var(--bg-section-light);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}

.results-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.action-recommendation-box {
  border-top: 1px solid rgba(15, 12, 32, 0.05);
  padding-top: 20px;
}

.action-recommendation-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.rec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rec-list li {
  font-size: 13px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.rec-list li::before {
  content: '✓';
  color: var(--brand-teal);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Results Newsletter Gate Section */
.gate-form-section {
  border: 1.5px solid rgba(0, 185, 208, 0.15);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 36px;
  background-color: rgba(0, 185, 208, 0.02);
}

.gate-form-section .gate-header h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gate-form-section .gate-header p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-group input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 12, 32, 0.1);
  background-color: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 4px 10px rgba(0, 185, 208, 0.05);
}

.w-full {
  width: 100%;
  justify-content: center;
}

.gate-popia-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.results-action-packages h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 6px;
}

.results-action-packages > p {
  font-size: 14px;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.packages-grid {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.pkg-card {
  background-color: #fff;
  border: 1.5px solid var(--brand-teal);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 185, 208, 0.06);
  width: 100%;
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--brand-teal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pkg-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pkg-price {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pkg-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-pkg-primary {
  background-color: var(--brand-teal-dark);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-pkg-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 185, 208, 0.2);
}

/* ==========================================================================
   6. Advantage Section
   ========================================================================== */
.pricing-section {
  background-color: #ffffff;
  padding: 96px 0;
  border-radius: 36px;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.pricing-media {
  display: flex;
  justify-content: center;
}

.pricing-image-container {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.pricing-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(15, 12, 32, 0.06);
}

.floating-quote-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background-color: var(--text-primary);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  max-width: 320px;
  box-shadow: 0 15px 35px rgba(15, 12, 32, 0.15);
}

.stars {
  color: var(--color-cta);
  font-size: 16px;
  margin-bottom: 8px;
}

.floating-quote-badge p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0.9;
}

.quote-author {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-cta);
}

.pricing-text-content {
  display: flex;
  flex-direction: column;
}

.pricing-desc-intro {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-desc-body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Comparison Table Design */
.comparison-card {
  background-color: var(--bg-section-light);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(15, 12, 32, 0.03);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(15, 12, 32, 0.04);
}

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

.header-row {
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom-width: 2px;
}

.rate-strike {
  text-decoration: line-through;
  opacity: 0.5;
}

.active-row {
  background-color: #fff;
  border-radius: 12px;
  font-weight: 600;
  margin: 6px 0;
  border-bottom: none;
}

.active-row.border-teal {
  border: 1.5px solid var(--brand-teal);
}

.active-rate {
  color: var(--brand-teal-dark);
}

.active-total {
  color: var(--brand-blue-deep);
}

/* ==========================================================================
   7. Blog Feed Section
   ========================================================================== */
.blog-section {
  padding: 96px 0;
}

.blog-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-list-item {
  background-color: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 12, 32, 0.03);
  border: 1px solid rgba(15, 12, 32, 0.03);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 12, 32, 0.05);
}

.blog-list-img-box {
  height: 100%;
  position: relative;
  min-height: 240px;
}

.blog-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.blog-list-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-tag {
  color: var(--brand-teal-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.blog-list-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.blog-list-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-teal-dark);
  transition: all 0.2s ease;
  align-self: flex-start;
}

.blog-read-more-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.blog-read-more-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   8. FAQ Section
   ========================================================================== */
.faq-section {
  background-color: #ffffff;
  padding: 96px 0;
  border-radius: 36px;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
}

.faq-accordion-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid rgba(15, 12, 32, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand-teal);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: flex-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  flex-grow: 1;
}

/* Animated FAQ Icon */
.faq-icon-cross {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon-cross::before, .faq-icon-cross::after {
  content: '';
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.2s ease;
}

.faq-icon-cross::before {
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
}

.faq-icon-cross::after {
  top: 3px;
  left: 9px;
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon-cross::after {
  transform: rotate(90deg) scale(0);
}

.faq-item.active .faq-icon-cross::before {
  transform: rotate(180deg);
  background-color: var(--brand-teal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-section-light);
}

.faq-content p {
  padding: 0 24px 24px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
  background-color: var(--text-primary);
  color: #fff;
  padding: 80px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Render logo white in dark footer */
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-contact-link svg {
  width: 14px;
  height: 14px;
}

.footer-contact-link:hover {
  opacity: 1;
  color: var(--color-cta);
}

.footer-links-col h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul li a, .footer-btn-link {
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.footer-btn-link {
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.footer-links-col ul li a:hover, .footer-btn-link:hover {
  opacity: 1;
  color: var(--color-cta);
  padding-left: 2px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-icons a svg {
  width: 18px;
  height: 18px;
}

.footer-social-icons a:hover {
  background-color: var(--color-cta);
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
}

.agency-link {
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.agency-link:hover {
  color: var(--color-cta);
}

/* ==========================================================================
   10. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .reality-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-list-item {
    grid-template-columns: 1fr;
  }
  
  .blog-list-img-box {
    height: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 767px) {
  .navbar-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .hero-card {
    padding: 40px 24px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-quote-badge {
    position: static;
    margin: 20px auto 0 auto;
    max-width: 100%;
  }
  
  .scorecard-card {
    padding: 24px;
  }
}

/* ==========================================================================
   11. Blog Post Detail Page Styling & Header CTA Fix
   ========================================================================== */
.nav-cta-btn:hover .arrow-svg {
  transform: translateX(4px);
}

.blog-post-wrapper {
  padding: 64px 24px;
  background-color: var(--bg-section-light);
}

.blog-post-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 64px 48px;
  border: 1px solid rgba(15, 12, 32, 0.04);
  box-shadow: 0 15px 40px rgba(15, 12, 32, 0.03);
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 40px;
  text-align: center;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.blog-post-category {
  color: var(--brand-teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.04);
}

.blog-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content h2 {
  font-size: 26px;
  margin: 44px 0 18px 0;
  color: var(--brand-blue-deep);
}

.blog-post-content h3 {
  font-size: 20px;
  margin: 32px 0 14px 0;
  color: var(--brand-blue-deep);
}

.blog-post-content blockquote {
  border-left: 4px solid var(--brand-teal);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

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

.blog-post-cta {
  background-color: var(--bg-section-light);
  border-radius: 24px;
  padding: 40px;
  margin-top: 56px;
  text-align: center;
  border: 1px dashed rgba(0, 185, 208, 0.3);
}

.blog-post-cta h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-post-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-teal-dark);
  transition: all 0.2s ease;
  margin-bottom: 32px;
}

.blog-back-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.blog-back-btn:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 767px) {
  .blog-post-card {
    padding: 32px 20px;
  }
  .blog-post-image {
    height: 250px;
  }
}

/* ==========================================================================
   12. One-Pager Menu, Blog Carousel, Bento Grid & Spaced Footer Bottom
   ========================================================================== */
.nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-menu-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-menu-link:hover {
  color: var(--brand-teal);
}

/* Blog Carousel Marquee (stops on hover, loops infinitely via JS) */
.blog-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 24px 0;
  margin-bottom: 32px;
  cursor: grab;
  user-select: none;
}

.blog-carousel-container.dragging {
  cursor: grabbing;
}

.blog-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.read-time-pill {
  background-color: rgba(0, 185, 208, 0.08);
  color: var(--brand-teal-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  line-height: 1;
}

.blog-carousel-item {
  width: 360px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
  border: 1px solid rgba(15, 12, 32, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-carousel-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 12, 32, 0.05);
}

.blog-carousel-img-box {
  height: 200px;
  width: 100%;
  position: relative;
}

.blog-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-carousel-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-carousel-tag {
  color: var(--brand-teal-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.blog-carousel-content h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel-footer {
  text-align: center;
  margin-top: 24px;
}

/* POPIA consent checkbox and submit button layout */
.form-group-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 16px 0;
  text-align: left;
}

.form-group-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-teal);
  flex-shrink: 0;
}

.popia-checkbox-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.gate-form button.btn-primary {
  align-self: center;
  width: auto;
  padding: 12px 28px;
  font-size: 14px;
}

/* Spaced out footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.footer-bottom-left, .footer-bottom-center, .footer-bottom-right {
  display: inline-flex;
  align-items: center;
}

/* Blog Archive Page Layout */
.blog-archive-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 0;
}

.blog-sidebar {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(15, 12, 32, 0.03);
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
  height: fit-content;
  position: sticky;
  top: 110px;
}

.search-box {
  position: relative;
  margin-bottom: 32px;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 12, 32, 0.1);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.search-input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 4px 12px rgba(0, 185, 208, 0.05);
}

.search-icon-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.sidebar-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 800;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-item:hover, .category-item.active {
  background-color: var(--bg-section-light);
  color: var(--brand-teal);
}

.category-count {
  font-size: 11px;
  background-color: rgba(15, 12, 32, 0.05);
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}

.category-item.active .category-count {
  background-color: rgba(0, 185, 208, 0.12);
  color: var(--brand-teal);
}

/* Bento Grid */
.blog-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(320px, auto);
}

.bento-card {
  background-color: #fff;
  border-radius: 28px;
  border: 1px solid rgba(15, 12, 32, 0.04);
  box-shadow: 0 10px 30px rgba(15, 12, 32, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 12, 32, 0.05);
}

/* Large Bento Card (Featured) */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: row;
}

.bento-large .bento-img-box {
  width: 50%;
  height: 100%;
}

.bento-large .bento-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tall Bento Card */
.bento-tall {
  grid-row: span 2;
}

.bento-tall .bento-img-box {
  height: 320px;
}

/* Wide Bento Card */
.bento-wide {
  grid-column: span 2;
  flex-direction: row;
}

.bento-wide .bento-img-box {
  width: 40%;
  height: 100%;
}

.bento-wide .bento-content {
  width: 60%;
  padding: 32px;
}

.bento-img-box {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bento-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.bento-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
}

.bento-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.no-results {
  grid-column: span 3;
  text-align: center;
  padding: 64px 24px;
  background-color: #fff;
  border-radius: 28px;
  border: 1px dashed rgba(15, 12, 32, 0.1);
}

.no-results h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.no-results p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Responsive Archive styles */
@media (max-width: 991px) {
  .blog-archive-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-sidebar {
    position: static;
  }
  .blog-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: column;
  }
  .bento-large .bento-img-box, .bento-large .bento-content {
    width: 100%;
  }
  .bento-large .bento-img-box {
    height: 240px;
  }
  .bento-wide {
    grid-column: span 2;
    flex-direction: column;
  }
  .bento-wide .bento-img-box, .bento-wide .bento-content {
    width: 100%;
  }
  .bento-wide .bento-img-box {
    height: 240px;
  }
  .bento-tall {
    grid-row: span 1;
  }
  .bento-tall .bento-img-box {
    height: 240px;
  }
  .nav-menu-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large, .bento-wide, .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Footer Newsletter Styles */
.footer-newsletter-text {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 2px rgba(0, 185, 208, 0.15);
}

.footer-input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  width: 100%;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-submit-btn {
  background: none;
  border: none;
  color: var(--brand-teal);
  padding: 0 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.footer-submit-btn:hover {
  color: var(--color-cta);
}

.footer-submit-btn svg {
  width: 16px;
  height: 16px;
}

.newsletter-consent-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-checkbox {
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--brand-teal);
}

.footer-checkbox-label {
  font-size: 11px;
  opacity: 0.6;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease;
}

.footer-checkbox-label:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Cookie Consent Banner (POPIA Compliant)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 420px;
  width: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 130, 147, 0.18);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 51, 136, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px 22px;
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-icon-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-emoji {
  font-size: 28px;
  line-height: 1;
  animation: cookieWobble 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes cookieWobble {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.cookie-text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary, #0F0C20);
  margin: 0;
}

.cookie-desc {
  font-size: 12.5px;
  color: var(--text-secondary, #5A6573);
  line-height: 1.55;
  margin: 0;
}

.cookie-policy-link {
  color: var(--brand-teal, #008293);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-policy-link:hover {
  color: var(--brand-blue, #003388);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0, 51, 136, 0.25);
  color: var(--text-secondary, #5A6573);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-outline:hover {
  border-color: var(--brand-teal, #008293);
  color: var(--brand-teal, #008293);
  background: rgba(0, 130, 147, 0.06);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--brand-blue, #003388) 0%, var(--brand-teal, #008293) 100%);
  border: none;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 130, 147, 0.35);
}

.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 130, 147, 0.45);
}

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

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn-outline,
  .cookie-btn-primary {
    flex: 1;
    text-align: center;
  }
}
