/* --- CUSTOM VARIABLES & THEME CONFIGURATION --- */
:root {
  /* LIGHT Theme Palette (Product Focused) */
  --fl-canvas-bg: #FAF9F6;       /* Soft light warm cream */
  --fl-surface-solid: #FFFFFF;   /* Pure white */
  --fl-surface-tint: #F1F5F9;    /* Slightly darker grey/slate for modern contrast */
  --fl-accent-main: #0274A9;      /* Accessible Blue (joint/ocean flow theme - WCAG AA compliant with white text) */
  --fl-accent-hover: #0369A1;     /* Darker blue hover state */
  --fl-accent-glow: #E0F2FE;      /* Very soft blue tint for backgrounds and highlights */
  --fl-ink-main: #0F172A;         /* Slate 900 for absolute contrast titles */
  --fl-ink-muted: #475569;        /* Slate 600 for high-contrast readable text */
  --fl-glint-gold: #F59E0B;       /* Amber gold for review stars and trust marks */
  --fl-border-color: #E2E8F0;     /* Border lines */

  /* Font Configuration */
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Styled Aesthetics */
  --fl-border-radius: 16px;       /* Soft style border-radius */
  --fl-shadow-depth: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Raised shadow */
}

/* --- BASE STYLING --- */
body {
  font-family: var(--font-body);
  background-color: var(--fl-canvas-bg);
  color: var(--fl-ink-muted);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fl-ink-main);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
}

/* --- STAGE LIMITER (Container Alternative) --- */
.fl-stage-limiter {
  width: 100%;
  max-width: 1180px; /* Custom container width */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- HEADER (Masthead) --- */
.fl-masthead-canopy {
  width: 100%;
  background-color: var(--fl-surface-solid);
  border-bottom: 1px solid var(--fl-border-color);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fl-flex-align-apart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fl-brand-emblem-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fl-logo-svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--fl-accent-main);
}

.fl-brand-name-callout {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fl-ink-main);
}

.fl-desktop-decor {
  display: none;
  color: var(--fl-accent-main);
}

@media (min-width: 1024px) {
  .fl-desktop-decor {
    display: block;
  }
}

/* --- PRODUCT SECTION (Split Desktop Layout) --- */
.fl-promo-deck {
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.fl-split-desktop-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .fl-split-desktop-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Left Content Area (55%) */
.fl-showcase-narrative {
  width: 100%;
}

@media (min-width: 1024px) {
  .fl-showcase-narrative {
    width: 55%;
  }
}

.fl-heroic-billboard {
  font-size: 2.25rem;
  line-height: 1.15;
  text-transform: uppercase; /* Heading Case */
  color: var(--fl-ink-main);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .fl-heroic-billboard {
    font-size: 3rem;
  }
}

.fl-supporting-byline {
  font-size: 1.125rem;
  color: var(--fl-ink-muted);
  margin-bottom: 1.5rem;
}

/* Benefit Pills (Chips Style) */
.fl-badge-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fl-badge-pill {
  background-color: var(--fl-accent-glow);
  color: var(--fl-accent-main);
  padding: 0.5rem 1rem;
  border-radius: 999px; /* Pill style */
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.fl-editorial-prose {
  font-size: 1rem;
  color: var(--fl-ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Short icon row inside main block */
.fl-iconic-briefs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.fl-brief-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fl-ink-main);
}

.fl-brief-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--fl-accent-main);
}

/* --- DYNAMIC ACTION DOCK (Promo CTA Block) --- */
.fl-action-dock {
  background-color: var(--fl-surface-solid);
  padding: 1.5rem;
  border-radius: var(--fl-border-radius);
  border: 1px solid var(--fl-border-color);
  box-shadow: var(--fl-shadow-depth);
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .fl-action-dock {
    position: sticky;
    bottom: 2rem;
    z-index: 40;
  }
}

