/* Global settings */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* Headline */
h1, .headline {
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.02em;    /* -20 tracking */
    text-transform: none;
}

/* Sub-headline */
h2, .sub-headline {
    font-weight: 600;           /* Semi-bold or Medium */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Body Copy */
p, .body-text {
    font-weight: 300;           /* Light */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Specification Label */
.spec-label {
    font-weight: 900;           /* Black */
    font-style: italic;
    letter-spacing: 0.04em;     /* +40 tracking */
    text-transform: none;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays above other content */
    /* Remove the solid background color to allow the transparent nav to show the image */
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px; /* Adjust the padding to better fit your logo and button */
    background-color: rgba(0, 0, 0, 0.7); /* This provides the dark transparent background */
    height: 40px; /* Adjusted for a thinner header */
    /* Rest of your styles... */
}

.logo-link {
    display: flex;
    align-items: center;
    /* No padding needed if you're using margin on the logo itself */
}

.logo {
    height: 30px; /* Adjust for a visible logo size */
    width: auto; /* Keeps the aspect ratio of the logo */
    /* No negative margin, adjust the actual header height instead */
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center; /* This will vertically center your nav items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    padding: 0 5px;
    margin: 0; /* Ensure there's no additional space from margins */
    line-height: 1;
    /* You can add line-height or padding here if you need to adjust the vertical alignment */
}

/* Navigation links styling */
.nav-links a {
    text-decoration: none; /* Removes underline by default */
    color: #ffffff; /* White text color */
    font-size: 1em; /* Adjust the font size as needed */
    padding: 10px 15px; /* Padding for better click area */
    display: block; /* Makes the anchor tag fill the list item */
    transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* Hover effect for navigation links */
.nav-links a:hover, .nav-links a:focus {
    color: #03ab94; /* Changes text color to aquamarine on hover and focus */
}

header .buy-now, a.buy-now-button {
    display: inline-flex; /* Use flexbox for centering */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    background-color: #03ab94 !important; /* Green background */
    color: white !important; /* White text */
    text-decoration: none !important; /* Remove underline */
    padding: 5px 15px !important; /* Smaller padding for a smaller button */
    border: none !important; /* Remove border */
    border-radius: 25px !important; /* Rounded corners */
    font-size: 0.9rem !important; /* Slightly smaller font size */
    font-weight: bold !important; /* Bold text */
    cursor: pointer !important; /* Pointer cursor */
    transition: background-color 0.3s ease, transform 0.3s ease !important; /* Smooth transitions */
    text-align: center !important; /* Ensure centered text */
    line-height: normal; /* Reset line-height for consistency */
}



/* Hover Effect for the Buy Now Button */
header .buy-now:hover, a.buy-now-button:hover {
    background-color: #02917a !important; /* Darker green on hover */
    color: white !important; /* Ensure text remains white */
}

/* Responsive Styling for Smaller Devices */
@media (max-width: 768px) {
    header .buy-now, a.buy-now-button {
        font-size: 1.2rem !important; /* Slightly larger font size for mobile */
        padding: 15px 30px !important; /* Larger padding for tap area */
    }
}

/* Target the Buy Now button in the navbar */
header nav .nav-links .buy-now-button {
    display: inline-block;
    background-color: #02917a; /* Green background */
    color: white; /* White text */
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for click area */
    border: 0px solid #02917a; /* Green border */
    border-radius: 25px; /* Rounded corners */
    font-size: 0.8rem; /* Standard font size */
    font-weight: bold; /* Bold text for emphasis */
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-left: 10px; /* Spacing from other nav items */
    white-space: nowrap; /* Prevents text wrapping */
}

/* Hover effect for the Buy Now button */
header nav .nav-links .buy-now-button:hover {
    background-color: #07a66e; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav .nav-links .buy-now-button {
        font-size: 1.2rem; /* Increase font size for smaller screens */
        padding: 15px 40px; /* Larger padding for better tap area */
        width: 100%; /* Take up more width on mobile */
        text-align: center; /* Center-align text */
        margin: 10px auto; /* Center the button in the navbar */
    }
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden by default for larger screens */
    cursor: pointer;
    font-size: 30px;
    color: white;
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal layout by default */
}

.nav-links li {
    margin: 0 -10px; /* Closer spacing for large screens */
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #1abc9c; /* Highlight color */
}

/* Mobile Menu Styles */
@media (max-width: 768px) {

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: white;
        transition: transform 0.3s ease;
        z-index: 2000; /* Ensure it stays above the navbar */
    }

    /* Add a rotation effect or change icon for "open" state */
    .hamburger.open {
        transform: rotate(90deg); /* Rotate for open state (optional) */
    }

    /* Ensure the hamburger is always visible */
    .nav-links {
        z-index: 1500; /* Menu is below the hamburger */
        position: fixed; /* Ensure it doesn't hide the hamburger */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0; /* Initially hidden */
        transform: translateY(20px);
        font-size: 4rem; /* Larger text size for mobile titles */
        font-weight: bold; /* Make titles bold */
        animation: fadeInUp 0.5s forwards;
    }

    .nav-links.active li {
        animation: fadeInUp 0.5s forwards; /* Fade-in animation */
    }

    .nav-links.exiting li {
        animation: fadeOutDown 0.5s forwards; /* Reverse fade-out animation */
    }

    .nav-links li a {
        text-decoration: none;
        color: white;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .nav-links li a.clicked {
        transform: scale(1.2); /* Slightly enlarge on click */
        color: #1abc9c; /* Highlight color */
    }

    @keyframes fadeInSmooth {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeOutSmooth {
        0% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    /* Ensure animations retain their end states */
    .nav-links li {
        animation-fill-mode: forwards; /* Retain the final animation state */
        will-change: opacity, transform; /* Optimize performance */
    }
}

/* Media Query for Larger Screens */
@media (min-width: 769px) {
    .nav-links li {
        margin: 0 5px; /* Closer spacing between links */
    }

    .nav-links li a {
        font-size: 1rem; /* Keep default size on larger screens */
    }
}

/* ============================================================
   Reel Free — Retractable Oxygen Tubing Reel Page (UPDATED CSS)
   Changes you requested:
   ✅ Way fewer favicons/logos — now strategically placed as "brand chips"
      (kicker + section headers + a couple of small accent badges)
   ✅ True alternating BLACK + WHITE section backgrounds with smooth transitions
   ✅ Keeps the overall look/animations/typography mostly the same
============================================================ */

/* ---------- THEME TOKENS ---------- */
:root{
  --rf-black:#0F0F0F;
  --rf-teal:#18B19C;
  --rf-mint:#8CE4D8;
  --rf-offwhite:#E3E0E0;
  --rf-gray:#414141;

  --rt-radius-xl:28px;
  --rt-radius-lg:22px;
  --rt-radius-md:16px;
  --rt-radius-sm:12px;

  --rt-shadow-soft: 0 18px 50px rgba(0,0,0,.35);
  --rt-shadow-hard: 0 22px 70px rgba(0,0,0,.55);

  --rt-outline-dark: 1px solid rgba(227,224,224,.12);
  --rt-outline-light: 1px solid rgba(15,15,15,.10);

  --rt-max: 1180px;
  --rt-pad: clamp(18px, 2.6vw, 34px);

  --rt-ease: cubic-bezier(.2,.9,.2,1);
  --rt-ease2: cubic-bezier(.2,.8,.2,1);

  /* white surface */
  --rt-surface: #F6F6F6;
  --rt-surface2:#FFFFFF;
}

/* ---------- PAGE BASE ---------- */
#rt-page.rt-page{
  color: var(--rf-offwhite);
  background:
    radial-gradient(1200px 650px at 10% 0%, rgba(24,177,156,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(140,228,216,.12), transparent 60%),
    linear-gradient(180deg, #0c0c0c 0%, #0F0F0F 65%, #0b0b0b 100%);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

/* subtle animated grain */
#rt-page.rt-page::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
  opacity:.06;
  mix-blend-mode: overlay;
  pointer-events:none;
  animation: rt-grain 12s linear infinite;
}
@keyframes rt-grain{
  0%{ transform: translate3d(0,0,0) }
  100%{ transform: translate3d(-40px, 25px,0) }
}

/* ---------- CONTAINER ---------- */
.rt-container{
  width: min(var(--rt-max), 100%);
  margin: 0 auto;
  padding: 0 var(--rt-pad);
}

/* ---------- TYPOGRAPHY ---------- */
.rt-h1, .rt-h2, .rt-h3{ letter-spacing: -0.02em; text-wrap: balance; }
.rt-h1{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.0rem, 3.8vw, 3.35rem);
  line-height: 1.03;
  margin: 14px 0;
}
.rt-h2{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 10px;
}
.rt-h3{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.2;
  margin: 0 0 8px;
}
.rt-lead, .rt-subhead{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  margin: 0;
}
.rt-body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}
.rt-spec{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 10px;
}

/* ---------- LINKS ---------- */
#rt-page a{ color: inherit; text-decoration: none; }
.rt-inlineLink{
  color: rgba(24,177,156,.95);
  text-decoration: underline;
  text-decoration-color: rgba(24,177,156,.45);
  text-underline-offset: 3px;
  transition: color .25s var(--rt-ease), text-decoration-color .25s var(--rt-ease);
}
.rt-inlineLink:hover{
  color: #ffffff;
  text-decoration-color: rgba(140,228,216,.85);
}

/* ---------- REVEAL ---------- */
.rt-reveal{
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: rt-reveal 900ms var(--rt-ease) forwards;
}
@keyframes rt-reveal{ to{ opacity: 1; transform: translate3d(0,0,0); } }

@media (prefers-reduced-motion: reduce){
  #rt-page.rt-page::before{ animation: none; }
  .rt-reveal{ opacity:1; transform:none; animation:none; }
  .rt-btn{ transition:none; }
  .rt-mediaCard img, .rt-mediaCard video, .rt-iframe{ transition:none; }
}

/* ============================================================
   STRATEGIC BRAND ELEMENTS (no more random floaters)
   - Kicker has a small "brand chip" (favicon/mark) to the left
   - Section headings can optionally show a tiny chip
============================================================ */

.rt-brandChip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.rt-chip{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(140,228,216,.40) 42%, rgba(24,177,156,.25) 72%),
    rgba(65,65,65,.25);
  border: 1px solid rgba(227,224,224,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
  overflow:hidden;
}
.rt-chip img{
  width: 30px;
  height: 30px;
  display:block;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.35));
}

/* If you want chips on white sections too (auto adjusts) */
.rt-section--light .rt-chip{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(140,228,216,.35) 42%, rgba(24,177,156,.22) 72%),
    rgba(255,255,255,.75);
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

/* ============================================================
   SAFETY STATS -> COOL BADGES
============================================================ */
#rt-page .rt-statRow--badges{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

#rt-page .rt-statBadge{
  flex: 1 1 180px;
  min-width: 180px;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  position: relative;
  overflow:hidden;

  /* glass + gradient vibe */
  background: rgba(65,65,65,.18);
  border: 1px solid rgba(227,224,224,.12);
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
  transition: transform .22s var(--rt-ease), box-shadow .22s var(--rt-ease), border-color .22s var(--rt-ease);
}

