/* 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 LANDING PAGE
   Main Sections Only
   Brand: Poppins + Reel Free colors
   ========================= */

:root {
  --rf-teal: #18b19c;
  --rf-teal-light: #8ce4d8;
  --rf-black: #0f0f0f;
  --rf-slate: #414141;
  --rf-ice: #e3e0e0;
  --rf-white: #ffffff;

  --rf-text: #202020;
  --rf-text-soft: #5f5f5f;
  --rf-border: rgba(15, 15, 15, 0.08);
  --rf-shadow-sm: 0 10px 30px rgba(15, 15, 15, 0.06);
  --rf-shadow-md: 0 16px 50px rgba(15, 15, 15, 0.1);
  --rf-shadow-lg: 0 30px 80px rgba(15, 15, 15, 0.16);

  --rf-radius-sm: 14px;
  --rf-radius-md: 22px;
  --rf-radius-lg: 34px;
  --rf-radius-pill: 999px;

  --rf-container: 1280px;
  --rf-transition: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--rf-text);
  background: var(--rf-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.landing-page {
  overflow: clip;
}

/* =========================
   GLOBAL SECTION STYLES
   ========================= */

.hero-shell,
.benefits-shell,
.demo-shell,
.reviews-shell,
.final-cta-shell {
  width: min(calc(100% - 40px), var(--rf-container));
  margin: 0 auto;
}

.hero-section,
.benefits-section,
.demo-section,
.reviews-section,
.final-cta-section {
  position: relative;
  padding: 84px 0;
}

.section-eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 18px;
  border: 2px solid rgba(24, 177, 156, 0.9);
  border-radius: var(--rf-radius-pill);
  color: var(--rf-teal);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: rgba(140, 228, 216, 0.12);
  margin: 0 0 20px;
}

.section-title,
.hero-title {
  margin: 0;
  color: var(--rf-black);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-intro,
.hero-subtitle,
.demo-copy-text,
.review-text,
.benefits-item-text,
.benefits-framing p {
  color: var(--rf-text-soft);
  line-height: 1.75;
  font-size: 1.02rem;
  margin: 0;
}

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

.primary-cta-button,
.secondary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: var(--rf-radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  transition:
    transform var(--rf-transition),
    box-shadow var(--rf-transition),
    background var(--rf-transition),
    color var(--rf-transition),
    border-color var(--rf-transition);
  cursor: pointer;
}

.primary-cta-button {
  background: linear-gradient(135deg, var(--rf-black), #252525);
  color: var(--rf-white);
  box-shadow: var(--rf-shadow-sm);
}

.primary-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--rf-shadow-md);
  background: linear-gradient(135deg, var(--rf-teal), #129684);
}

.secondary-cta-button {
  background: var(--rf-white);
  color: var(--rf-black);
  border: 1.5px solid rgba(15, 15, 15, 0.16);
}

.secondary-cta-button:hover {
  transform: translateY(-3px);
  border-color: var(--rf-teal);
  color: var(--rf-teal);
  box-shadow: var(--rf-shadow-sm);
}

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

.hero-section {
  padding-top: 56px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 12% 28%, rgba(140, 228, 216, 0.26), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(24, 177, 156, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfdfd 0%, #ffffff 100%);
}

.hero-content {
  text-align: center;
}

.hero-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.hero-subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: var(--rf-white);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: var(--rf-shadow-sm);
  transition:
    transform var(--rf-transition),
    box-shadow var(--rf-transition),
    border-color var(--rf-transition);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--rf-shadow-lg);
  border-color: rgba(24, 177, 156, 0.28);
}

.hero-card-media {
  position: relative;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(227, 224, 224, 0.36), rgba(255, 255, 255, 0.95));
}

.hero-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}

.hero-card:hover .hero-card-image {
  transform: scale(1.06);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.05) 0%,
      rgba(15, 15, 15, 0.18) 30%,
      rgba(24, 177, 156, 0.84) 100%
    );
  color: var(--rf-white);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--rf-transition),
    transform var(--rf-transition);
}

.hero-card:hover .hero-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hero-card-overlay-label {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-card-overlay-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
}

.hero-card-button-wrap {
  padding: 18px;
}

.hero-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: var(--rf-radius-pill);
  background: linear-gradient(135deg, var(--rf-black), #252525);
  color: var(--rf-white);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  transition:
    background var(--rf-transition),
    transform var(--rf-transition);
}

