/* 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 — HERO + VIDEO/FEATURES SECTION CSS (ONLY)
   - Header/footer untouched
   - Fixes:
     ✅ H1 first line black, second line green (#18B19C)
     ✅ Buy Now + Watch Demo buttons = green gradient (NOT white)
     ✅ Tighten hero spacing
     ✅ Images: less cropping + more rounded corners
     ✅ Dark section = pure black
     ✅ "Experience..." line = green
     ✅ Feature number badges = ROUND, BRIGHT, LIGHT green gradient
============================================================ */

/* ------------------------------
   HERO (tighter + centered)
------------------------------ */
.rf-hero{
  background: #fff;
  padding: clamp(30px, 5.5vw, 60px) 0 0; /* tighter */
  position: relative;
  overflow: hidden;
}

/* keep your bg layer if you use it */
.rf-heroBG{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rf-heroInner{
  width: min(var(--container), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.rf-heroContent.centered{
  max-width: 820px;
  margin: 0 auto;
}

/* clean top link */
.rf-inlineLink{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
  background: rgba(0,0,0,0.045);
  border: 1px solid rgba(0,0,0,0.10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.rf-inlineLink:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.14);
}

/* H1: first line black, second line green */
.rf-h1{
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.05;
  margin: 14px 0 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

/* first line black */
.rf-h1::first-line{
  color: #0a0a0a;
}

/* IMPORTANT: second line green (requires manual line break in H1) */
.rf-h1 .rf-h1Accent{
  color: #18B19C;
  display: inline;
}

/* Subhead */
.rf-subhead{
  font-size: clamp(15px, 1.7vw, 18px);
  max-width: 66ch;
  margin: 0 auto 18px; /* tighter */
  color: rgba(0,0,0,0.70);
  line-height: 1.55;
}

/* ------------------------------
   BUTTONS (force green gradient)
------------------------------ */
.rf-heroCtas{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 18px; /* tighter */
  flex-wrap: wrap;
}

/* strong specificity so nothing else overrides */
.rf-hero .rf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.01em;
  border: 0 !important;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
  user-select: none;
}

/* Both CTA buttons: green gradient */
.rf-hero .rf-btnPrimary,
.rf-hero .rf-btnGhost{
  color: #06211d !important;
  background: linear-gradient(135deg, #18B19C 0%, #8CE4D8 100%) !important;
  box-shadow: 0 18px 55px rgba(24,177,156,0.26);
}

/* Make Watch Demo subtly different, still green */
.rf-hero .rf-btnGhost{
  filter: saturate(0.95) brightness(0.98);
  box-shadow: 0 16px 48px rgba(24,177,156,0.22);
}

.rf-hero .rf-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(24,177,156,0.32);
}
.rf-hero .rf-btn:active{
  transform: translateY(-1px);
}

.rf-btnIcon{
  font-weight: 900;
  opacity: 0.95;
}

/* ------------------------------
   PROOF BADGES (round + brighter)
------------------------------ */
.rf-proofRow{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.rf-proofBadge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;

  /* bright light gradient */
  background: linear-gradient(135deg, rgba(24,177,156,0.22), rgba(140,228,216,0.20));
  border: 1px solid rgba(24,177,156,0.40);
  box-shadow:
    0 14px 38px rgba(0,0,0,0.10),
    0 0 0 6px rgba(24,177,156,0.10);

  color: rgba(0,0,0,0.82);
  font-weight: 900;
}

.rf-star{
  font-size: 14px;
  letter-spacing: 0.10em;
  color: #18B19C;
}

.rf-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18B19C, #8CE4D8);
  box-shadow: 0 0 0 5px rgba(24,177,156,0.14);
}

/* ------------------------------
   HERO IMAGES STRIP (less crop + rounder)
------------------------------ */
.rf-heroImages{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 22px);
  margin: clamp(26px, 4.5vw, 56px) auto 0; /* tighter */
  padding: 0 var(--pad-x);
  max-width: var(--container);
}

.rf-heroImages img{
  width: 100%;
  height: 320px;              /* gives consistent row height */
  object-fit: contain;        /* prevents bottom cut-off */
  background: #fff;           /* looks clean behind transparent edges */
  border-radius: 22px;        /* rounder */
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.14);
  transition: transform .28s ease, box-shadow .28s ease;
  padding: 10px;              /* breathing room so it never touches edges */
}
.rf-heroImages img:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 78px rgba(0,0,0,0.18);
}

