/* --- CUSTOM BALANCED COLOR SCHEME (THEME: COLORFUL) --- */
:root {
  --gluc-sugar-accent: #ff4757;                 /* Vibrant sugar red/vibrant pink */
  --gluc-plasma-flow-grad: linear-gradient(135deg, #ff4757 0%, #ff6b81 50%, #ffa502 100%); /* Bold colorful gradient */
  --gluc-energy-indigo: #2f3542;               /* Solid deep dark indigo */
  --gluc-stabilized-bg: #fffaf0;               /* Gentle cream white for background */
  --gluc-pure-clean: #ffffff;                  /* Solid white */
  --gluc-active-green: #2ed573;                /* Growth and nutrient green */
  --gluc-shadow-raised: 0 10px 30px rgba(0, 0, 0, 0.1);
  --gluc-shadow-deep: 0 20px 45px rgba(0, 0, 0, 0.18);
  --gluc-border-soft: 16px;                     /* Soft border radius style */
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- BASE GENERAL RULES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.gluc-flow-body {
  font-family: var(--font-body);
  background-color: var(--gluc-stabilized-bg);
  color: var(--gluc-energy-indigo);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase; /* Heading Case: ALL UPPERCASE */
  letter-spacing: 1.5px;
}

/* --- SCROLL-DRIVEN PROGRESS BAR --- */
@keyframes gluc-progress-grow {
  to { width: 100%; }
}

.gluc-scroll-progress {
  height: 4px;
  width: 0;
  background: var(--gluc-plasma-flow-grad);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: gluc-progress-grow linear;
  animation-timeline: scroll();
}

/* --- HEADER AND NAVIGATION (Preset C styling - Bright colorful background, white content) --- */
.gluc-header-base {
  background: var(--gluc-plasma-flow-grad);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--gluc-shadow-raised);
}

.gluc-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gluc-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gluc-pure-clean);
}

.gluc-logo-svg {
  width: 32px;
  height: 32px;
  color: var(--gluc-pure-clean);
}

.gluc-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.gluc-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gluc-nav-link {
  text-decoration: none;
  color: var(--gluc-pure-clean);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  opacity: 0.85;
}

.gluc-nav-link:hover,
.gluc-nav-active {
  opacity: 1;
  text-decoration: underline;
}

/* MOBILE HAMBURGER (CSS ONLY) */
.gluc-menu-trigger-input {
  display: none;
}

.gluc-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

.gluc-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--gluc-pure-clean);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .gluc-menu-btn {
    display: flex;
  }

  .gluc-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--gluc-energy-indigo);
    box-shadow: var(--gluc-shadow-deep);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    align-items: flex-start;
    transition: left 0.4s ease;
  }

  .gluc-nav-link {
    font-size: 1.2rem;
    color: var(--gluc-pure-clean);
  }

  /* Checked mobile state */
  .gluc-menu-trigger-input:checked ~ .gluc-nav-menu {
    left: 0;
  }

  .gluc-menu-trigger-input:checked ~ .gluc-menu-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .gluc-menu-trigger-input:checked ~ .gluc-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .gluc-menu-trigger-input:checked ~ .gluc-menu-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* --- HERO SPLASH (Preset C: Fullscreen gradient, decorative CSS elements, large number) --- */
.gluc-hero-splash {
  position: relative;
  min-height: 100vh;
  background: var(--gluc-plasma-flow-grad);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 16dvh 2rem;
}

.gluc-hero-subpage {
  min-height: 50vh;
  padding: 10dvh 2rem;
}

