/* 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 AI SEO PAGE CSS
   Brand colors:
   Carbon: #0F0F0F
   Oxygen: #18B19C
   Mint:   #8CE4D8
   Light:  #E3E0E0
   Gray:   #414141
   White:  #FFFFFF
========================================= */

/* =========================================================
   Reel Free AI SEO Landing Page Styles
   Page: Best Retractable Oxygen Tubing Reel Options (2026 Guide)
   Design system based on:
   - Poppins ExtraBold / SemiBold / Light / Black Italic
   - Clean, modern, premium
   - Alternating white / black sections
   - Teal / carbon / slate / oxygen palette
   ========================================================= */

/* =========================
   FONT + ROOT TOKENS
========================= */
:root {
  --rf-teal: #18B19C;
  --rf-teal-light: #8CE4D8;
  --rf-oxygen: #E3E0E0;
  --rf-carbon: #0F0F0F;
  --rf-slate: #414141;
  --rf-white: #FFFFFF;
  --rf-ink: #151515;
  --rf-muted: #6B7280;
  --rf-border-light: rgba(15, 15, 15, 0.08);
  --rf-border-dark: rgba(255, 255, 255, 0.10);
  --rf-shadow-soft: 0 12px 40px rgba(16, 24, 40, 0.08);
  --rf-shadow-card: 0 18px 50px rgba(0, 0, 0, 0.10);
  --rf-shadow-dark: 0 22px 60px rgba(0, 0, 0, 0.28);
  --rf-radius-sm: 14px;
  --rf-radius-md: 22px;
  --rf-radius-lg: 30px;
  --rf-radius-xl: 40px;
  --rf-max: 1280px;
  --rf-max-narrow: 900px;
  --rf-track-tight: -0.02em;
  --rf-track-loose: 0.04em;
  --rf-section-pad: clamp(68px, 8vw, 120px);
  --rf-transition: 280ms cubic-bezier(.22,1,.36,1);
  --rf-transition-slow: 700ms cubic-bezier(.22,1,.36,1);
  --rf-gradient-main: linear-gradient(135deg, #18B19C 0%, #8CE4D8 45%, #E3E0E0 100%);
  --rf-gradient-dark: linear-gradient(135deg, rgba(24,177,156,0.22), rgba(140,228,216,0.06));
  --rf-gradient-accent: linear-gradient(135deg, #8CE4D8 0%, #18B19C 55%, #0F0F0F 140%);
}

/* =========================
   GLOBAL RESET / BASE
========================= */
.best-options-page,
.best-options-page * {
  box-sizing: border-box;
}

.best-options-page {
  position: relative;
  overflow: clip;
  color: var(--rf-ink);
  background: var(--rf-white);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.best-options-page img,
.best-options-page iframe {
  max-width: 100%;
  display: block;
}

.best-options-page a {
  color: inherit;
  text-decoration: none;
}

.best-options-page p,
.best-options-page li {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: var(--rf-track-tight);
  line-height: 1.75;
  font-size: clamp(1rem, 1.12vw, 1.09rem);
  color: inherit;
}

.best-options-page h1,
.best-options-page h2,
.best-options-page h3,
.best-options-page h4 {
  margin: 0;
  letter-spacing: var(--rf-track-tight);
  line-height: 1.02;
  color: inherit;
}

.best-options-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.best-options-page section {
  position: relative;
  isolation: isolate;
  padding: var(--rf-section-pad) 0;
}

.best-options-page section:nth-of-type(odd):not(.page-hero) {
  background:
    radial-gradient(circle at top right, rgba(140,228,216,0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  color: var(--rf-ink);
}

.best-options-page section:nth-of-type(even):not(.page-hero) {
  background:
    radial-gradient(circle at top left, rgba(24,177,156,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(140,228,216,0.10), transparent 34%),
    linear-gradient(180deg, #0D0D0D 0%, #171717 100%);
  color: var(--rf-white);
}

.best-options-page section:nth-of-type(even):not(.page-hero) p,
.best-options-page section:nth-of-type(even):not(.page-hero) li,
.best-options-page section:nth-of-type(even):not(.page-hero) .section-intro,
.best-options-page section:nth-of-type(even):not(.page-hero) .hero-support {
  color: rgba(255,255,255,0.82);
}

.best-options-page .container {
  width: min(calc(100% - 32px), var(--rf-max));
  margin: 0 auto;
}

.best-options-page .container.narrow {
  width: min(calc(100% - 32px), var(--rf-max-narrow));
}

/* =========================
   TYPOGRAPHY
========================= */
.best-options-page .eyebrow,
.best-options-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: var(--rf-track-loose);
  text-transform: uppercase;
  color: var(--rf-slate);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24,177,156,0.10);
  border: 1px solid rgba(24,177,156,0.16);
  backdrop-filter: blur(8px);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .section-kicker,
.best-options-page section:nth-of-type(even):not(.page-hero) .eyebrow {
  color: var(--rf-teal-light);
  background: rgba(140,228,216,0.08);
  border-color: rgba(140,228,216,0.14);
}

.best-options-page .hero-title {
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.best-options-page .hero-title .title-line {
  display: block;
}

.best-options-page h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.9vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.best-options-page h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.best-options-page .hero-lead,
.best-options-page .direct-answer {
  font-weight: 500;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.75;
  color: rgba(15,15,15,0.85);
}

.best-options-page .section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.best-options-page .section-heading.center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.best-options-page .section-intro {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.03rem;
}

.best-options-page .gradient-text {
  background: var(--rf-gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.best-options-page .accent-text {
  color: var(--rf-teal);
}

.best-options-page .muted-year {
  color: var(--rf-muted);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .muted-year {
  color: rgba(255,255,255,0.54);
}

.best-options-page .signature-statement {
  font-weight: 500;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.8;
  padding: 18px 20px;
  border-left: 4px solid var(--rf-teal);
  background: rgba(24,177,156,0.07);
  border-radius: 0 18px 18px 0;
}

/* =========================
   BUTTONS
========================= */
.best-options-page .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  transition:
    transform var(--rf-transition),
    box-shadow var(--rf-transition),
    border-color var(--rf-transition),
    background var(--rf-transition),
    color var(--rf-transition);
  will-change: transform;
}

.best-options-page .btn:hover {
  transform: translateY(-2px);
}

.best-options-page .btn-primary {
  color: var(--rf-white);
  background: linear-gradient(135deg, #18B19C 0%, #0F8F7D 100%);
  box-shadow: 0 14px 30px rgba(24,177,156,0.30);
}

.best-options-page .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(24,177,156,0.40);
}

.best-options-page .btn-secondary {
  color: inherit;
  border-color: rgba(24,177,156,0.22);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(12px);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .btn-secondary {
  color: var(--rf-white);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.best-options-page .magnetic-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255,255,255,0.18), rgba(255,255,255,0.0));
  transform: translateX(-130%);
  transition: transform 800ms ease;
}

.best-options-page .magnetic-btn:hover::before {
  transform: translateX(130%);
}

/* =========================
   CARDS / SURFACES
========================= */
.best-options-page .glass-card,
.best-options-page .content-card,
.best-options-page .info-card,
.best-options-page .mini-card,
.best-options-page .cta-card,
.best-options-page .comparison-table-wrap,
.best-options-page .brand-strip,
.best-options-page .faq-item {
  position: relative;
  border-radius: var(--rf-radius-lg);
  transition:
    transform var(--rf-transition),
    box-shadow var(--rf-transition),
    border-color var(--rf-transition);
}

.best-options-page .glass-card,
.best-options-page .content-card,
.best-options-page .comparison-table-wrap,
.best-options-page .cta-card,
.best-options-page .brand-strip {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.50);
  box-shadow: var(--rf-shadow-soft);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .glass-card,
.best-options-page section:nth-of-type(even):not(.page-hero) .content-card,
.best-options-page section:nth-of-type(even):not(.page-hero) .comparison-table-wrap,
.best-options-page section:nth-of-type(even):not(.page-hero) .cta-card,
.best-options-page section:nth-of-type(even):not(.page-hero) .brand-strip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--rf-shadow-dark);
}

.best-options-page .content-card,
.best-options-page .cta-card,
.best-options-page .brand-strip {
  padding: clamp(26px, 3vw, 40px);
}

.best-options-page .content-card-emphasis::after,
.best-options-page .cta-card::after,
.best-options-page .brand-strip::after,
.best-options-page .comparison-table-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(24,177,156,0.30), rgba(255,255,255,0.08), rgba(140,228,216,0.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* =========================
   IMAGE CARDS
========================= */
.best-options-page .image-card {
  overflow: hidden;
  border-radius: var(--rf-radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,255,255,0.42)),
    #dfe5e7;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--rf-shadow-card);
  transform: translateZ(0);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .image-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--rf-shadow-dark);
}

.best-options-page .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.best-options-page .image-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.02);
}

.best-options-page .floating-card {
  animation: rfFloat 6s ease-in-out infinite;
}

.best-options-page .tilt-card:hover {
  transform: perspective(1200px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
}

/* =========================
   HERO
========================= */
.best-options-page .page-hero {
  padding-top: clamp(78px, 9vw, 130px);
  padding-bottom: clamp(78px, 8vw, 110px);
  color: var(--rf-white);
  background:
    radial-gradient(circle at 10% 20%, rgba(140,228,216,0.20), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(24,177,156,0.22), transparent 24%),
    linear-gradient(180deg, #080808 0%, #101010 60%, #121212 100%);
}

.best-options-page .page-hero p {
  color: rgba(255,255,255,0.84);
}

.best-options-page .hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.85;
  pointer-events: none;
}

.best-options-page .hero-bg-orb-1 {
  top: 90px;
  right: min(8vw, 100px);
  width: clamp(180px, 24vw, 340px);
  height: clamp(180px, 24vw, 340px);
  background: radial-gradient(circle, rgba(24,177,156,0.42), rgba(24,177,156,0.0) 70%);
  animation: rfPulse 7s ease-in-out infinite;
}

.best-options-page .hero-bg-orb-2 {
  bottom: 30px;
  left: -40px;
  width: clamp(180px, 26vw, 420px);
  height: clamp(180px, 26vw, 420px);
  background: radial-gradient(circle, rgba(140,228,216,0.28), rgba(140,228,216,0) 70%);
  animation: rfPulse 9s ease-in-out infinite reverse;
}

.best-options-page .hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
  opacity: 0.42;
  pointer-events: none;
}

.best-options-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.best-options-page .hero-content {
  display: grid;
  gap: 24px;
}

.best-options-page .hero-support {
  max-width: 740px;
}

.best-options-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.best-options-page .hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 8px;
}

.best-options-page .hero-highlights li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.86);
}