/* Small white buffer between hero images row and next black section */
.rf-heroImages{
  margin-bottom: 26px; /* adjust 18–34px to taste */
}

/* ------------------------------
   VIDEO + FEATURES (pure black)
------------------------------ */
.rf-darkSection{
  background: #000 !important;
  color: #f4f6f7;
  padding: clamp(64px, 8vw, 110px) 0; /* tighter */
  position: relative;
  overflow: hidden;
}

/* ensure no glow from earlier CSS */
.rf-darkSection::before{ content: none !important; }

.rf-darkInner{
  width: min(var(--container), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
  text-align: center;
}

.rf-darkTitle{
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 950;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #fff;
}

/* This line = green */
.rf-darkSubline{
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  margin: 0 0 40px;
  color: #18B19C;
}

/* Video card */
.rf-videoCard{
  max-width: 980px;
  margin: 0 auto 50px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 120px rgba(0,0,0,0.80);
}
.rf-videoCard iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

/* ------------------------------
   FEATURES GRID + BRIGHT ROUND BADGES
------------------------------ */
.rf-featuresGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
  margin: 0 auto 54px;
  max-width: 1120px;
}

.rf-feature{
  border-radius: 26px;
  padding: 26px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 95px rgba(0,0,0,0.72);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* subtle cool sheen (very light) */
.rf-feature::before{
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}

.rf-feature:hover{
  transform: translateY(-8px);
  border-color: rgba(140,228,216,0.28);
  box-shadow: 0 34px 120px rgba(0,0,0,0.80);
}

.rf-featureTop{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Round, BRIGHT, LIGHT gradient badges */
.rf-badge{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #BFF6EE 0%, #18B19C 100%);
  color: #06211d;
  font-weight: 1000;
  font-size: 20px;

  box-shadow:
    0 0 0 8px rgba(24,177,156,0.14),
    0 20px 70px rgba(0,0,0,0.70);
  border: 1px solid rgba(255,255,255,0.18);
}

.rf-feature h3{
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.rf-feature p{
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-weight: 350;
  line-height: 1.65;
  font-size: 15px;
}

/* ------------------------------
   CTA BAND (black section; subtle, clean)
------------------------------ */
.rf-ctaBand{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  box-shadow: 0 34px 130px rgba(0,0,0,0.82);
}

.rf-ctaInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.rf-ctaLeft h3{
  font-size: 28px;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.rf-mini{
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin: 0;
}

/* Make the CTA button match the green gradient even in dark section */
.rf-darkSection .rf-btnPrimary{
  color: #06211d !important;
  background: linear-gradient(135deg, #18B19C 0%, #8CE4D8 100%) !important;
  box-shadow: 0 20px 70px rgba(24,177,156,0.26);
}

/* ------------------------------
   MOBILE
------------------------------ */
@media (max-width: 980px){
  .rf-heroImages{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rf-heroImages img{
    height: auto;          /* let image decide height on mobile */
    object-fit: contain;
    padding: 10px;
  }
  .rf-ctaInner{
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   FIXES ONLY (paste UNDER your section CSS)
   1) Make "Get Your Reel Free Today ↗" a BRIGHT GREEN button
   2) Remove the white “border” look on hero images (no padding/bg)
   3) Remove glow around the 2 proof badges
============================================================ */

/* 1) CTA button in dark section = bright green (solid) */
.rf-darkSection .rf-ctaBand .rf-btnPrimary{
  background: #18B19C !important;
  color: #06211d !important;
  border: 0 !important;
  box-shadow: 0 18px 60px rgba(24,177,156,0.28) !important;
}
.rf-darkSection .rf-ctaBand .rf-btnPrimary:hover{
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 24px 78px rgba(24,177,156,0.34) !important;
}

/* 2) Hero images: remove white border look (no padding / no background) */
.rf-heroImages img{
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 22px;       /* keep rounded edges */
  object-fit: cover !important; /* fill the tile */
  height: 320px;             /* keep consistent row height */
}

/* 3) Proof badges: remove glow ring */
.rf-proofBadge{
  box-shadow: 0 14px 38px rgba(0,0,0,0.10) !important; /* no outer glow */
}
.rf-dot{
  box-shadow: none !important; /* remove dot glow */
}

.rf-what-section {
  background: var(--white);
  padding: clamp(60px, 12vw, 120px) 0;
  border-top: 1px solid rgba(140,228,216,0.14);
}

.rf-centered-block {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.rf-what-content {
  margin-top: 28px;
}

.rf-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.rf-tag {
  background: linear-gradient(135deg, rgba(140,228,216,0.16), rgba(24,177,156,0.10));
  color: var(--oxygen);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(24,177,156,0.20);
  transition: all 0.28s ease;
}

.rf-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(24,177,156,0.20);
}

@media (max-width: 768px) {
  .rf-what-section {
    padding: 60px 0;
  }
  
  .rf-centered-block {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
  
  .rf-h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
  
  .rf-lead {
    font-size: 16.5px;
  }
}

@media (max-width: 480px) {
  .rf-benefit-tags {
    gap: 10px;
  }
  
  .rf-tag {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Fix: Clean rounded bright green CTA button */
.rf-ctaBand .rf-btnPrimary{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #18B19C !important;
  color: #06211d !important;

  padding: 14px 22px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;

  text-decoration: none !important;  /* removes underline */
  border: none !important;

  box-shadow: 0 16px 50px rgba(24,177,156,0.30);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* Hover */
.rf-ctaBand .rf-btnPrimary:hover{
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(24,177,156,0.38);
  filter: brightness(1.05);
}

/* Active */
.rf-ctaBand .rf-btnPrimary:active{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(24,177,156,0.28);
}

/* ============================================================
   REEL FREE — CLEAN PREMIUM SEO SECTIONS (COPY/PASTE)
   Styles ONLY your sections below:
   - .rf-section base + spacing
   - Demo Video split: .rf-video-section, .rf-split-layout, .rf-video-card, etc.
   - "What is it": .rf-what-section + tags
   - Gradient block: .rf-gradientBlock + specs + rating card
   - Benefits grid: .rf-grid2 + bullet cards
   - Compatibility: .rf-compat + mini cards
   - Trust marquee: .rf-marquee
   - Center CTAs
   - FAQ accordion: .rf-faq + details/summary

   Brand colors:
   - Primary teal: #18B19C
   - Mint accent:  #8CE4D8

   IMPORTANT:
   You have duplicate #video sections in your HTML.
   Keep only ONE <section id="video"> on the page or IDs will conflict.
============================================================ */

/* ---------- Brand tokens (safe defaults) ---------- */
:root{
  --rf-teal: #18B19C;
  --rf-mint: #8CE4D8;
  --rf-ink: #0B1111;
  --rf-ink-2: rgba(11,17,17,0.72);

  --rf-black: #000;
  --rf-black-2: #060708;

  --rf-white: #fff;
  --rf-line: rgba(255,255,255,0.12);
  --rf-line-dark: rgba(0,0,0,0.10);

  --rf-radius-lg: 22px;
  --rf-radius-xl: 28px;

  --rf-shadow-soft: 0 18px 60px rgba(0,0,0,0.14);
  --rf-shadow-dark: 0 30px 120px rgba(0,0,0,0.72);

  --rf-track-tight: -0.02em;
}

/* ---------- Base section rhythm ---------- */
.rf-section{
  padding: clamp(62px, 7.2vw, 110px) 0;
  position: relative;
}

.rf-container{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 640px){
  .rf-container{ width: min(1180px, calc(100% - 28px)); }
}

/* ---------- Type helpers ---------- */
.rf-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.rf-kicker.accent{
  color: rgba(255,255,255,0.78);
}
.rf-kicker.accent::before{
  content:"";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rf-teal), var(--rf-mint));
  opacity: 0.95;
}

.rf-h2{
  margin: 12px 0 12px;
  font-weight: 950;
  letter-spacing: var(--rf-track-tight);
  line-height: 1.08;
  font-size: clamp(30px, 3.4vw, 52px);
}

.rf-lead, .rf-p{
  margin: 0;
  line-height: 1.75;
  font-weight: 350;
  font-size: clamp(15px, 1.05vw, 17px);
  letter-spacing: -0.01em;
}

/* highlight spans */
.highlight-teal, .highlight-mint{
  background: linear-gradient(135deg, var(--rf-teal), var(--rf-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons (unified + bulletproof) ---------- */
.rf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 999px;

  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none !important;

  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;

  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease, border-color .22s ease, background .22s ease;
}

.rf-btn-primary,
.rf-btnPrimary{
  background: linear-gradient(135deg, var(--rf-teal), var(--rf-mint)) !important;
  color: #06211d !important;
  border: 0 !important;
  box-shadow: 0 18px 60px rgba(24,177,156,0.28);
}

.rf-btn-primary:hover,
.rf-btnPrimary:hover{
  transform: translateY(-3px);
  filter: brightness(1.03) saturate(1.02);
  box-shadow: 0 26px 78px rgba(24,177,156,0.34);
}

.rf-btn-outline,
.rf-btnGhost{
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: 0 16px 60px rgba(0,0,0,0.55);
}

.rf-btn-outline:hover,
.rf-btnGhost:hover{
  transform: translateY(-3px);
  border-color: rgba(140,228,216,0.32) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* optional pulse (subtle + premium) */
.pulse-glow{
  position: relative;
}
.pulse-glow::after{
  content:"";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24,177,156,0.22), transparent 60%);
  opacity: 0.0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.pulse-glow:hover::after{ opacity: 1; }

/* ---------- Reveal helpers (works with your JS) ---------- */
.reveal{ opacity: 1; transform: none; } /* default safe */
.reveal-parent .reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-parent .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   1) DEMO VIDEO SECTION — pure black, clean accents
============================================================ */
.rf-video-section{
  background: var(--rf-black);
  color: #f5f7f8;
}
.rf-video-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* Only COOL sheen, no neon glow */
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(140,228,216,0.06), transparent 60%);
  opacity: 0.75;
}

.rf-split-layout{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left block */
.rf-split-left{
  border-radius: var(--rf-radius-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(20px, 2.6vw, 34px);
  box-shadow: var(--rf-shadow-dark);
}

.rf-split-left .rf-h2{
  color: #fff;
  margin-top: 14px;
}

.rf-split-left .rf-lead{
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
}

.rf-cta-group{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Right video card */
.rf-split-right{ width: 100%; }

.rf-video-card{
  border-radius: var(--rf-radius-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--rf-shadow-dark);
  overflow: hidden;
}

.rf-video-wrapper{
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.rf-video-wrapper iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.rf-video-caption{
  margin: 0;
  padding: 14px 16px 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 450;
}

/* Responsive */
@media (max-width: 980px){
  .rf-split-layout{
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CENTER THE "WHY RETRACTABLE TUBING REEL IS ESSENTIAL" SECTION
   + CENTER YOUTUBE SHORTS VIDEO
   Target section: #video-split
============================================================ */

/* Center entire layout and remove split columns */
#video-split .rf-split-layout{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 24px;
}

/* Center the text card */
#video-split .rf-split-left{
  max-width: 820px;
  width: 100%;
  text-align: center !important;
  margin: 0 auto;
}

/* Center kicker badge */
#video-split .rf-kicker{
  justify-content: center !important;
}

/* Center headline */
#video-split .rf-h2{
  text-align: center !important;
}

/* Center paragraph */
#video-split .rf-lead{
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* Center buttons */
#video-split .rf-cta-group{
  justify-content: center !important;
}

/* Center video container */
#video-split .rf-split-right{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}

/* Proper Shorts sizing (vertical video) */
#video-split .rf-video-card,
#video-split iframe{
  max-width: 420px;
  width: 100%;
  aspect-ratio: 9 / 16; /* correct for Shorts */
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
}

/* Remove any extra empty spacing */
#video-split{
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* ============================================================
   CENTER THE SHORT DEMO SECTION (the later rf-video one)
   Keeps it in place, but centers text, buttons, and the iframe
============================================================ */

#short-demo .rf-container.rf-split{
  display: grid;
  grid-template-columns: 1fr;   /* single centered column */
  justify-items: center;
  text-align: center;
  gap: 14px;                    /* tighter spacing */
}

#short-demo .rf-splitLeft,
#short-demo .rf-splitRight{
  width: 100%;
  max-width: 920px;             /* nice centered width */
}

/* Center the buttons */
#short-demo .rf-splitLeft{
  display: grid;
  justify-items: center;
}
#short-demo .rf-splitLeft .rf-btn{
  margin: 0;
}

/* Make sure video is centered and clean */
#short-demo .rf-videoFrame{
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
}
#short-demo .rf-videoFrame iframe{
  width: 100%;
  border: 0;
  display: block;
  aspect-ratio: 9 / 16; /* Shorts-style */
  max-height: 720px;
}