/* Decorative abstract CSS shapes */
.gluc-abs-shape-1 {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

.gluc-abs-shape-2 {
  position: absolute;
  bottom: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
  pointer-events: none;
}

.gluc-hero-num {
  position: absolute;
  right: 5%;
  bottom: 0px;
  font-size: 26rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gluc-pure-clean);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.gluc-hero-content-flex {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.gluc-hero-text-block {
  max-width: 750px;
  color: var(--gluc-pure-clean);
}

.gluc-hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gluc-hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.gluc-hero-action-row {
  display: flex;
  gap: 1.5rem;
}

/* PILL ACTION BUTTON */
.gluc-action-pill {
  display: inline-block;
  text-decoration: none;
  background: var(--gluc-energy-indigo);
  color: var(--gluc-pure-clean);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.1rem 2.8rem;
  border-radius: 999px; /* Pill Style */
  box-shadow: var(--gluc-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gluc-action-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  background: #11111a;
}

@media (max-width: 768px) {
  .gluc-hero-title {
    font-size: 2.5rem;
  }
  .gluc-hero-lead {
    font-size: 1.1rem;
  }
  .gluc-hero-num {
    font-size: 12rem;
  }
}

/* --- SCROLL REVEAL ANIMATIONS (CSS Only) --- */
@keyframes gluc-reveal-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applies scroll reveal trigger globally to semantic sections */
section {
  animation: gluc-reveal-in both;
  animation-timeline: view();
  animation-range: entry 5% entry 35%;
}

/* --- DIAGONAL CLIP PATH SECTION (Preset C: Full-width bg2.webp with diagonal ends, text overlay) --- */
.gluc-diagonal-strip {
  padding: 0;
  overflow: hidden;
}

.gluc-diagonal-inner {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 16dvh 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gluc-diagonal-content {
  max-width: 800px;
  background: rgba(30, 27, 41, 0.9); /* Semi-transparent dark overlay card */
  padding: 3.5rem;
  border-radius: var(--gluc-border-soft);
  box-shadow: var(--gluc-shadow-deep);
  color: var(--gluc-pure-clean);
  backdrop-filter: blur(10px);
}

.gluc-section-head {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--gluc-pure-clean);
  position: relative;
}

.gluc-section-head::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gluc-sugar-accent);
  margin-top: 0.5rem;
}

.gluc-diagonal-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .gluc-diagonal-inner {
    clip-path: none;
    padding: 10dvh 1rem;
  }
  .gluc-diagonal-content {
    padding: 2rem;
  }
}

/* --- FEATURES / PERKS SECTION (Preset C: 3-column grid, big numbers, no borders) --- */
.gluc-perks-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

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

.gluc-section-intro .gluc-section-head {
  color: var(--gluc-energy-indigo);
  display: inline-block;
}

.gluc-section-intro .gluc-section-head::after {
  margin: 0.5em auto 0;
}

.gluc-section-sub {
  font-size: 1.15rem;
  color: #747d8c;
  margin-top: 1rem;
}

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

.gluc-perk-item {
  display: flex;
  flex-direction: column;
}

.gluc-perk-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gluc-sugar-accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.gluc-perk-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--gluc-energy-indigo);
}

.gluc-perk-desc {
  color: #57606f;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .gluc-perks-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- HOW IT WORKS TIMELINE (Preset C: Horizontal steps, solid connecting line, alternating filled/outline circles) --- */
.gluc-steps-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.gluc-steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
  margin-top: 4rem;
}

.gluc-steps-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--gluc-plasma-flow-grad);
  z-index: 1;
}

.gluc-step-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.gluc-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.gluc-step-circle:hover {
  transform: scale(1.1);
}

/* Filled / Outline styling */
.gluc-step-filled {
  background: var(--gluc-sugar-accent);
  color: var(--gluc-pure-clean);
  box-shadow: var(--gluc-shadow-raised);
}

.gluc-step-outline {
  background: var(--gluc-stabilized-bg);
  border: 4px solid var(--gluc-sugar-accent);
  color: var(--gluc-sugar-accent);
  box-shadow: var(--gluc-shadow-raised);
}

.gluc-step-heading {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--gluc-energy-indigo);
}