.best-options-page .hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--rf-gradient-main);
  box-shadow: 0 0 0 5px rgba(24,177,156,0.12);
}

.best-options-page .hero-media {
  position: relative;
}

.best-options-page .image-card-featured {
  aspect-ratio: 0.95 / 1.02;
  min-height: 560px;
}

/* =========================
   BRAND STRIP
========================= */
.best-options-page .brand-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 34px;
  align-items: center;
}

.best-options-page .brand-strip-copy {
  display: grid;
  gap: 14px;
}

.best-options-page .brand-strip-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.best-options-page .brand-logo-slot {
  min-height: 92px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(24,177,156,0.06);
  border: 1px solid rgba(24,177,156,0.14);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .brand-logo-slot,
.best-options-page .brand-strip-section .brand-logo-slot {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.best-options-page .brand-logo-slot img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.best-options-page .brand-logo-slot-wide {
  grid-column: span 2;
}

.best-options-page .brand-logo-slot-outline span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: var(--rf-track-tight);
  color: inherit;
  opacity: 0.82;
}

/* =========================
   GRIDS / LAYOUTS
========================= */
.best-options-page .split-grid,
.best-options-page .two-column-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.best-options-page .split-grid.reverse .split-media {
  order: 2;
}

.best-options-page .split-grid.reverse .split-content {
  order: 1;
}

.best-options-page .split-content {
  display: grid;
  gap: 18px;
}

.best-options-page .cards-grid {
  display: grid;
  gap: 20px;
}

.best-options-page .cards-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.best-options-page .cards-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================
   MINI CARDS / INFO CARDS
========================= */
.best-options-page .info-card,
.best-options-page .mini-card,
.best-options-page .faq-item {
  overflow: hidden;
  padding: 24px 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--rf-shadow-soft);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .info-card,
.best-options-page section:nth-of-type(even):not(.page-hero) .mini-card,
.best-options-page section:nth-of-type(even):not(.page-hero) .faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: var(--rf-shadow-dark);
}