#rt-page .rt-statBadge::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(280px 120px at 15% 0%, rgba(140,228,216,.22), transparent 60%),
    radial-gradient(260px 140px at 95% 100%, rgba(24,177,156,.16), transparent 62%),
    linear-gradient(90deg, rgba(140,228,216,.10), rgba(24,177,156,.08));
  opacity: .9;
  pointer-events:none;
}

#rt-page .rt-statBadge:hover{
  transform: translate3d(0,-2px,0);
  border-color: rgba(140,228,216,.28);
  box-shadow: 0 22px 64px rgba(0,0,0,.45);
}

#rt-page .rt-statBadge .rt-statNum{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #071b18;

  background: linear-gradient(135deg, rgba(140,228,216,.98), rgba(24,177,156,.92));
  box-shadow: 0 16px 36px rgba(24,177,156,.18), 0 14px 40px rgba(0,0,0,.32);
  position: relative;
  z-index: 1;
}

#rt-page .rt-statBadge .rt-statLabel{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(227,224,224,.90);
  position: relative;
  z-index: 1;
}

/* Light section version */
#rt-page .rt-section--light .rt-statBadge{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 18px 58px rgba(0,0,0,.12);
}
#rt-page .rt-section--light .rt-statBadge .rt-statLabel{
  color: rgba(15,15,15,.80);
}