.gluc-step-details {
  color: #747d8c;
  font-size: 0.95rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .gluc-steps-timeline {
    flex-direction: column;
    gap: 4rem;
  }
  .gluc-steps-line {
    top: 10%;
    bottom: 10%;
    left: 40px;
    height: auto;
    width: 4px;
  }
  .gluc-step-node {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1.5rem;
  }
  .gluc-step-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

/* --- CTA STRIP (Preset C: Dark bg, large bold heading left, pill button right) --- */
.gluc-cta-strip {
  background: var(--gluc-energy-indigo);
  padding: 8dvh 2rem;
}

.gluc-cta-flex-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.gluc-cta-title {
  color: var(--gluc-pure-clean);
  font-size: 2.2rem;
  line-height: 1.2;
  flex: 2;
}

.gluc-cta-btn-mod {
  background: var(--gluc-plasma-flow-grad);
  color: var(--gluc-pure-clean);
  flex-shrink: 0;
}

.gluc-cta-btn-mod:hover {
  background: var(--gluc-pure-clean);
  color: var(--gluc-energy-indigo);
}

@media (max-width: 768px) {
  .gluc-cta-flex-wrap {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

/* --- EXPERT SUBPAGE SPLIT ROW (bg2 right 45% + text left 55%) --- */
.gluc-split-content-row {
  display: flex;
  width: 100%;
  min-height: 60vh;
}

.gluc-split-text-col {
  width: 55%;
  padding: 10dvh 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gluc-pure-clean);
}

.gluc-split-text-col .gluc-section-head {
  color: var(--gluc-energy-indigo);
  margin-bottom: 2rem;
}

.gluc-split-img-col {
  width: 45%;
  background-size: cover;
  background-position: center;
}

.gluc-paragraph-bold {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gluc-sugar-accent);
}

.gluc-paragraph-standard {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #57606f;
}

@media (max-width: 992px) {
  .gluc-split-content-row {
    flex-direction: column-reverse;
  }
  .gluc-split-text-col, .gluc-split-img-col {
    width: 100%;
  }
  .gluc-split-img-col {
    height: 300px;
  }
  .gluc-split-text-col {
    padding: 6dvh 1.5rem;
  }
}

/* --- EXPERT STATS STRIP --- */
.gluc-stats-strip {
  background: var(--gluc-plasma-flow-grad);
  padding: 10dvh 2rem;
}

.gluc-stats-inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.gluc-stat-block {
  color: var(--gluc-pure-clean);
}

.gluc-stat-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gluc-stat-caption {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .gluc-stats-inner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* --- CONCLUDING EXPERT OVERLAY (bg3.webp + overlay text) --- */
.gluc-concluding-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 16dvh 2rem;
  display: flex;
  justify-content: center;
}

.gluc-concluding-container {
  max-width: 800px;
  background: rgba(47, 53, 66, 0.95);
  box-shadow: var(--gluc-shadow-deep);
  border-radius: var(--gluc-border-soft);
  padding: 4rem;
  color: var(--gluc-pure-clean);
  text-align: center;
}

.gluc-concluding-container .gluc-section-head {
  display: inline-block;
  margin-bottom: 2rem;
}

.gluc-concluding-container .gluc-section-head::after {
  margin: 0.5rem auto 0;
}

.gluc-concluding-text {
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .gluc-concluding-container {
    padding: 2rem;
  }
}

/* --- RESERVE / FORM PAGE (Preset C: Form left 60%, info cards right 40%) --- */
.gluc-two-column-form-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
  display: flex;
  gap: 4rem;
}

.gluc-form-col-left {
  width: 60%;
}

.gluc-form-inner-heading {
  font-size: 2rem;
  color: var(--gluc-energy-indigo);
  margin-bottom: 0.75rem;
}

.gluc-form-subtext {
  color: #747d8c;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.gluc-custom-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gluc-form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gluc-form-field-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gluc-energy-indigo);
  text-transform: uppercase;
}

.gluc-form-input-text,
.gluc-form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--gluc-border-soft);
  border: 2px solid #ced6e0;
  background: var(--gluc-pure-clean);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gluc-energy-indigo);
  transition: border-color 0.3s;
}

.gluc-form-input-text:focus,
.gluc-form-textarea:focus {
  outline: none;
  border-color: var(--gluc-sugar-accent);
}

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

.gluc-checkbox-acceptance-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gluc-custom-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gluc-sugar-accent);
}

.gluc-checkbox-text-label {
  font-size: 0.9rem;
  color: #57606f;
}

.gluc-inline-link {
  color: var(--gluc-sugar-accent);
  text-decoration: underline;
  font-weight: 600;
}

.gluc-form-submit-btn {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  background: var(--gluc-plasma-flow-grad);
}

.gluc-mailto-fallback {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #747d8c;
}

/* Right Column Info Cards */
.gluc-info-col-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gluc-info-accent-title {
  font-size: 1.5rem;
  color: var(--gluc-energy-indigo);
  margin-bottom: 1rem;
}

