/* ==========================================================================
   CSS CUSTOM VARIABLES - PRESET F (CORPORATE GRADIENT / COLORFUL THEME)
   ========================================================================== */
:root {
  --gluco-bg-main: #f8fafc;
  --gluco-surface-card: #ffffff;
  --gluco-tone-primary: #0284c7;
  --gluco-tone-deep: #0f172a;
  --gluco-tone-hover: #0369a1;
  --gluco-accent-teal: #0d9488;
  --gluco-gradient-main: linear-gradient(135deg, #0284c7 0%, #0d9488 50%, #059669 100%);
  --gluco-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gluco-gradient-card-hover: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  --gluco-text-dark: #1e293b;
  --gluco-text-light: #ffffff;
  --gluco-text-muted: #64748b;
  --gluco-border-radius: 16px;
  --gluco-shadow-raised: 0 10px 25px -5px rgba(2, 132, 199, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --gluco-shadow-deep: 0 20px 35px -10px rgba(15, 23, 42, 0.22);
  --gluco-font-heading: 'Montserrat', sans-serif;
  --gluco-font-body: 'Inter', sans-serif;
  --gluco-section-padding: 10dvh 5%;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--gluco-font-body);
  color: var(--gluco-text-dark);
  background-color: var(--gluco-bg-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   HEADER PRESET F (GRADIENT BG, WHITE TEXT, DROP SHADOW)
   ========================================================================== */
.gluco-top-bar {
  background: var(--gluco-gradient-main);
  color: var(--gluco-text-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 5%;
}

.gluco-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gluco-brand-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--gluco-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gluco-text-light);
}

.gluco-brand-svg {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
}

.gluco-navigation-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gluco-link-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.gluco-link-item:hover,
.gluco-link-item.gluco-link-active {
  color: #ffffff;
}

.gluco-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.gluco-link-item:hover::after,
.gluco-link-item.gluco-link-active::after {
  width: 100%;
}

/* HAMBURGER MENU CSS-ONLY */
.gluco-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.gluco-menu-toggle span {
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   INDEX HERO SECTION (PRESET F)
   ========================================================================== */
.gluco-hero-frame {
  background-size: cover;
  background-position: center;
  color: var(--gluco-text-light);
  padding: var(--gluco-section-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.gluco-hero-box {
  max-width: 900px;
  margin: 0 auto;
}

.gluco-hero-heading {
  font-family: var(--gluco-font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gluco-hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.gluco-counter-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.gluco-counter-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--gluco-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gluco-counter-number,
.gluco-counter-symbol {
  font-family: var(--gluco-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.gluco-counter-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.3rem;
  font-weight: 500;
}

.gluco-action-button {
  display: inline-block;
  background: var(--gluco-gradient-main);
  color: #ffffff;
  font-family: var(--gluco-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.gluco-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.6);
}

/* HORIZONTAL TRUST STRIP AT BOTTOM OF HERO */
.gluco-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 1100px;
}

.gluco-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.gluco-trust-icon {
  width: 22px;
  height: 22px;
  stroke: #38bdf8;
}

/* ==========================================================================
   CONTENT SECTION WITH MOBILE SCROLL-TRACK (PRESET F)
   ========================================================================== */
.gluco-content-scroll-area {
  padding: var(--gluco-section-padding);
  background-size: cover;
  background-position: center;
}

.gluco-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.gluco-section-title {
  font-family: var(--gluco-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 0.75rem;
}

.gluco-section-subtitle {
  font-size: 1.05rem;
  color: var(--gluco-text-muted);
}

.gluco-content-scroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gluco-info-panel {
  background: var(--gluco-surface-card);
  padding: 2.2rem;
  border-radius: var(--gluco-border-radius);
  box-shadow: var(--gluco-shadow-raised);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.gluco-info-panel:hover {
  transform: translateY(-5px);
}

.gluco-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gluco-panel-icon {
  width: 36px;
  height: 36px;
  stroke: var(--gluco-tone-primary);
  flex-shrink: 0;
}

.gluco-panel-header h3 {
  font-family: var(--gluco-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gluco-tone-deep);
}

.gluco-panel-body p {
  color: var(--gluco-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURES SECTION (2x3 GRID WITH HOVER COLOR-FLIP)
   ========================================================================== */
.gluco-feature-section {
  padding: var(--gluco-section-padding);
  background-color: #ffffff;
}

.gluco-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gluco-feature-box {
  background: var(--gluco-bg-main);
  padding: 2.2rem;
  border-radius: var(--gluco-border-radius);
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.gluco-feature-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gluco-gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.gluco-feature-icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.gluco-feature-head {
  font-family: var(--gluco-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gluco-tone-deep);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.gluco-feature-text {
  color: var(--gluco-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

/* COLOR-FLIP EFFECT ON HOVER */
.gluco-feature-box:hover {
  background: var(--gluco-gradient-card-hover);
  border-color: transparent;
  box-shadow: var(--gluco-shadow-deep);
  transform: translateY(-5px);
}

.gluco-feature-box:hover .gluco-feature-head,
.gluco-feature-box:hover .gluco-feature-text {
  color: #ffffff;
}

.gluco-feature-box:hover .gluco-feature-icon-circle {
  background: #ffffff;
  transform: scale(1.1);
}

.gluco-feature-box:hover .gluco-feature-icon-circle svg {
  stroke: var(--gluco-tone-primary);
}

/* ==========================================================================
   PROCESS TIMELINE (NUMBERED PROCESS BAR)
   ========================================================================== */
.gluco-process-section {
  padding: var(--gluco-section-padding);
  background-color: #f1f5f9;
}

.gluco-process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.gluco-process-line {
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 4px;
  background: var(--gluco-gradient-main);
  z-index: 1;
}

.gluco-process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--gluco-surface-card);
  padding: 2.2rem 1.5rem;
  border-radius: var(--gluco-border-radius);
  box-shadow: var(--gluco-shadow-raised);
}

.gluco-step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gluco-gradient-main);
  color: #ffffff;
  font-family: var(--gluco-font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 6px #f1f5f9;
}

.gluco-step-head {
  font-family: var(--gluco-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gluco-tone-deep);
  margin-bottom: 0.6rem;
}

.gluco-step-detail {
  font-size: 0.92rem;
  color: var(--gluco-text-muted);
}

/* ==========================================================================
   CTA STRIP BOX
   ========================================================================== */
.gluco-cta-strip-box {
  padding: 4rem 5%;
  color: #ffffff;
}

.gluco-cta-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  animation-timeline: view();
  animation-name: glucoFadeIn;
  animation-fill-mode: both;
}

.gluco-cta-strip-heading {
  font-family: var(--gluco-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  max-width: 650px;
}

.gluco-cta-dark-button {
  background: var(--gluco-tone-deep);
  color: #ffffff;
  font-family: var(--gluco-font-heading);
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.gluco-cta-dark-button:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

/* ==========================================================================
   EXPERT PAGE SPECIFIC STYLES
   ========================================================================== */
.gluco-expert-hero {
  padding: var(--gluco-section-padding);
  background: #ffffff;
}

.gluco-expert-split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.gluco-expert-media {
  flex: 0 0 40%;
}

.gluco-expert-img {
  width: 100%;
  border-radius: var(--gluco-border-radius);
  box-shadow: var(--gluco-shadow-deep);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.gluco-expert-content {
  flex: 0 0 60%;
}

.gluco-expert-badge {
  display: inline-block;
  background: rgba(2, 132, 199, 0.1);
  color: var(--gluco-tone-primary);
  font-family: var(--gluco-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gluco-expert-heading {
  font-family: var(--gluco-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.gluco-expert-desc {
  color: var(--gluco-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.gluco-stats-section {
  padding: var(--gluco-section-padding);
  background: #f8fafc;
}

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

.gluco-stat-box {
  background: #ffffff;
  padding: 2.2rem 1.5rem;
  border-radius: var(--gluco-border-radius);
  text-align: center;
  box-shadow: var(--gluco-shadow-raised);
  border: 1px solid #e2e8f0;
}

.gluco-stat-number {
  font-family: var(--gluco-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gluco-tone-primary);
  margin-bottom: 0.5rem;
}

.gluco-stat-label {
  font-size: 0.9rem;
  color: var(--gluco-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   RESERVE PAGE (2-COLUMN STICKY & FORM)
   ========================================================================== */
.gluco-reserve-layout {
  padding: var(--gluco-section-padding);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gluco-sticky-head {
  position: sticky;
  top: 100px;
}

.gluco-reserve-title {
  font-family: var(--gluco-font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.gluco-trust-paragraph {
  color: var(--gluco-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.gluco-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gluco-trust-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gluco-point-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gluco-gradient-main);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gluco-trust-point strong {
  display: block;
  font-family: var(--gluco-font-heading);
  color: var(--gluco-tone-deep);
  font-size: 1rem;
}

.gluco-trust-point p {
  font-size: 0.9rem;
  color: var(--gluco-text-muted);
}

.gluco-contact-direct {
  background: rgba(2, 132, 199, 0.06);
  padding: 1.5rem;
  border-radius: var(--gluco-border-radius);
  border: 1px dashed var(--gluco-tone-primary);
}

.gluco-mailto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--gluco-tone-primary);
  margin-top: 0.5rem;
}

.gluco-reserve-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--gluco-border-radius);
  box-shadow: var(--gluco-shadow-deep);
  border: 1px solid #e2e8f0;
}

.gluco-form-heading {
  font-family: var(--gluco-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 1.8rem;
}

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

.gluco-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gluco-tone-deep);
  margin-bottom: 0.5rem;
}

.gluco-input-field,
.gluco-textarea-field {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-family: var(--gluco-font-body);
  font-size: 0.95rem;
  color: var(--gluco-text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gluco-input-field:focus,
.gluco-textarea-field:focus {
  outline: none;
  border-color: var(--gluco-tone-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.gluco-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gluco-checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--gluco-tone-primary);
}

.gluco-checkbox-label {
  font-size: 0.85rem;
  color: var(--gluco-text-muted);
}

.gluco-checkbox-label a {
  color: var(--gluco-tone-primary);
  text-decoration: underline;
}

.gluco-form-submit {
  width: 100%;
  background: var(--gluco-gradient-main);
  color: #ffffff;
  font-family: var(--gluco-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--gluco-shadow-raised);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.gluco-form-submit:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* FAQ SECTION */
.gluco-faq-section {
  padding: var(--gluco-section-padding);
  background: #f1f5f9;
}

.gluco-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gluco-faq-item {
  background: #ffffff;
  border-radius: var(--gluco-border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.gluco-faq-question {
  font-family: var(--gluco-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gluco-tone-deep);
  cursor: pointer;
  outline: none;
}

.gluco-faq-answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  color: var(--gluco-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.gluco-thank-frame {
  padding: var(--gluco-section-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.gluco-thank-card {
  background: #ffffff;
  max-width: 650px;
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: var(--gluco-border-radius);
  box-shadow: var(--gluco-shadow-deep);
  border: 1px solid #e2e8f0;
}

.gluco-thank-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.gluco-thank-icon-box svg {
  stroke: var(--gluco-accent-teal);
}

.gluco-thank-head {
  font-family: var(--gluco-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 1rem;
}

.gluco-thank-desc {
  color: var(--gluco-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.gluco-thank-media {
  margin-bottom: 2.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.gluco-thank-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

/* ==========================================================================
   PRIVACY POLICY & TERMS OF SERVICE
   ========================================================================== */
.gluco-policy-frame {
  padding: var(--gluco-section-padding);
  background: #ffffff;
  min-height: 100vh;
}

.gluco-policy-container {
  max-width: 850px;
  margin: 0 auto;
}

.gluco-policy-head {
  font-family: var(--gluco-font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gluco-tone-deep);
  margin-bottom: 0.5rem;
}

.gluco-policy-subhead {
  font-family: var(--gluco-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gluco-tone-deep);
  margin: 2.5rem 0 1rem 0;
}

.gluco-policy-date {
  font-size: 0.9rem;
  color: var(--gluco-text-muted);
  margin-bottom: 2rem;
}

.gluco-policy-paragraph {
  color: var(--gluco-text-dark);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gluco-cookie-policy-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f1f5f9;
}

/* ==========================================================================
   FOOTER PRESET F
   ========================================================================== */
.gluco-footer-bar {
  background: var(--gluco-tone-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 5% 2rem 5%;
  margin-top: auto;
}

.gluco-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gluco-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.gluco-footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.gluco-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.gluco-disclaimer {
  max-width: 800px;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gluco-copyright {
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.gluco-cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gluco-tone-deep);
  color: #ffffff;
  padding: 1.5rem 5%;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
  display: none;
  align-items: center;
  justify-content: center;
}

.gluco-cookie-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.gluco-cookie-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.gluco-cookie-btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.gluco-cookie-accept {
  background: var(--gluco-tone-primary);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gluco-cookie-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.gluco-cookie-decline:hover {
  color: #ffffff;
  border-color: #94a3b8;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes glucoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE SCROLL TRACK
   ========================================================================== */
@media (max-width: 992px) {
  .gluco-expert-split {
    flex-direction: column;
    gap: 2.5rem;
  }

  .gluco-stats-quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .gluco-reserve-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gluco-sticky-head {
    position: static;
  }

  .gluco-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .gluco-navigation-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gluco-tone-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .gluco-nav-check:checked ~ .gluco-navigation-links {
    display: flex;
  }

  /* HORIZONTAL SCROLL-TRACK FOR MOBILE (PRESET F REQUIREMENT) */
  .gluco-content-scroll-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .gluco-info-panel {
    min-width: 85%;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .gluco-feature-grid {
    grid-template-columns: 1fr;
  }

  .gluco-process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gluco-process-line {
    display: none;
  }

  .gluco-cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .gluco-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gluco-stats-quad {
    grid-template-columns: 1fr;
  }
}