/* ============================================================
   COLLAGE IMAGE SMALLER + CENTERED + CORNER FAVICON
============================================================ */
#rt-page .rt-collage--center{
  display:flex;
  justify-content:center;
}

#rt-page .rt-collageFrame{
  position: relative;
  width: min(720px, 100%);     /* << shrink size here */
  border-radius: var(--rt-radius-xl);
  overflow:hidden;
  border: 1px solid rgba(227,224,224,.12);
  box-shadow: var(--rt-shadow-hard);
  background: rgba(15,15,15,.18);
}

#rt-page .rt-section--light .rt-collageFrame{
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 26px 86px rgba(0,0,0,.16);
  background: rgba(255,255,255,.75);
}

#rt-page .rt-collageImg{
  display:block;
  width:100%;
  height:auto;
  transform: none; /* stop the “too big” feel */
}

/* Small favicon pinned to bottom corner */
#rt-page .rt-collageCornerIcon{
  position:absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;     /* << favicon size */
  height: 28px;
  border-radius: 10px;
  padding: 6px;
  background: rgba(15,15,15,.55);
  border: 1px solid rgba(227,224,224,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}

/* Light section favicon chip */
#rt-page .rt-section--light .rt-collageCornerIcon{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

/* ============================================================
   COLLAGE: smaller centered image + icon OUTSIDE bottom-right
============================================================ */
#rt-page .rt-collage--center{
  display:flex;
  justify-content:center;
}

#rt-page .rt-collageWrap{
  display:flex;
  align-items:flex-end;     /* icon aligns with bottom of image */
  gap: 12px;                /* space between image and icon */
  width: min(760px, 100%);  /* overall block width */
}