.fl-price-badge-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--fl-accent-glow);
  padding: 0.75rem 1.25rem;
  border-radius: var(--fl-border-radius);
  margin-bottom: 1.25rem;
}

.fl-price-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fl-accent-main);
}

.fl-price-figure {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--fl-accent-main);
}

.fl-interactive-trigger {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--fl-accent-main);
  color: var(--fl-surface-solid);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--fl-border-radius);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 6px -1px rgba(2, 116, 169, 0.2);
}

.fl-interactive-trigger:hover,
.fl-interactive-trigger:focus {
  background-color: var(--fl-accent-hover);
  color: var(--fl-surface-solid);
  transform: translateY(-1px);
}

.fl-interactive-trigger:active {
  transform: translateY(1px);
}

/* Guarantee Badge (icon-left style) */
.fl-guarantee-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.5rem 0.25rem;
}

.fl-guarantee-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--fl-accent-main);
  flex-shrink: 0;
}

.fl-guarantee-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--fl-ink-muted);
}

/* --- IMAGE SHELF (Right Area 45%) --- */
.fl-picture-shelf {
  width: 100%;
}

@media (min-width: 1024px) {
  .fl-picture-shelf {
    width: 45%;
    position: sticky;
    top: 6rem;
  }
}

.fl-image-wrapper-card {
  position: relative;
  background-color: var(--fl-surface-solid);
  border-radius: var(--fl-border-radius);
  padding: 2rem;
  box-shadow: var(--fl-shadow-depth);
  border: 1px solid var(--fl-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fl-product-presentation {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 10;
}

.fl-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fl-bg-vortex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  color: var(--fl-accent-main);
}

/* --- FEATURES GRID FLOOR --- */
.fl-showcase-floor {
  background-color: var(--fl-surface-solid);
  border-top: 1px solid var(--fl-border-color);
  border-bottom: 1px solid var(--fl-border-color);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.fl-floor-heading {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: var(--fl-ink-main);
}

.fl-double-column-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .fl-double-column-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fl-showcase-cell {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.fl-icon-capsule {
  width: 4rem; /* 64px size as required */
  height: 4rem;
  border-radius: 999px;
  background-color: var(--fl-accent-glow);
  color: var(--fl-accent-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fl-icon-capsule svg {
  width: 2rem;
  height: 2rem;
}

.fl-item-topic {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fl-ink-main);
}

.fl-item-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--fl-ink-muted);
}

/* --- TESTIMONIALS SECTION (Horizontal Bubble Grid) --- */
.fl-feedback-wall {
  background-color: var(--fl-canvas-bg);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.fl-testimonial-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .fl-testimonial-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fl-quote-bubble {
  background-color: var(--fl-surface-solid);
  border-radius: var(--fl-border-radius);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--fl-shadow-depth);
  border: 1px solid var(--fl-border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background Quote Decors */
.fl-quote-mark {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--fl-accent-glow);
  user-select: none;
  font-weight: 800;
}

.fl-quote-body-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--fl-ink-muted);
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.fl-quote-author-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.fl-initial-sphere {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-color: var(--fl-accent-main);
  color: var(--fl-surface-solid);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-author-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fl-ink-main);
  margin-bottom: 0.125rem;
}

.fl-rating-stars {
  color: var(--fl-glint-gold);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* --- GLOBAL FOOTER --- */
.fl-global-footer {
  background-color: var(--fl-ink-main);
  color: var(--fl-surface-tint);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}

.fl-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .fl-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.fl-footer-brand-side {
  width: 100%;
}

@media (min-width: 1024px) {
  .fl-footer-brand-side {
    max-width: 45%;
  }
}

.fl-footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94A3B8;
  margin-top: 1rem;
}

.fl-footer-links-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fl-footer-links-side {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .fl-footer-links-side {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
}

.fl-footer-anchor {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.fl-footer-anchor:hover,
.fl-footer-anchor:focus {
  color: var(--fl-surface-solid);
}

.fl-footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748B;
}