.best-options-page .info-card:hover,
.best-options-page .mini-card:hover,
.best-options-page .faq-item:hover {
  transform: translateY(-4px);
}

.best-options-page .info-card::before,
.best-options-page .mini-card::before,
.best-options-page .faq-item::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--rf-gradient-main);
  opacity: 0.9;
}

.best-options-page .card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24,177,156,0.16), rgba(140,228,216,0.22));
  color: var(--rf-teal);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
}

.best-options-page .info-card-featured {
  background:
    linear-gradient(180deg, rgba(24,177,156,0.08), rgba(255,255,255,0.84)),
    rgba(255,255,255,0.88);
  border-color: rgba(24,177,156,0.16);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .info-card-featured {
  background:
    linear-gradient(180deg, rgba(24,177,156,0.16), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.05);
  border-color: rgba(140,228,216,0.20);
}

.best-options-page .pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

/* =========================
   FEATURE LISTS
========================= */
.best-options-page .feature-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.best-options-page .feature-list li {
  position: relative;
  padding-left: 30px;
}

.best-options-page .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--rf-teal);
  box-shadow: 0 0 0 5px rgba(24,177,156,0.10);
}

.best-options-page .feature-list-check li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* =========================
   COMPARISON TABLE
========================= */
.best-options-page .comparison-table-wrap {
  padding: 16px;
  overflow: hidden;
}