#rt-page .rt-collageFrame{
  width: 100%;
  border-radius: var(--rt-radius-xl);
  overflow:hidden;
  border: 1px solid rgba(227,224,224,.12);
  box-shadow: var(--rt-shadow-hard);
  background: rgba(15,15,15,.18);
}

#rt-page .rt-section--light .rt-collageFrame{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.75);
  box-shadow: 0 26px 86px rgba(0,0,0,.16);
}

#rt-page .rt-collageImg{
  display:block;
  width:100%;
  height:auto;
  transform: none;
}

/* Icon chip outside image */
#rt-page .rt-collageSideIcon{
  width: 50px;              /* icon size */
  height: 50px;
  border-radius: 12px;
  padding: 6px;
  background: rgba(15,15,15,.55);
  border: 1px solid rgba(227,224,224,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}

/* Light section version */
#rt-page .rt-section--light .rt-collageSideIcon{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

/* Mobile: icon drops under image and aligns right */
@media (max-width: 520px){
  #rt-page .rt-collageWrap{
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

/* ---------- BUTTONS ---------- */
.rt-ctaRow{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.rt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid rgba(227,224,224,.18);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  transition: transform .22s var(--rt-ease), box-shadow .22s var(--rt-ease), border-color .22s var(--rt-ease), background .22s var(--rt-ease);
  will-change: transform;
}
.rt-btnPrimary{
  color: #051413;
  border-color: rgba(24,177,156,.35);
  background: linear-gradient(90deg, rgba(140,228,216,.95), rgba(24,177,156,.92));
  box-shadow: 0 12px 28px rgba(24,177,156,.18), 0 12px 40px rgba(0,0,0,.35);
}
.rt-btnGhost{
  color: rgba(227,224,224,.92);
  background: rgba(227,224,224,.06);
}
.rt-btn:hover{
  transform: translate3d(0,-2px,0);
  box-shadow: 0 18px 52px rgba(0,0,0,.45);
  border-color: rgba(140,228,216,.35);
}
.rt-btn:active{ transform: translate3d(0,0,0) scale(.99); }

/* ---------- PROOF PILLS ---------- */
.rt-proof{ display:flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding:0; list-style:none; }
.rt-proofItem{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(65,65,65,.22);
  border: var(--rt-outline-dark);
  color: rgba(227,224,224,.86);
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.rt-proofIcon{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(140,228,216,.95);
  box-shadow: 0 0 0 6px rgba(140,228,216,.12);
}

/* ============================================================
   SECTION BACKGROUNDS: TRUE BLACK/WHITE ALTERNATION
   - Dark sections: black/teal glow
   - Light sections: clean white + mint/teal accents
   Smooth transition happens via top/bottom fades.
============================================================ */

.rt-section{
  padding: clamp(54px, 7vw, 96px) 0;
  position: relative;
}

/* soft separator line */
.rt-section::before{
  content:"";
  position:absolute; left:0; right:0; top:0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65,65,65,.22), transparent);
  opacity: .9;
}

/* Top/bottom fades to blend between black/white sections */
.rt-section::after{
  content:"";
  position:absolute; left:0; right:0;
  top: -60px;
  height: 60px;
  pointer-events:none;
  opacity: 1;
}

/* DARK section (default) */
.rt-section{
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(24,177,156,.16), transparent 62%),
    radial-gradient(800px 520px at 20% 10%, rgba(140,228,216,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.25));
  color: var(--rf-offwhite);
}
.rt-section .rt-lead,
.rt-section .rt-body{ color: rgba(227,224,224,.88); }
.rt-section .rt-spec{ color: rgba(140,228,216,.95); }

/* LIGHT section (apply this class in HTML where you want white) */
.rt-section--light{
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(140,228,216,.22), transparent 60%),
    radial-gradient(700px 420px at 85% 20%, rgba(24,177,156,.18), transparent 62%),
    linear-gradient(180deg, var(--rt-surface) 0%, var(--rt-surface2) 55%, var(--rt-surface) 100%);
  color: #101010;
}
.rt-section--light::before{
  background: linear-gradient(90deg, transparent, rgba(15,15,15,.10), transparent);
}
.rt-section--light .rt-h2,
.rt-section--light .rt-h3{ color: #101010; }
.rt-section--light .rt-lead{ color: rgba(15,15,15,.80); }
.rt-section--light .rt-body{ color: rgba(15,15,15,.78); }
.rt-section--light .rt-spec{ color: rgba(12,81,103,.95); } /* subtle deep teal-ish */
.rt-section--light .rt-inlineLink{
  color: rgba(12,81,103,.95);
  text-decoration-color: rgba(24,177,156,.40);
}
.rt-section--light .rt-inlineLink:hover{
  color: #0F0F0F;
  text-decoration-color: rgba(24,177,156,.70);
}

/* Fade blending: set in each section based on light/dark */
.rt-section:not(.rt-section--light)::after{
  background: linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%);
}
.rt-section--light::after{
  background: linear-gradient(180deg, rgba(246,246,246,0) 0%, rgba(246,246,246,1) 100%);
}