.gluc-info-step-card {
  background: var(--gluc-pure-clean);
  padding: 2.25rem;
  border-radius: var(--gluc-border-soft);
  box-shadow: var(--gluc-shadow-raised);
}

.gluc-step-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gluc-card-badge {
  background: var(--gluc-plasma-flow-grad);
  color: var(--gluc-pure-clean);
  font-family: var(--font-display);
  font-weight: 900;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gluc-card-item-title {
  font-size: 1.2rem;
  color: var(--gluc-energy-indigo);
}

.gluc-card-item-desc {
  color: #747d8c;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.gluc-card-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gluc-card-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #57606f;
}

.gluc-bullet-indicator {
  width: 8px;
  height: 8px;
  background: var(--gluc-sugar-accent);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 992px) {
  .gluc-two-column-form-block {
    flex-direction: column;
  }
  .gluc-form-col-left, .gluc-info-col-right {
    width: 100%;
  }
}

/* --- FAQ ACCORDION SECTION --- */
.gluc-faq-container-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.gluc-faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gluc-faq-accordion-item {
  background: var(--gluc-pure-clean);
  border-radius: var(--gluc-border-soft);
  box-shadow: var(--gluc-shadow-raised);
  overflow: hidden;
}

.gluc-faq-details {
  width: 100%;
}

.gluc-faq-summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gluc-energy-indigo);
  cursor: pointer;
  user-select: none;
  outline: none;
  list-style: none; /* remove typical arrow toggle */
  position: relative;
}

.gluc-faq-summary::-webkit-details-marker {
  display: none;
}

.gluc-faq-answer {
  padding: 0 2rem 1.5rem;
  color: #57606f;
  font-size: 1rem;
}

/* --- THANK YOU PAGE CONTENT --- */
.gluc-thank-box {
  background-size: cover;
  background-position: center;
  border-radius: var(--gluc-border-soft);
  box-shadow: var(--gluc-shadow-deep);
  max-width: 800px;
  width: 100%;
  padding: 5rem 3rem;
  margin: 2rem;
  text-align: center;
}

.gluc-thank-inner {
  color: var(--gluc-pure-clean);
}

.gluc-thank-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gluc-active-green);
  color: var(--gluc-pure-clean);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--gluc-shadow-raised);
}

.gluc-checkmark-svg {
  width: 48px;
  height: 48px;
}

.gluc-thank-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.gluc-thank-text {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}

/* --- PRIVACY & TERMS LEGAL CONTENT --- */
.gluc-legal-content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.gluc-legal-main-title {
  font-size: 3rem;
  color: var(--gluc-energy-indigo);
  margin-bottom: 1rem;
  text-align: center;
}

.gluc-legal-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #747d8c;
  margin-bottom: 4rem;
}

.gluc-legal-section-block {
  margin-bottom: 3rem;
}

.gluc-legal-subtitle {
  font-size: 1.5rem;
  color: var(--gluc-energy-indigo);
  margin-bottom: 1rem;
}

.gluc-legal-text {
  color: #57606f;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* --- FOOTER BASE --- */
.gluc-foot-base {
  background: var(--gluc-energy-indigo);
  color: var(--gluc-pure-clean);
  padding: 8dvh 2rem 4dvh;
}

.gluc-foot-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gluc-foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gluc-foot-disclaimer {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.5;
}

.gluc-foot-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gluc-foot-link {
  color: var(--gluc-pure-clean);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.gluc-foot-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.gluc-foot-copy {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* --- COOKIE BANNER BOX --- */
.gluc-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gluc-energy-indigo);
  color: var(--gluc-pure-clean);
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  padding: 1.5rem 2rem;
}

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

.gluc-cookie-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.gluc-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.gluc-cookie-btn-accept,
.gluc-cookie-btn-decline {
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.gluc-cookie-btn-accept {
  background: var(--gluc-plasma-flow-grad);
  color: var(--gluc-pure-clean);
}

.gluc-cookie-btn-decline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--gluc-pure-clean);
}

.gluc-cookie-btn-accept:hover {
  transform: translateY(-2px);
}

.gluc-cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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