/* Mobile sizing */
@media (max-width: 640px){
  #short-demo .rf-videoFrame iframe{
    max-height: none;
  }
}
/* ============================================================
   2) WHAT IS IT — clean white section with tags
============================================================ */
.rf-what-section{
  background: #fff;
  color: var(--rf-ink);
}

.rf-centered-block{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.rf-what-section .rf-kicker{
  color: rgba(0,0,0,0.55);
}
.rf-what-section .rf-kicker.accent::before{
  background: linear-gradient(90deg, var(--rf-teal), var(--rf-mint));
}

.rf-what-section .rf-h2{
  color: #0a0a0a;
}

.rf-what-section .rf-lead{
  color: rgba(0,0,0,0.70);
  max-width: 75ch;
  margin: 10px auto 0;
}

.rf-benefit-tags{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.rf-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(24,177,156,0.16), rgba(140,228,216,0.14));
  border: 1px solid rgba(24,177,156,0.28);
  color: rgba(0,0,0,0.78);
  font-weight: 850;
  font-size: 14px;
}

/* ============================================================
   CENTER THE SHORT DEMO SECTION (the later rf-video one)
   Keeps it in place, but centers text, buttons, and the iframe
============================================================ */

#short-demo .rf-container.rf-split{
  display: grid;
  grid-template-columns: 1fr;   /* single centered column */
  justify-items: center;
  text-align: center;
  gap: 14px;                    /* tighter spacing */
}