/* ---------- HERO ---------- */
.rt-hero{
  padding: clamp(72px, 9vw, 120px) 0 0;
  position: relative;
}
.rt-heroBG{
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 520px at 15% 5%, rgba(24,177,156,.32), transparent 55%),
    radial-gradient(880px 560px at 85% 15%, rgba(140,228,216,.22), transparent 60%),
    conic-gradient(from 180deg at 50% 20%, rgba(24,177,156,.16), rgba(227,224,224,.04), rgba(24,177,156,.10));
  filter: blur(22px);
  opacity: .65;
  z-index: -1;
}
.rt-heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  padding-bottom: clamp(34px, 5vw, 56px);
}

/* kicker with strategic brand chip (no floating) */
.rt-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(227,224,224,.88);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(65,65,65,.24);
  border: var(--rt-outline-dark);
  width: fit-content;
  backdrop-filter: blur(10px);
}
.rt-kickerDot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--rf-mint) 35%, var(--rf-teal) 70%);
  box-shadow: 0 0 0 6px rgba(24,177,156,.14);
}

/* Brand strip (kept) */
.rt-brandStrip{
  padding: 18px 0 22px;
  background: linear-gradient(90deg, rgba(227,224,224,.06), rgba(24,177,156,.10), rgba(227,224,224,.06));
  border-top: 1px solid rgba(227,224,224,.08);
  border-bottom: 1px solid rgba(227,224,224,.08);
}
.rt-brandRow{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content: center;
  flex-wrap: wrap;
}
.rt-brandLogo{
  height: 60px;
  width: auto;
  opacity: .9;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  transition: transform .25s var(--rt-ease), opacity .25s var(--rt-ease);
}
.rt-brandLogo:hover{ transform: translate3d(0,-2px,0); opacity: 1; }

/* ---------- MEDIA CARDS ---------- */
.rt-mediaCard{
  position: relative;
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(227,224,224,.12);
  background: rgba(227,224,224,.03);
  box-shadow: var(--rt-shadow-soft);
  transform: translateZ(0);
  transition: transform .26s var(--rt-ease), box-shadow .26s var(--rt-ease), border-color .26s var(--rt-ease);
}

/* Shrink media cards slightly */
.rt-mediaCard{
  max-width: 520px;   /* adjust: try 480px–600px */
  margin-left: auto;
  margin-right: auto;
}

.rt-section--light .rt-mediaCard{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.65);
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.rt-mediaCard::before{
  content:"";
  position:absolute; inset: -2px;
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(140,228,216,.14), transparent 60%),
    radial-gradient(700px 420px at 90% 30%, rgba(24,177,156,.12), transparent 62%),
    linear-gradient(135deg, rgba(227,224,224,.08), transparent 45%);
  opacity: .9;
  pointer-events:none;
  z-index: 1;
}
.rt-section--light .rt-mediaCard::before{
  opacity: .55;
  background:
    radial-gradient(700px 420px at 15% 0%, rgba(140,228,216,.22), transparent 60%),
    radial-gradient(700px 420px at 95% 100%, rgba(24,177,156,.16), transparent 62%),
    linear-gradient(135deg, rgba(15,15,15,.05), transparent 45%);
}

.rt-mediaCard img,
.rt-mediaCard video{
  width: 100%;
  height: auto;
  display:block;
  transform: scale(1.02);
  transition: transform 800ms var(--rt-ease);
}
.rt-mediaCard:hover{
  transform: translate3d(0,-3px,0);
  border-color: rgba(24,177,156,.22);
  box-shadow: 0 26px 78px rgba(0,0,0,.55);
}
.rt-section--light .rt-mediaCard:hover{
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.rt-mediaCard:hover img,
.rt-mediaCard:hover video{ transform: scale(1.06); }

/* caption */
.rt-caption{
  position:absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(227,224,224,.16);
  background: rgba(15,15,15,.62);
  backdrop-filter: blur(12px);
}
.rt-section--light .rt-caption{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,15,15,.10);
}
.rt-captionBadge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #071b18;
  background: linear-gradient(90deg, rgba(140,228,216,.96), rgba(24,177,156,.92));
}
.rt-captionText{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(227,224,224,.88);
}
.rt-section--light .rt-captionText{ color: rgba(15,15,15,.78); }

/* ---------- SPLITS / GRIDS ---------- */
.rt-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}