.best-options-page .comparison-table {
  display: grid;
  gap: 12px;
}

.best-options-page .comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr 0.8fr;
  gap: 12px;
  align-items: stretch;
}

.best-options-page .comparison-cell {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15,15,15,0.07);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.best-options-page section:nth-of-type(even):not(.page-hero) .comparison-cell,
.best-options-page .comparison-section .comparison-cell {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

.best-options-page .comparison-head .comparison-cell {
  min-height: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rf-slate);
}

.best-options-page .comparison-row-featured .comparison-cell {
  background:
    linear-gradient(180deg, rgba(24,177,156,0.10), rgba(255,255,255,0.82)),
    rgba(255,255,255,0.82);
  border-color: rgba(24,177,156,0.18);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .comparison-row-featured .comparison-cell,
.best-options-page .comparison-section .comparison-row-featured .comparison-cell {
  background:
    linear-gradient(180deg, rgba(24,177,156,0.14), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.06);
  border-color: rgba(140,228,216,0.22);
}

.best-options-page .verdict {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.best-options-page .verdict-best {
  background: rgba(24,177,156,0.14);
  color: var(--rf-teal);
}

.best-options-page .verdict-mid {
  background: rgba(255,255,255,0.10);
  color: inherit;
}

.best-options-page .verdict-low {
  background: rgba(65,65,65,0.10);
  color: inherit;
}

/* =========================
   VIDEO
========================= */
.best-options-page .video-wrapper {
  overflow: hidden;
  padding: 12px;
  border-radius: 32px;
}

.best-options-page .video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
}

/* =========================
   GALLERY
========================= */
.best-options-page .gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.best-options-page .gallery-card {
  min-height: 280px;
}

.best-options-page .gallery-card-large {
  grid-row: span 2;
  min-height: 580px;
}

/* =========================
   FAQ
========================= */
.best-options-page .faq-list {
  display: grid;
  gap: 16px;
}

.best-options-page .faq-item {
  padding: 24px 24px 22px;
}

.best-options-page .faq-item h3 {
  margin-bottom: 12px;
}

/* =========================
   CTA
========================= */
.best-options-page .cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 30px;
  align-items: center;
}

.best-options-page .cta-copy {
  display: grid;
  gap: 14px;
}

