/* ==========================================================================
   PRESET M: NEON DARK + GLOW EFFECTS
   THEME VARIABLES & KEYFRAMES
   ========================================================================== */

:root {
  --glyco-dark-bg: #0b0f19;
  --glyco-surface: #141a29;
  --glyco-surface-card: rgba(20, 26, 41, 0.7);
  --glyco-tone: #00f2fe;
  --glyco-tone-secondary: #4facfe;
  --glyco-tone-glow: rgba(0, 242, 254, 0.35);
  --glyco-accent-green: #38ef7d;
  --glyco-ink-main: #f0f4f8;
  --glyco-ink-muted: #94a3b8;
  --glyco-border-subtle: rgba(0, 242, 254, 0.18);
  --glyco-border-glow: rgba(0, 242, 254, 0.6);
  --glyco-gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --glyco-radius-soft: 16px;
  --glyco-radius-pill: 999px;
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
}

/* Reset & Basic Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body.glucoflow-body-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--glyco-dark-bg);
}

/* Scroll Progress Line (Scroll-Driven CSS) */
.glyco-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--glyco-gradient-primary);
  z-index: 10000;
  transform-origin: 0%;
  animation: glyco-scroll-anim linear;
  animation-timeline: scroll();
}

@keyframes glyco-scroll-anim {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: #ffffff;
}

p {
  color: var(--glyco-ink-muted);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.glyco-header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glyco-border-subtle);
  padding: 1rem 0;
}

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

.glyco-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.glyco-brand-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--glyco-tone));
}

.glyco-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  background: var(--glyco-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.glyco-nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--glyco-ink-main);
  position: relative;
}

.glyco-nav-item:hover,
.glyco-nav-item.active {
  color: var(--glyco-tone);
  text-shadow: 0 0 10px var(--glyco-tone-glow);
}

.glyco-nav-action {
  padding: 0.5rem 1.25rem;
  border-radius: var(--glyco-radius-pill);
  border: 1px solid var(--glyco-tone);
  color: var(--glyco-tone);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.2);
}

.glyco-nav-action:hover {
  background: var(--glyco-tone);
  color: var(--glyco-dark-bg);
  box-shadow: 0 0 20px var(--glyco-tone);
}

/* Burger Menu Mobile */
.glyco-burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.glyco-burger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--glyco-tone);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--glyco-tone);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.glyco-hero-stage,
.glyco-expert-hero,
.glyco-reserve-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 1.5rem;
}

.glyco-reserve-hero {
  min-height: 45vh;
  background: radial-gradient(circle at center, rgba(0, 242, 254, 0.1) 0%, rgba(11, 15, 25, 1) 70%);
}

.glyco-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.glyco-badge-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: var(--glyco-radius-pill);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--glyco-border-glow);
  color: var(--glyco-tone);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.glyco-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--glyco-tone-glow), 0 0 50px rgba(0, 242, 254, 0.2);
}

.glyco-hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--glyco-ink-main);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.glyco-hero-cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.glyco-neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: var(--glyco-radius-pill);
  background: transparent;
  color: var(--glyco-tone);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  border: 2px solid var(--glyco-tone);
  box-shadow: 0 0 15px var(--glyco-tone-glow);
  cursor: pointer;
}

.glyco-neon-btn:hover {
  background: var(--glyco-tone);
  color: var(--glyco-dark-bg);
  box-shadow: 0 0 30px var(--glyco-tone);
}

.glyco-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: var(--glyco-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glyco-outline-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.glyco-pulse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--glyco-radius-pill);
  background: var(--glyco-gradient-primary);
  color: var(--glyco-dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 10px var(--glyco-tone), 0 0 20px var(--glyco-tone-glow);
  }
  100% {
    box-shadow: 0 0 25px var(--glyco-tone), 0 0 50px var(--glyco-tone-secondary);
  }
}

/* ==========================================================================
   CONTENT & IMAGE SPLIT SECTIONS
   ========================================================================== */

.glyco-content-split {
  padding: 6rem 1.5rem;
  background: var(--glyco-surface);
  animation: glyco-view-fade linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes glyco-view-fade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.glyco-content-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.glyco-media-holder {
  flex: 1 1 450px;
}

.glyco-glowing-img {
  width: 100%;
  height: auto;
  border-radius: var(--glyco-radius-soft);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.3);
  border: 1px solid var(--glyco-border-subtle);
  object-fit: cover;
}

.glyco-article-box {
  flex: 1 1 500px;
}