.rt-steps{ display:grid; gap: 14px; }
.rt-step{
  padding: 16px;
  border-radius: var(--rt-radius-lg);
  border: 1px solid rgba(227,224,224,.12);
  background:
    radial-gradient(650px 320px at 0% 0%, rgba(140,228,216,.10), transparent 55%),
    radial-gradient(650px 340px at 100% 100%, rgba(24,177,156,.10), transparent 58%),
    rgba(65,65,65,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.26);
  transition: transform .25s var(--rt-ease), border-color .25s var(--rt-ease), box-shadow .25s var(--rt-ease);
}
.rt-section--light .rt-step{
  border: 1px solid rgba(15,15,15,.10);
  background:
    radial-gradient(650px 340px at 0% 0%, rgba(140,228,216,.22), transparent 55%),
    radial-gradient(650px 340px at 100% 100%, rgba(24,177,156,.18), transparent 58%),
    rgba(255,255,255,.80);
  box-shadow: 0 18px 52px rgba(0,0,0,.14);
}
.rt-step:hover{
  transform: translate3d(0,-2px,0);
  border-color: rgba(140,228,216,.25);
  box-shadow: 0 18px 52px rgba(0,0,0,.40);
}
.rt-section--light .rt-step:hover{
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}

.rt-benefitGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rt-benefitCard{
  position: relative;
  padding: 18px 16px;
  border-radius: var(--rt-radius-lg);
  border: 1px solid rgba(227,224,224,.12);
  background:
    linear-gradient(180deg, rgba(227,224,224,.05), rgba(0,0,0,.0)),
    rgba(15,15,15,.35);
  box-shadow: 0 12px 36px rgba(0,0,0,.30);
  overflow:hidden;
  transition: transform .26s var(--rt-ease), border-color .26s var(--rt-ease), box-shadow .26s var(--rt-ease);
}
.rt-section--light .rt-benefitCard{
  border: 1px solid rgba(15,15,15,.10);
  background:
    radial-gradient(420px 220px at 15% 20%, rgba(140,228,216,.20), transparent 60%),
    radial-gradient(420px 240px at 90% 80%, rgba(24,177,156,.14), transparent 62%),
    rgba(255,255,255,.88);
  box-shadow: 0 18px 58px rgba(0,0,0,.14);
}
.rt-benefitCard:hover{
  transform: translate3d(0,-3px,0);
  border-color: rgba(24,177,156,.26);
  box-shadow: 0 18px 56px rgba(0,0,0,.45);
}
.rt-section--light .rt-benefitCard:hover{
  box-shadow: 0 28px 84px rgba(0,0,0,.18);
}
.rt-icon{
  width: 28px; height: 28px;
  display:block;
  margin-bottom: 10px;
  opacity: .95;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.30));
}

/* ---------- WHY / CHECKLIST ---------- */
.rt-compare{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}
.rt-checklist{
  list-style:none; padding:0; margin:0;
  display:grid; gap:10px;
}
.rt-checklist li{
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 16px;
  border: 1px solid rgba(227,224,224,.12);
  background: rgba(65,65,65,.18);
  overflow:hidden;
}
.rt-section--light .rt-checklist li{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.88);
}

.rt-miniCtas{ display:flex; gap:12px; margin-top:16px; flex-wrap:wrap; }

/* ---------- VIDEO ---------- */
.rt-videoGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.rt-videoCard{ margin:0; }
.rt-videoFrame{
  border-radius: var(--rt-radius-xl);
  overflow:hidden;
  border: 1px solid rgba(227,224,224,.12);
  background: rgba(15,15,15,.35);
  box-shadow: var(--rt-shadow-soft);
  position: relative;
  transition: transform .26s var(--rt-ease), box-shadow .26s var(--rt-ease), border-color .26s var(--rt-ease);
}
.rt-section--light .rt-videoFrame{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.rt-videoFrame:hover{
  transform: translate3d(0,-3px,0);
  border-color: rgba(24,177,156,.22);
  box-shadow: 0 26px 78px rgba(0,0,0,.55);
}
.rt-section--light .rt-videoFrame:hover{ box-shadow: 0 28px 80px rgba(0,0,0,.18); }

.rt-iframe{
  display:block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.rt-videoEl{ display:block; width:100%; height:auto; }

/* Center video grid and limit width */
#rt-page .rt-videoGrid{
  width: min(900px, 100%);  /* shrink overall width */
  margin-left: auto;
  margin-right: auto;
}



/* ---------- REVIEWS ---------- */
.rt-reviewGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rt-reviewCard{
  border-radius: var(--rt-radius-xl);
  border: 1px solid rgba(227,224,224,.12);
  background: rgba(65,65,65,.16);
  padding: 18px 16px;
  box-shadow: 0 14px 46px rgba(0,0,0,.35);
  transition: transform .25s var(--rt-ease), border-color .25s var(--rt-ease), box-shadow .25s var(--rt-ease);
}
.rt-section--light .rt-reviewCard{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 58px rgba(0,0,0,.14);
}
.rt-reviewCard:hover{
  transform: translate3d(0,-3px,0);
  border-color: rgba(140,228,216,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.50);
}
.rt-section--light .rt-reviewCard:hover{ box-shadow: 0 28px 84px rgba(0,0,0,.18); }

.rt-stars{
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: rgba(140,228,216,.95);
  margin-bottom: 10px;
}
.rt-section--light .rt-stars{ color: rgba(12,81,103,.90); }

.rt-reviewText{
  margin: 0 0 12px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.75;
}
.rt-reviewName{ font-weight: 700; }
.rt-reviewTag{ opacity: .75; }

/* ---------- FAQ ---------- */
.rt-faqList{ display:grid; gap: 12px; max-width: 900px; }
.rt-faqItem{
  border-radius: var(--rt-radius-xl);
  border: 1px solid rgba(227,224,224,.12);
  background: rgba(65,65,65,.14);
  overflow:hidden;
  box-shadow: 0 14px 44px rgba(0,0,0,.32);
}
.rt-section--light .rt-faqItem{
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 58px rgba(0,0,0,.14);
}
.rt-faqQ{
  cursor:pointer;
  padding: 16px;
  list-style:none;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
}
.rt-faqQ::-webkit-details-marker{ display:none; }
.rt-faqQ::after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(15,15,15,.35);
  border: 1px solid rgba(227,224,224,.14);
  color: rgba(140,228,216,.95);
  transition: background .22s var(--rt-ease);
}
.rt-section--light .rt-faqQ::after{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,15,15,.10);
  color: rgba(12,81,103,.90);
}
.rt-faqItem[open] .rt-faqQ::after{ content:"–"; background: rgba(24,177,156,.18); }
.rt-faqA{ padding: 0 16px 16px; border-top: 1px solid rgba(227,224,224,.10); }
.rt-section--light .rt-faqA{ border-top: 1px solid rgba(15,15,15,.10); }