#short-demo .rf-splitLeft,
#short-demo .rf-splitRight{
  width: 100%;
  max-width: 920px;             /* nice centered width */
}

/* Center the buttons */
#short-demo .rf-splitLeft{
  display: grid;
  justify-items: center;
}
#short-demo .rf-splitLeft .rf-btn{
  margin: 0;
}

/* Make sure video is centered and clean */
#short-demo .rf-videoFrame{
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
}
#short-demo .rf-videoFrame iframe{
  width: 100%;
  border: 0;
  display: block;
  aspect-ratio: 9 / 16; /* Shorts-style */
  max-height: 720px;
}

/* Mobile sizing */
@media (max-width: 640px){
  #short-demo .rf-videoFrame iframe{
    max-height: none;
  }
}
/* ============================================================
   3) GRADIENT BLOCK — "Why Reel Free" with specs + rating
============================================================ */
.rf-gradientBlock{
  background: #060708;
  color: #f5f7f8;
}

.rf-gradientBlock::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 28%, rgba(24,177,156,0.16), transparent 60%),
    radial-gradient(circle at 85% 18%, rgba(140,228,216,0.10), transparent 60%);
  opacity: 0.85;
}

.rf-gradientInner{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(16px, 3vw, 30px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.rf-gradientInner .rf-kicker{
  color: rgba(255,255,255,0.75);
}
.rf-gradientInner .rf-h2{
  color: #fff;
}
.rf-gradientInner .rf-p{
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
}

/* Specs */
.rf-specs{
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rf-spec{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 4px;
}

.rf-specLabel{
  font-weight: 950;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(140,228,216,0.92);
}
.rf-specValue{
  color: rgba(255,255,255,0.88);
  font-weight: 650;
}

/* Rating card */
.rf-ratingCard{
  border-radius: var(--rf-radius-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--rf-shadow-dark);
  padding: 18px;
  position: sticky;
  top: 84px;
}

.rf-ratingTop{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rf-bigStar{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rf-teal), var(--rf-mint));
  color: #06211d;
  font-weight: 1000;
  box-shadow: 0 18px 70px rgba(24,177,156,0.26);
}

.rf-ratingNum{
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: var(--rf-track-tight);
  color: #fff;
  line-height: 1.0;
}
.rf-ratingMeta{
  color: rgba(255,255,255,0.74);
  font-weight: 600;
  font-size: 14px;
}

.rf-barList{ display: grid; gap: 10px; margin: 12px 0 16px; }

.rf-barRow{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.70);
  font-weight: 700;
  font-size: 13px;
}

.rf-bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
.rf-bar i{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rf-teal), var(--rf-mint));
}