.glyco-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.glyco-section-title.center {
  text-align: center;
}

.glyco-paragraph {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.glyco-highlight {
  color: var(--glyco-tone);
  font-weight: 600;
  text-shadow: 0 0 8px var(--glyco-tone-glow);
}

.glyco-check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.glyco-check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--glyco-ink-main);
}

.glyco-check-list svg {
  stroke: var(--glyco-tone);
  filter: drop-shadow(0 0 5px var(--glyco-tone));
}

/* ==========================================================================
   PILLARS / FEATURES SECTION
   ========================================================================== */

.glyco-pillars-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.glyco-section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.glyco-subtitle {
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

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

.glyco-pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--glyco-radius-soft);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glyco-pillar-card:hover {
  border-color: var(--glyco-tone);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
  transform: translateY(-5px);
}

.glyco-card-icon {
  margin-bottom: 1.25rem;
  color: var(--glyco-tone);
  filter: drop-shadow(0 0 8px var(--glyco-tone));
}

.glyco-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.glyco-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   TIMELINE / HOW IT WORKS
   ========================================================================== */

.glyco-timeline-section {
  padding: 6rem 1.5rem;
  background: var(--glyco-surface);
}

.glyco-timeline-flow {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.glyco-timeline-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--glyco-border-subtle);
}

.glyco-step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.glyco-step-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glyco-dark-bg);
  border: 2px solid var(--glyco-tone);
  color: var(--glyco-tone);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--glyco-tone);
  flex-shrink: 0;
}

.glyco-step-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--glyco-radius-soft);
  padding: 1.5rem;
  flex-grow: 1;
}

.glyco-step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.glyco-step-desc {
  font-size: 0.95rem;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */

.glyco-cta-strip {
  padding: 6rem 1.5rem;
  background: var(--glyco-dark-bg);
  text-align: center;
}

.glyco-cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  background: radial-gradient(circle at center, rgba(0, 242, 254, 0.08) 0%, rgba(20, 26, 41, 0.8) 100%);
  border: 1px solid var(--glyco-border-glow);
  border-radius: var(--glyco-radius-soft);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.15);
}

.glyco-cta-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px var(--glyco-tone-glow);
}

.glyco-cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   STATS PILLS (EXPERT PAGE)
   ========================================================================== */

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

.glyco-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.glyco-stat-pill {
  background: rgba(20, 26, 41, 0.9);
  border: 1px solid var(--glyco-border-glow);
  border-radius: var(--glyco-radius-pill);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.glyco-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--glyco-tone);
  text-shadow: 0 0 12px var(--glyco-tone-glow);
}

.glyco-stat-label {
  font-size: 0.85rem;
  color: var(--glyco-ink-muted);
}

/* ==========================================================================
   ACCORDION FAQ (EXPERT PAGE)
   ========================================================================== */

.glyco-faq-section {
  padding: 6rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.glyco-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.glyco-faq-item {
  background: var(--glyco-surface);
  border: 1px solid var(--glyco-border-subtle);
  border-radius: var(--glyco-radius-soft);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
}

.glyco-faq-item[open] {
  border-color: var(--glyco-tone);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.glyco-faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.glyco-faq-question::-webkit-details-marker {
  display: none;
}

.glyco-faq-arrow {
  stroke: var(--glyco-tone);
  transition: transform 0.3s ease;
}

.glyco-faq-item[open] .glyco-faq-arrow {
  transform: rotate(180deg);
}

.glyco-faq-answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   CARDS & FORM (RESERVE PAGE)
   ========================================================================== */

.glyco-cards-section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.glyco-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.glyco-info-card {
  background: var(--glyco-surface);
  border: 1px solid var(--glyco-border-subtle);
  border-radius: var(--glyco-radius-soft);
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.glyco-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--glyco-tone);
}

.glyco-info-title {
  font-size: 1.25rem;
  color: #ffffff;
}

.glyco-info-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.glyco-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.glyco-badge-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--glyco-ink-main);
}

.glyco-num-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--glyco-gradient-primary);
  color: var(--glyco-dark-bg);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FORM STYLES */
.glyco-form-section {
  padding: 4rem 1.5rem 6rem;
  max-width: 650px;
  margin: 0 auto;
}

.glyco-form-card {
  background: var(--glyco-surface);
  border: 1px solid var(--glyco-border-glow);
  border-radius: var(--glyco-radius-soft);
  padding: 2.5rem;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.2);
}

.glyco-form-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.glyco-form-subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.glyco-neon-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.glyco-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--glyco-ink-main);
}