/* ---------- FINAL CTA ---------- */
.rt-ctaInner{
  border-radius: var(--rt-radius-xl);
  border: 1px solid rgba(227,224,224,.12);
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(140,228,216,.18), transparent 60%),
    radial-gradient(900px 520px at 90% 80%, rgba(24,177,156,.16), transparent 62%),
    rgba(15,15,15,.35);
  box-shadow: var(--rt-shadow-hard);
  padding: clamp(18px, 3vw, 28px);
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: center;
  overflow:hidden;
}
.rt-section--light .rt-ctaInner{
  border: 1px solid rgba(15,15,15,.10);
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(140,228,216,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 80%, rgba(24,177,156,.18), transparent 62%),
    rgba(255,255,255,.90);
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}
.rt-ctaBtns{ display:flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .rt-heroGrid{ grid-template-columns: 1fr; }
  .rt-split{ grid-template-columns: 1fr; }
  .rt-benefitGrid{ grid-template-columns: repeat(2, 1fr); }
  .rt-compare{ grid-template-columns: 1fr; }
  .rt-videoGrid{ grid-template-columns: 1fr; }
  .rt-reviewGrid{ grid-template-columns: 1fr; }
  .rt-ctaInner{ grid-template-columns: 1fr; }
  .rt-ctaBtns{ justify-content: flex-start; }
}
@media (max-width: 520px){
  .rt-benefitGrid{ grid-template-columns: 1fr; }
  .rt-caption{ left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; }
}

/* ---------- FOCUS ---------- */
#rt-page :is(a, button, summary):focus-visible{
  outline: 2px solid rgba(140,228,216,.75);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ============================================================
   HARD CUT BETWEEN SECTIONS (no gradient blending)
============================================================ */
#rt-page .rt-section::after{
  content: none !important;      /* kills the blend fade */
}

/* Clean divider line between sections */
#rt-page .rt-section{
  border-top: 1px solid rgba(65,65,65,.22);
}

/* Divider line on white sections (slightly darker) */
#rt-page .rt-section.rt-section--light{
  border-top: 1px solid rgba(15,15,15,.12);
}

/* Optional: remove the old ::before separator if you want ONLY the border-top */
#rt-page .rt-section::before{
  content: none !important;
}

/* ============================================================
   KILL STICKY (page-scoped) — stops annoying sticky headers
============================================================ */
#rt-page header,
#rt-page .rt-sectionHead,
#rt-page .rt-sectionHead * ,
#rt-page .rt-kicker,
#rt-page h1, #rt-page h2, #rt-page h3,
#rt-page .sticky, #rt-page .is-sticky, #rt-page .pinned, #rt-page .pin,
#rt-page [data-sticky]{
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  z-index: auto !important;
}

/* Prevent anchors from hiding under your fixed site header */
#rt-page section[id]{
  scroll-margin-top: 96px; /* adjust to your real header height */
}

/* ===== REMOVE GREEN TINT IN HERO + BRAND STRIP ===== */