.rf-btnFull{ width: 100%; }

/* Responsive */
@media (max-width: 980px){
  .rf-gradientInner{
    grid-template-columns: 1fr;
  }
  .rf-ratingCard{
    position: relative;
    top: auto;
  }
}

/* ============================================================
   4) BENEFITS GRID — clean cards
============================================================ */
.rf-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.3vw, 22px);
  margin-top: 18px;
}

.rf-bulletCard{
  border-radius: var(--rf-radius-lg);
  padding: 18px 18px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--rf-shadow-soft);
}

.rf-h3{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: var(--rf-track-tight);
  font-size: 18px;
  color: #0a0a0a;
}

.rf-bulletCard .rf-p{
  color: rgba(0,0,0,0.72);
}

@media (max-width: 900px){
  .rf-grid2{ grid-template-columns: 1fr; }
}

/* ============================================================
   5) COMPATIBILITY — split + mini cards
============================================================ */
.rf-compat{
  background: #fff;
}

.rf-compat .rf-split{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.rf-callout{
  margin-top: 16px;
  border-radius: var(--rf-radius-lg);
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(24,177,156,0.12), rgba(140,228,216,0.10));
  border: 1px solid rgba(24,177,156,0.22);
  color: rgba(0,0,0,0.74);
  display: grid;
  gap: 6px;
}