.hero-card:hover .hero-card-button {
  background: linear-gradient(135deg, var(--rf-teal), #129684);
}

@media (max-width: 767px) {
  /* 2 columns x 2 rows */
  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .hero-card {
    border-radius: 18px;
  }

  .hero-card-media {
    aspect-ratio: 1 / 1;
  }

  /* overlay hidden by default on mobile */
  .hero-card-overlay {
    opacity: 0;
    transform: translateY(14px);
    padding: 14px;
    pointer-events: none;
    transition: all 0.35s ease;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.02) 0%,
      rgba(15, 15, 15, 0.08) 45%,
      rgba(24, 177, 156, 0.88) 100%
    );
  }

  /* show green gradient only when tapped */
  .hero-card.active .hero-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-card-overlay-label {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .hero-card-overlay-text {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-card-button-wrap {
    padding: 10px;
  }

  .hero-card-button {
    min-height: 44px;
    font-size: 0.84rem;
    padding: 10px;
  }
}

/* =========================
   BENEFITS
   ========================= */

.benefits-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.benefits-image-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(140, 228, 216, 0.55), transparent 30%),
    linear-gradient(180deg, #f6f7f8 0%, #ffffff 100%);
  box-shadow: var(--rf-shadow-md);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.benefits-image {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.benefits-content .section-title {
  font-size: clamp(1.1rem, 3.2vw, 3rem);
  max-width: 680px;
}

.benefits-content .section-intro {
  margin-top: 18px;
  max-width: 720px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}

.benefits-item {
  position: relative;
  padding: 22px 22px 22px 66px;
  background: var(--rf-white);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 22px;
  box-shadow: var(--rf-shadow-sm);
}

.benefits-item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rf-teal), var(--rf-teal-light));
  color: var(--rf-white);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(24, 177, 156, 0.26);
}

.benefits-item-title {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--rf-black);
  font-weight: 700;
}

.benefits-value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.value-prop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: var(--rf-radius-pill);
  background: rgba(24, 177, 156, 0.08);
  border: 1px solid rgba(24, 177, 156, 0.22);
  color: var(--rf-black);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.benefits-framing {
  margin-top: 30px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(140, 228, 216, 0.16), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(24, 177, 156, 0.15);
}

