/* 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
========================================= */

/* Optional font import if not already loaded */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;800;900&display=swap');

:root {
  --carbon: #0F0F0F;
  --oxygen: #18B19C;
  --mint: #8CE4D8;
  --light: #E3E0E0;
  --gray: #414141;
  --white: #FFFFFF;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(15, 15, 15, 0.1);
  --shadow-dark: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 40px rgba(24, 177, 156, 0.12);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.10);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --container: 1240px;
  --container-narrow: 860px;
  --tracking-tight: -0.02em;
  --tracking-body: -0.015em;
  --tracking-spec: 0.04em;
  --gradient-main: linear-gradient(135deg, var(--oxygen) 0%, var(--mint) 100%);
  --gradient-dark: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
  --gradient-divider: linear-gradient(90deg, rgba(24, 177, 156, 0) 0%, rgba(24, 177, 156, 1) 50%, rgba(140, 228, 216, 0) 100%);
  --gradient-glow: radial-gradient(circle at top left, rgba(140, 228, 216, 0.22), transparent 42%);
  --transition: 280ms cubic-bezier(.2,.8,.2,1);
}

/* =========================================
   RESET / BASE
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: var(--tracking-body);
  color: var(--carbon);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--oxygen);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #139682;
}

p,
li {
  font-size: 1.04rem;
  line-height: 1.85;
  margin-top: 0;
}

ul {
  padding-left: 1.2rem;
}

main.ai-landing-page {
  overflow: clip;
}

/* =========================================
   UTILITIES
========================================= */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container.narrow,
.narrow {
  width: min(100% - 2rem, var(--container-narrow));
  margin-inline: auto;
}

.center {
  text-align: center;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: var(--tracking-spec);
  text-transform: uppercase;
  color: var(--oxygen);
  position: relative;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-main);
  box-shadow: 0 0 14px rgba(24, 177, 156, 0.5);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

.section-intro,
.hero-lead,
.hero-support {
  max-width: 72ch;
}

.hero-lead {
  font-size: 1.16rem;
}

.hero-support,
.section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.content-card,
.info-card,
.cta-card,
.image-card,
.faq-item,
.content-block {
  border-radius: var(--radius-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
  will-change: transform;
}

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

.btn-primary {
  background: var(--gradient-main);
  color: var(--carbon);
  box-shadow: 0 14px 40px rgba(24, 177, 156, 0.30);
}

.btn-primary:hover {
  color: var(--carbon);
  box-shadow: 0 18px 50px rgba(24, 177, 156, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(140, 228, 216, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

/* =========================================
   OPTIONAL BRAND BAR FOR LOGO/FAVICON
   Add this HTML above hero if desired:
   <div class="site-brand-bar">
     <a href="/" class="brand-lockup">
       <img src="/images/logo.svg" class="brand-mark" alt="Reel Free logo">
       <span class="brand-name">Reel Free</span>
     </a>
     <img src="/favicon.png" class="brand-favicon-badge" alt="Reel Free favicon">
   </div>
========================================= */

.site-brand-bar {
  width: min(100% - 2rem, var(--container));
  margin: 1.25rem auto 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(15,15,15,0.07);
  box-shadow: 0 12px 35px rgba(15,15,15,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 12px;
  z-index: 40;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--carbon);
}

.brand-mark {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--carbon);
}

.brand-favicon-badge {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 0.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================================
   SECTION DEFAULTS
========================================= */

.ai-landing-page section {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.ai-landing-page section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(88%, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: var(--gradient-divider);
  opacity: 0.65;
}

.ai-landing-page section:last-child::after {
  display: none;
}

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

.page-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(140, 228, 216, 0.22), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(24, 177, 156, 0.18), transparent 24%),
    linear-gradient(180deg, #111111 0%, #0F0F0F 100%);
  color: var(--white);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.page-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.page-hero h1 .accent,
.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow: 0 0 18px rgba(140, 228, 216, 0.7);
  transform: translateY(-50%);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 30%;
  background: radial-gradient(circle, rgba(24,177,156,0.32), transparent 70%);
  filter: blur(26px);
  z-index: 0;
}

.large-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-dark);
  background: rgba(255,255,255,0.03);
}

.large-image img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
  transition: transform 700ms ease;
}

.large-image:hover img {
  transform: scale(1.035);
}

/* =========================================
   WHITE SECTION STYLE
========================================= */

.quick-answer,
.buy-options-section,
.how-it-works-section,
.why-reel-free-section,
.final-cta-section {
  background: var(--white);
  color: var(--carbon);
}

.quick-answer .section-intro,
.buy-options-section .section-intro,
.why-reel-free-section .section-intro,
.final-cta-section .section-intro {
  color: var(--gray);
}

/* =========================================
   DARK SECTION STYLE
========================================= */

.problem-section,
.video-section,
.image-highlight-section {
  background:
    radial-gradient(circle at top left, rgba(140, 228, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #111111 0%, #0F0F0F 100%);
  color: var(--white);
}

.problem-section p,
.video-section p,
.image-highlight-section p,
.problem-section li,
.video-section li,
.image-highlight-section li {
  color: rgba(255,255,255,0.82);
}

.problem-section h2,
.video-section h2,
.image-highlight-section h2 {
  color: var(--white);
}

/* =========================================
   SOFT TINT SECTION STYLE
========================================= */

.what-to-look-for-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(140,228,216,0.10) 0%, rgba(255,255,255,1) 36%, rgba(255,255,255,1) 100%);
}

/* =========================================
   GRID SYSTEMS
========================================= */

.hero-grid,
.split-grid,
.two-column-content,
.image-highlight-grid {
  align-items: center;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.split-grid.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.image-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}



/* =========================================
   CARDS / BLOCKS
========================================= */

.content-card,
.content-block,
.info-card,
.faq-item,
.cta-card {
  position: relative;
  overflow: hidden;
}

.content-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.content-card::before,
.info-card::before,
.faq-item::before,
.cta-card::before,
.content-block::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-main);
}