.best-options-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.best-options-page .inline-cta-link {
  color: var(--rf-teal);
  font-weight: 600;
  word-break: break-word;
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.best-options-page .reveal-up,
.best-options-page .reveal-left,
.best-options-page .reveal-right,
.best-options-page .reveal-scale {
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22,1,.36,1);
}

.best-options-page .reveal-up { animation-name: rfRevealUp; }
.best-options-page .reveal-left { animation-name: rfRevealLeft; }
.best-options-page .reveal-right { animation-name: rfRevealRight; }
.best-options-page .reveal-scale { animation-name: rfRevealScale; }

.best-options-page .delay-1 { animation-delay: 0.12s; }
.best-options-page .delay-2 { animation-delay: 0.22s; }

/* =========================
   CUSTOM SECTION TWEAKS
========================= */
.best-options-page .quick-answer-section,
.best-options-page .comparison-section,
.best-options-page .video-section {
  overflow: hidden;
}

.best-options-page .content-block.emphasized {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(24,177,156,0.10), rgba(140,228,216,0.06));
  border: 1px solid rgba(24,177,156,0.14);
  box-shadow: var(--rf-shadow-soft);
}

.best-options-page section:nth-of-type(even):not(.page-hero) .content-block.emphasized {
  background: linear-gradient(135deg, rgba(24,177,156,0.14), rgba(255,255,255,0.04));
  border-color: rgba(140,228,216,0.16);
  box-shadow: var(--rf-shadow-dark);
}

.best-options-page .audience-card {
  min-height: 100%;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1140px) {
  .best-options-page .hero-grid,
  .best-options-page .split-grid,
  .best-options-page .brand-strip,
  .best-options-page .cta-card,
  .best-options-page .two-column-content {
    grid-template-columns: 1fr;
  }

  .best-options-page .brand-strip-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .best-options-page .cta-actions {
    justify-content: flex-start;
  }

  .best-options-page .image-card-featured {
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .best-options-page .cards-grid.three-up,
  .best-options-page .cards-grid.four-up,
  .best-options-page .pain-points-grid,
  .best-options-page .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .best-options-page .gallery-card-large {
    grid-row: span 1;
    min-height: 360px;
    grid-column: span 2;
  }

  .best-options-page .comparison-row {
    grid-template-columns: 1fr;
  }

  .best-options-page .comparison-head {
    display: none;
  }

  .best-options-page .comparison-cell {
    min-height: auto;
  }

  .best-options-page .comparison-row {
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .best-options-page .comparison-row .comparison-cell::before {
    content: "";
  }
}

@media (max-width: 760px) {
  .best-options-page section {
    padding: 64px 0;
  }

  .best-options-page .container,
  .best-options-page .container.narrow {
    width: min(calc(100% - 22px), var(--rf-max));
  }

  .best-options-page .hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .best-options-page h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .best-options-page .hero-actions,
  .best-options-page .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .best-options-page .hero-highlights {
    grid-template-columns: 1fr;
  }

  .best-options-page .cards-grid.three-up,
  .best-options-page .cards-grid.four-up,
  .best-options-page .pain-points-grid,
  .best-options-page .gallery-grid,
  .best-options-page .brand-strip-logos {
    grid-template-columns: 1fr;
  }

  .best-options-page .gallery-card-large {
    grid-column: auto;
    min-height: 280px;
  }

  .best-options-page .image-card-featured {
    min-height: 320px;
    aspect-ratio: 1 / 1;
  }

  .best-options-page .brand-logo-slot-wide {
    grid-column: auto;
  }

  .best-options-page .comparison-table-wrap {
    padding: 12px;
  }

  .best-options-page .comparison-row {
    gap: 10px;
  }

  .best-options-page .comparison-cell {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .best-options-page .section-kicker,
  .best-options-page .eyebrow {
    font-size: 0.77rem;
  }
}

/* =========================
   ACCESSIBILITY / MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .best-options-page *,
  .best-options-page *::before,
  .best-options-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   KEYFRAMES
========================= */
@keyframes rfRevealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rfRevealLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rfRevealRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rfRevealScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rfFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rfPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* 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; }
  }
  