.benefits-framing-title {
  margin: 0 0 14px;
  color: var(--rf-black);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.benefits-framing p + p {
  margin-top: 14px;
}

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   DEMO VIDEO
   ========================= */

.demo-section {
  background:
    linear-gradient(180deg, #fbfcfc 0%, #f4fbfa 100%);
}

.demo-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.demo-header .section-title {
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

.demo-header .section-intro {
  margin-top: 18px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.demo-video-wrap {
  position: relative;
}

.rf-video__frame {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--rf-shadow-lg);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.rf-video__frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.rf-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.demo-video-caption {
  margin-top: 16px;
  color: var(--rf-text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
}

.demo-copy {
  padding: 10px 0;
}

.demo-copy-title {
  margin: 0 0 16px;
  color: var(--rf-black);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.demo-copy-text + .demo-copy-text {
  margin-top: 14px;
}

.demo-value-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.demo-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--rf-white);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: var(--rf-shadow-sm);
  color: var(--rf-black);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   REVIEWS
   ========================= */

.reviews-section {
  background: var(--rf-white);
}

.reviews-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.reviews-header .section-title {
  font-size: clamp(2.2rem, 4.3vw, 4.1rem);
}

.reviews-header .section-intro {
  margin-top: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: var(--rf-shadow-sm);
  transition:
    transform var(--rf-transition),
    box-shadow var(--rf-transition),
    border-color var(--rf-transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rf-shadow-md);
  border-color: rgba(24, 177, 156, 0.22);
}

.review-stars {
  font-size: 1.1rem;
  color: var(--rf-teal);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review-title {
  margin: 0 0 12px;
  color: var(--rf-black);
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.review-author {
  margin: 18px 0 0;
  color: var(--rf-slate);
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.final-cta-section {
  padding-top: 70px;
  padding-bottom: 92px;
}

.final-cta-content {
  position: relative;
  text-align: center;
  padding: 56px 36px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(140, 228, 216, 0.28), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(24, 177, 156, 0.18), transparent 20%),
    linear-gradient(135deg, #f7fcfb 0%, #ffffff 55%, #f2fbf9 100%);
  border: 1px solid rgba(24, 177, 156, 0.12);
  box-shadow: var(--rf-shadow-md);
}

.final-cta-content .section-title {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

.final-cta-content .section-intro {
  max-width: 760px;
  margin: 18px auto 0;
}

.final-cta-value-props {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.final-cta-prop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: var(--rf-radius-pill);
  background: var(--rf-white);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: var(--rf-shadow-sm);
  color: var(--rf-black);
  font-size: 0.95rem;
  font-weight: 600;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .hero-shell,
  .benefits-shell,
  .demo-shell,
  .reviews-shell,
  .final-cta-shell {
    width: min(calc(100% - 24px), var(--rf-container));
  }

  .hero-section,
  .benefits-section,
  .demo-section,
  .reviews-section,
  .final-cta-section {
    padding: 58px 0;
  }

  /* pushes hero content below fixed navbar */
  .hero-section {
    padding-top: 110px;
  }

  .section-eyebrow,
  .hero-eyebrow {
    font-size: 0.88rem;
    padding: 7px 14px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  /* 2 by 2 layout */
  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .hero-card {
    border-radius: 18px;
  }

  .hero-card-media {
    aspect-ratio: 1 / 1;
  }

  /* hidden until tapped */
  .hero-card-overlay {
    opacity: 0;
    transform: translateY(14px);
    padding: 14px;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.02) 0%,
      rgba(15, 15, 15, 0.08) 45%,
      rgba(24, 177, 156, 0.88) 100%
    );
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .hero-card.active .hero-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-card-overlay-label {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .hero-card-overlay-text {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-card-button-wrap {
    padding: 10px;
  }

  .hero-card-button,
  .primary-cta-button,
  .secondary-cta-button {
    width: 100%;
    min-height: 44px;
    font-size: 0.84rem;
    padding: 10px;
  }

  .benefits-content .section-title,
  .demo-header .section-title,
  .reviews-header .section-title,
  .final-cta-content .section-title {
    font-size: clamp(1.95rem, 8vw, 2.8rem);
    line-height: 1.04;
  }

  .section-intro,
  .hero-subtitle,
  .demo-copy-text,
  .review-text,
  .benefits-item-text,
  .benefits-framing p {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .benefits-image-wrap {
    border-radius: 24px;
  }

  .benefits-list {
    gap: 14px;
    margin-top: 24px;
  }

  .benefits-item {
    padding: 18px 18px 18px 56px;
    border-radius: 18px;
  }

  .benefits-item::before {
    left: 16px;
    top: 19px;
    width: 28px;
    height: 28px;
    font-size: 0.88rem;
  }

  .benefits-item-title {
    font-size: 1rem;
  }

  .benefits-framing {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .benefits-framing-title {
    font-size: 1.28rem;
  }

  .benefits-actions,
  .demo-actions,
  .reviews-actions,
  .final-cta-actions {
    flex-direction: column;
  }

  .demo-header {
    margin-bottom: 28px;
  }

  .rf-video__frame {
    border-radius: 22px;
  }

  .demo-copy-title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .demo-value-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .demo-point {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.93rem;
  }

  .demo-video-caption {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .review-title {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }

  .review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .review-author {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .final-cta-content {
    padding: 34px 18px;
    border-radius: 26px;
  }

  .final-cta-value-props,
  .benefits-value-props {
    gap: 10px;
  }

  .value-prop,
  .final-cta-prop {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 0.92rem;
    padding: 10px 14px;
  }

  @media (max-width: 767px) {
  /* BENEFITS */
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .benefits-media,
  .benefits-content {
    width: 100%;
  }

  .benefits-image-wrap {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
  }

  .benefits-image {
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
  }

  .benefits-content {
    text-align: center;
  }

  .benefits-content .section-title,
  .benefits-content .section-intro {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-list {
    gap: 12px;
    margin-top: 22px;
  }

  .benefits-item {
    text-align: left;
    padding: 18px 16px 18px 54px;
    border-radius: 18px;
  }

  .benefits-item::before {
    left: 16px;
    top: 18px;
  }

  .benefits-value-props {
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
  }

  .value-prop {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefits-framing {
    margin-top: 22px;
    padding: 22px 16px;
    border-radius: 22px;
    text-align: left;
  }

  .benefits-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* DEMO */
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }

  .demo-video-wrap,
  .demo-copy {
    width: 100%;
  }

  .demo-video-wrap {
    max-width: 520px;
    margin: 0 auto;
  }

  .rf-video__frame {
    border-radius: 22px;
    overflow: hidden;
  }

  .rf-video__frame::before {
    padding-top: 62%;
  }

  .demo-video-caption {
    margin-top: 10px;
    text-align: center;
  }

  .demo-copy {
    text-align: center;
    padding: 0;
  }

  .demo-copy-title,
  .demo-copy-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-copy-text + .demo-copy-text {
    margin-top: 12px;
  }

  .demo-value-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .demo-point {
    text-align: left;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .demo-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
}

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