.info-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border-color: rgba(24, 177, 156, 0.22);
}

.info-card h3 {
  margin-bottom: 0.8rem;
}

.content-block {
  margin-top: 1.6rem;
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid rgba(15,15,15,0.08);
  background: linear-gradient(180deg, rgba(140,228,216,0.08), rgba(255,255,255,1));
  box-shadow: var(--shadow-soft);
}

.content-block.emphasized {
  background:
    radial-gradient(circle at top right, rgba(24,177,156,0.14), transparent 36%),
    linear-gradient(180deg, rgba(140,228,216,0.12), rgba(255,255,255,1));
}

/* =========================================
   IMAGES
========================================= */

.image-card {
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-dark);
}

.what-to-look-for-section .image-card,
.quick-answer .image-card,
.buy-options-section .image-card,
.why-reel-free-section .image-card {
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms ease, filter 700ms ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

/* Default split images */
.split-media .image-card img {
  aspect-ratio: 4 / 4.7;
}

/* Wider image only for this section */
.what-to-look-for-section .split-media .image-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  background: #fff;
}

.wide-image img {
  aspect-ratio: 16 / 10;
}
/* =========================================
   VIDEO
========================================= */

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-dark);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding: 0.75rem;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(24,177,156,0.12), transparent 46%);
  pointer-events: none;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  background: #000;
  position: relative;
  z-index: 2;
}

/* =========================================
   LISTS
========================================= */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.45rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gradient-main);
  box-shadow: 0 0 14px rgba(24,177,156,0.45);
}

/* =========================================
   FAQ
========================================= */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--shadow-card);
  padding: 1.3rem 1.35rem 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
  padding-right: 1rem;
}

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

.final-cta-section {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.cta-card {
  background:
    radial-gradient(circle at top right, rgba(140,228,216,0.20), transparent 35%),
    linear-gradient(135deg, #101010 0%, #161616 55%, #0f0f0f 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-dark);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-card p {
  color: rgba(255,255,255,0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

/* =========================================
   SPECIAL TEXT TREATMENTS
========================================= */

.spec-text,
.spec-label {
  font-weight: 900;
  font-style: italic;
  letter-spacing: var(--tracking-spec);
  text-transform: uppercase;
  color: var(--gray);
  font-size: 0.78rem;
}

.title-accent {
  color: var(--white);
}

.title-accent .accent {
  color: var(--mint);
}

.title-split .dark {
  color: var(--carbon);
}

.title-split .green {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .hero-content,
.page-hero .hero-media,
.section-heading,
.info-card,
.image-card,
.content-card,
.faq-item,
.cta-card {
  animation: fadeUp 0.8s ease both;
}

.page-hero .hero-media::before {
  animation: floatGlow 5s ease-in-out infinite;
}

/* stagger */
.info-card:nth-child(2),
.faq-item:nth-child(2) {
  animation-delay: 0.07s;
}

.info-card:nth-child(3),
.faq-item:nth-child(3) {
  animation-delay: 0.12s;
}

.info-card:nth-child(4),
.faq-item:nth-child(4) {
  animation-delay: 0.16s;
}

/* =========================================
   HOVER MICRO-DETAILS
========================================= */

.section-heading h2,
.hero-content h1 {
  position: relative;
}

.section-heading h2::after,
.hero-content h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 1rem;
  border-radius: 999px;
  background: var(--gradient-main);
  box-shadow: 0 0 18px rgba(24,177,156,0.24);
}

.section-heading.center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.problem-section .section-heading h2::after,
.video-section .section-heading h2::after,
.image-highlight-section .section-heading h2::after,
.cta-card h2::after {
  background: var(--gradient-main);
}

.cta-card h2::after {
  margin-left: 0;
  margin-right: 0;
}

.content-card:hover,
.content-block:hover {
  box-shadow: 0 18px 45px rgba(24,177,156,0.14);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .page-hero .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .two-column-content,
  .image-highlight-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .page-hero h1 {
    max-width: 100%;
  }

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

  .hero-media {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .narrow {
    width: min(100% - 1.2rem, var(--container));
  }

  .ai-landing-page section {
    padding: 3.5rem 0;
  }

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

  .btn {
    width: 100%;
  }

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

  .cards-grid.three-up,
  .cards-grid.four-up {
    grid-template-columns: 1fr;
  }

  .site-brand-bar {
    border-radius: 22px;
    top: 8px;
    padding: 0.75rem 0.9rem;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    height: 28px;
  }

  .brand-favicon-badge {
    width: 30px;
    height: 30px;
  }

  .content-card,
  .info-card,
  .faq-item,
  .content-block,
  .cta-card {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .video-wrapper {
    border-radius: 24px;
    padding: 0.5rem;
  }

  .video-wrapper iframe {
    border-radius: 16px;
  }

  p,
  li {
    font-size: 0.98rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  h3 {
    font-size: 1.08rem;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.74rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-support,
  .section-intro {
    font-size: 0.96rem;
  }

  .large-image img,
  .split-media .image-card img {
    aspect-ratio: 4 / 4.2;
  }
}

/* =========================================
   ACCESSIBILITY / MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: 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; }
  }
  