.glyco-input,
.glyco-textarea {
  width: 100%;
  background: rgba(11, 15, 25, 0.7);
  border: none;
  border-bottom: 2px solid var(--glyco-border-subtle);
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: var(--font-text);
  font-size: 0.95rem;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.glyco-input:focus,
.glyco-textarea:focus {
  outline: none;
  border-bottom-color: var(--glyco-tone);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
  background: rgba(11, 15, 25, 0.9);
}

.glyco-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.glyco-checkbox {
  margin-top: 0.2rem;
  accent-color: var(--glyco-tone);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.glyco-check-label {
  font-size: 0.85rem;
  color: var(--glyco-ink-muted);
  line-height: 1.4;
}

.glyco-check-label a {
  color: var(--glyco-tone);
  text-decoration: underline;
}

.glyco-submit-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: var(--glyco-radius-pill);
  background: var(--glyco-gradient-primary);
  border: none;
  color: var(--glyco-dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px var(--glyco-tone-glow);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.glyco-submit-btn:hover {
  box-shadow: 0 0 35px var(--glyco-tone);
  transform: translateY(-2px);
}

.glyco-contact-direct {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
  color: var(--glyco-ink-muted);
}

.glyco-mail-link {
  color: var(--glyco-tone);
  font-weight: 600;
}

/* OPEN FAQ SECTION (RESERVE PAGE) */
.glyco-faq-open-section {
  padding: 4rem 1.5rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.glyco-open-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.glyco-faq-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--glyco-radius-soft);
  padding: 1.75rem;
}

.glyco-open-question {
  font-size: 1.1rem;
  color: var(--glyco-tone);
  margin-bottom: 0.75rem;
}

.glyco-open-answer {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.glyco-thank-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.glyco-thank-card {
  max-width: 650px;
  background: var(--glyco-surface);
  border: 1px solid var(--glyco-border-glow);
  border-radius: var(--glyco-radius-soft);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.25);
}

.glyco-thank-icon-box {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 12px var(--glyco-tone));
}

.glyco-thank-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px var(--glyco-tone-glow);
}

.glyco-thank-desc {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.glyco-thank-media {
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   LEGAL PAGES (PRIVACY & TERMS)
   ========================================================================== */

.glyco-legal-container {
  padding: 5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 70vh;
}

.glyco-legal-paper {
  background: var(--glyco-surface);
  border: 1px solid var(--glyco-border-subtle);
  border-radius: var(--glyco-radius-soft);
  padding: 3rem 2.5rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.glyco-legal-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--glyco-tone);
  text-shadow: 0 0 12px var(--glyco-tone-glow);
}

.glyco-legal-subtitle {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: #ffffff;

}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.glyco-footer-base {
  margin-top: auto;
  background: #060911;
  border-top: 1px solid var(--glyco-border-subtle);
  padding: 3.5rem 1.5rem 2rem;
}

.glyco-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.glyco-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.glyco-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.glyco-footer-links a {
  font-size: 0.9rem;
  color: var(--glyco-ink-muted);
}

.glyco-footer-links a:hover {
  color: var(--glyco-tone);
}

.glyco-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.glyco-disclaimer-box p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  text-align: center;
}

.glyco-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--glyco-ink-muted);
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.glyco-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 26, 41, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glyco-border-glow);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.glyco-cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.glyco-cookie-msg {
  font-size: 0.9rem;
  color: var(--glyco-ink-main);
  flex: 1 1 500px;
}

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

.glyco-cookie-accept {
  padding: 0.6rem 1.5rem;
  border-radius: var(--glyco-radius-pill);
  background: var(--glyco-tone);
  color: var(--glyco-dark-bg);
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 10px var(--glyco-tone);
}

.glyco-cookie-decline {
  padding: 0.6rem 1.5rem;
  border-radius: var(--glyco-radius-pill);
  background: transparent;
  color: var(--glyco-ink-muted);
  border: 1px solid var(--glyco-ink-muted);
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 850px) {
  .glyco-burger-icon {
    display: flex;
  }

  .glyco-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0b0f19;
    border-bottom: 1px solid var(--glyco-border-subtle);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    display: none;
  }

  .glyco-nav-toggle:checked ~ .glyco-nav-menu {
    display: flex;
  }

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

@media (max-width: 480px) {
  .glyco-hero-heading {
    font-size: 1.9rem;
  }

  .glyco-legal-paper,
  .glyco-form-card,
  .glyco-thank-card {
    padding: 1.75rem 1.25rem;
  }
}