/* 1) Kill the teal/mint glow baked into the PAGE background (this is the big one) */
#rt-page.rt-page{
  background: linear-gradient(180deg, #0c0c0c 0%, #0F0F0F 65%, #0b0b0b 100%) !important;
}

/* 2) Keep your grain if you want — but make sure it’s not “washing” the hero */
#rt-page.rt-page::before{
  opacity: .05 !important;
}

/* 3) Make the brand strip neutral (no teal gradient) */
.rt-brandStrip{
  background: rgba(227,224,224,.06) !important;
}

/* ===== DEBUG: NUCLEAR-REMOVE ANY GREEN OVERLAY IN HERO AREA ===== */
/* (Also proves the file is applying by turning the hero hot pink temporarily) */

#rt-page.rt-page,
#rt-page.rt-page::before,
#rt-page.rt-page::after,
#rt-page .rt-hero,
#rt-page .rt-hero::before,
#rt-page .rt-hero::after,
#rt-page .rt-brandStrip,
#rt-page .rt-brandStrip::before,
#rt-page .rt-brandStrip::after{
  background-image: none !important;
  background: #0F0F0F !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* kill any “grain / overlay” pseudo element completely */
#rt-page.rt-page::before{
  content: none !important;
  display: none !important;
}

/* brand strip neutral */
#rt-page .rt-brandStrip{
  background: rgba(255,255,255,.06) !important;
}

/* if the image itself looks tinted */
#rt-page .rt-mediaCard img{
  filter: none !important;
}

/* HARD KILL: the green/teal hero glow is this element */
#rt-page .rt-heroBG{
  background: none !important;
  filter: none !important;
  opacity: 0 !important;
  display: none !important;
}

/* Footer Styles */
.site-footer {
    background-color: #333; /* Dark grey background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative; /* To ensure footer-bottom can align correctly */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Navigation, Social Media, and Info */
.footer-nav,
.footer-social,
.footer-info {
    flex: 1 1 calc(33.33% - 20px); /* Responsive grid */
    min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
    color: #ccc; /* Light grey links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
    color: #02917a; /* Green hover color */
}

/* Footer Info Section */
.footer-info {
    font-size: 0.9rem;
    color: #ccc; /* Light grey text */
    line-height: 1.6; /* Better readability */
}

.footer-info p {
    margin: 10px 0; /* Add spacing between lines */
}

.footer-info a {
    color: #02917a; /* Replace with your brand's specific green color code */
    text-decoration: none; /* Optional: removes underline from the link */
}

.footer-info a:hover {
    color: #016954; /* Darker green for hover, adjust as needed */
    text-decoration: underline; /* Optional: adds underline on hover for better usability */
}


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb; /* Lighter grey for bottom text */
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem; /* Slightly larger for clarity */
    font-weight: bold; /* Make Reel Free stand out */
    color: #fff;
}

.footer-brand {
    font-weight: 700; /* Bold */
    color: #fff;
}

.footer-year {
    font-weight: 500; /* Medium */
    color: #ccc;
}

.footer-rights {
    font-weight: 300; /* Light */
    color: #bbb;
}

.footer-divider {
    margin: 0 0.3rem;
    color: #999;
}

/* Media Query for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        align-items: center;
        text-align: center;
    }

    .footer-nav,
    .footer-social,
    .footer-info {
        flex: 1 1 100%; /* Each section takes full width */
        margin-bottom: 20px; /* Add spacing between stacked sections */
    }

    .footer-bottom {
        margin-top: 20px; /* Adjust margin for smaller screens */
    }
}


/* ===========================
   Footer Chatbot Launcher
   =========================== */

   .footer-chat {
    /* mobile: flows under contact email */
    margin-top: 14px;
  }
  
  .rf-chatnote {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #9fd8cf; /* subtle teal tint under dark footer */
  }
  
  /* The pill button with two words: Help • Chat */
  .rf-chatbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 0;
    background: #18B19C;         /* brand teal */
    color: #0c2b27;               /* ink on teal */
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 24, 43, 0.18);
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .rf-chatbtn:hover { transform: translateY(-1px); }
  .rf-chatbtn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(2, 24, 43, 0.16); }
  .rf-chatbtn:focus-visible { outline: 3px solid #33c9b5; outline-offset: 2px; }
  
  .rf-chatbtn-help { opacity: 0.95; }
  .rf-chatbtn-dot  { opacity: 0.75; }
  .rf-chatbtn-chat {
    background: #ffffff;
    color: #09443c;
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
    font-weight: 800;
  }
  
  /* Desktop positioning: attach to bottom-right corner of the footer */
  @media (min-width: 768px) {
    .site-footer {
      position: relative; /* already present, ensures absolute positioning is relative */
    }
    .footer-chat {
      position: absolute;
      right: 18px;
      bottom: 18px;
      margin-top: 0; /* override mobile spacing */
      text-align: right;
    }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rf-chatbtn { transition: none !important; }
  }
  