.rf-compatGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rf-miniCard{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 850;
  color: rgba(0,0,0,0.74);
}

@media (max-width: 980px){
  .rf-compat .rf-split{ grid-template-columns: 1fr; }
}

/* ============================================================
   6) TRUST MARQUEE — smooth pills
============================================================ */
.rf-marquee{
  margin-top: 20px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

.rf-marqueeTrack{
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  width: max-content;
  animation: rf-marquee 28s linear infinite;
}

.rf-pill{
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24,177,156,0.14), rgba(140,228,216,0.12));
  border: 1px solid rgba(24,177,156,0.20);
  color: rgba(0,0,0,0.78);
  font-weight: 850;
  font-size: 14px;
}

@keyframes rf-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .rf-marqueeTrack{ animation: none; }
}

/* ============================================================
   7) CENTER CTAs
============================================================ */
.rf-centerCtas{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ============================================================
   8) FAQ — premium accordion
============================================================ */
.rf-faq{
  background: #fff;
}

.rf-accordion{
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.rf-q{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  box-shadow: 0 14px 44px rgba(0,0,0,0.08);
  overflow: hidden;
}

.rf-q summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-weight: 900;
  letter-spacing: var(--rf-track-tight);
  color: #0a0a0a;
}
.rf-q summary::-webkit-details-marker{ display:none; }

.rf-q summary::after{
  content:"⌄";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24,177,156,0.16), rgba(140,228,216,0.12));
  border: 1px solid rgba(24,177,156,0.24);
  color: rgba(0,0,0,0.70);
  flex: 0 0 auto;
  transition: transform .18s ease;
}

.rf-q[open] summary::after{ transform: rotate(180deg); }

.rf-a{
  padding: 0 16px 16px;
  color: rgba(0,0,0,0.72);
  font-weight: 350;
  line-height: 1.75;
}

/* bottom link CTA */
.rf-bottomLink{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Make bottom CTA look great on white */
.rf-bottomLink .rf-btnPrimary{
  padding: 14px 20px;
}

/* ---------- Mobile polish ---------- */
@media (max-width: 640px){
  .rf-section{ padding: 54px 0; }
  .rf-split-left{ padding: 18px; }
  .rf-video-caption{ font-size: 13px; }
}

/* ============================================================
   QUICK FIXES (paste UNDER the big section CSS)
   1) Make "Jump to FAQ" + "Back to top" text BLACK (on white sections)
   2) Compress CTA/action spacing
============================================================ */

/* 1) Force black text for ghost/outline buttons when on LIGHT sections */
.rf-what-section .rf-btn-outline,
.rf-what-section .rf-btnGhost,
.rf-compat .rf-btn-outline,
.rf-compat .rf-btnGhost,
.rf-section:not(.rf-video-section):not(.rf-gradientBlock) .rf-btnGhost,
.rf-section:not(.rf-video-section):not(.rf-gradientBlock) .rf-btn-outline{
  color: #0a0a0a !important;
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.14) !important;
  box-shadow: 0 12px 38px rgba(0,0,0,0.10) !important;
}

.rf-section:not(.rf-video-section):not(.rf-gradientBlock) .rf-btnGhost:hover,
.rf-section:not(.rf-video-section):not(.rf-gradientBlock) .rf-btn-outline:hover{
  background: rgba(0,0,0,0.06) !important;
  border-color: rgba(0,0,0,0.18) !important;
}

/* 2) Compress action spacing (CTAs + centered CTAs) */
.rf-cta-group,
.rf-centerCtas{
  gap: 8px !important;
  margin-top: 12px !important;
}

.rf-cta-group .rf-btn,
.rf-centerCtas .rf-btn{
  padding: 12px 16px !important; /* slightly tighter */
  font-size: 15px !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; }
  }
  