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


/* 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: 1rem; /* 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: #1a9e8c; /* 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: #18B19C !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: 1rem !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: #149483 !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: #18B19C; /* Green background */
    color: white; /* White text */
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for click area */
    border: 0px solid #18B19C; /* 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: #18B19C; /* 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: #18B19C; /* 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 */
    }
}
/* =========================
   BUDDY LANDING HERO
   ========================= */

.buddy-landing-hero {
  --oxygen: #18b19c;
  --oxygen-dark: #11917f;
  --oxygen-soft: #8ce4d8;
  --carbon: #0f0f0f;
  --charcoal: #1d1d1d;
  --text: #2a2a2a;
  --muted: #6f6f6f;
  --line: #e7eceb;
  --panel: #ffffff;
  --bg: #f7faf9;
  --shadow-lg: 0 24px 60px rgba(15, 15, 15, 0.12);
  --shadow-md: 0 14px 34px rgba(15, 15, 15, 0.08);
  --shadow-sm: 0 8px 18px rgba(15, 15, 15, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  padding: 56px 20px 42px;
  background:
    radial-gradient(circle at top left, rgba(140, 228, 216, 0.22), transparent 35%),
    linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.buddy-landing-hero * {
  box-sizing: border-box;
}

.buddy-landing-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
}

/* =========================
   LEFT MEDIA
   ========================= */

.buddy-landing-hero__media {
  position: relative;
}

.buddy-carousel {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(24, 177, 156, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.buddy-carousel__track {
  position: relative;
  aspect-ratio: 1.08 / 1;
  background: linear-gradient(135deg, #f3f7f6 0%, #edf4f2 100%);
}

.buddy-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.buddy-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.buddy-carousel__video,
.buddy-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* arrows */
.buddy-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--carbon);
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.buddy-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.buddy-carousel__arrow--prev {
  left: 18px;
}

.buddy-carousel__arrow--next {
  right: 18px;
}

/* dots */
.buddy-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.34);
  backdrop-filter: blur(8px);
}

.buddy-carousel__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, width 0.18s ease;
}

.buddy-carousel__dot:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.85);
}

.buddy-carousel__dot.is-active {
  width: 30px;
  background: var(--oxygen);
}

/* CTAs under media */
.buddy-landing-hero__media-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.buddy-landing-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.buddy-landing-hero__cta--primary {
  flex: 1 1 0;
  color: #fff;
  background: linear-gradient(135deg, var(--oxygen) 0%, var(--oxygen-dark) 100%);
  box-shadow: 0 12px 26px rgba(24, 177, 156, 0.25);
}

.buddy-landing-hero__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(24, 177, 156, 0.32);
}

.buddy-landing-hero__cta--secondary {
  flex: 1 1 0;
  color: var(--carbon);
  background: #fff;
  border: 1.5px solid rgba(15, 15, 15, 0.12);
  box-shadow: var(--shadow-sm);
}

.buddy-landing-hero__cta--secondary:hover {
  transform: translateY(-2px);
  color: var(--oxygen);
  border-color: rgba(24, 177, 156, 0.4);
}

/* =========================
   RIGHT CONTENT
   ========================= */

.buddy-landing-hero__content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.buddy-landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  margin: 0 auto 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(24, 177, 156, 0.65);
  background: rgba(140, 228, 216, 0.12);
  color: var(--oxygen);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.buddy-landing-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--carbon);
}

.buddy-landing-hero__intro {
  margin: 0 auto 24px;
  max-width: 500px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #4f4f4f;
}

.buddy-landing-hero__bullets {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 430px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.buddy-landing-hero__bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.06);
  box-shadow: var(--shadow-sm);
}

.buddy-landing-hero__bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oxygen), var(--oxygen-soft));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(1px);
}

.buddy-landing-hero__bullets li span:last-child {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--charcoal);
}

.buddy-landing-hero__trust-bubbles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.buddy-landing-hero__trust-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(24, 177, 156, 0.16);
  color: var(--carbon);
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

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

.buddy-landing-hero__reviews {
  max-width: 1320px;
  margin: 34px auto 0;
}

.buddy-landing-hero__reviews-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  text-align: center;
}

.buddy-landing-hero__reviews-rating {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--carbon);
  letter-spacing: -0.02em;
}

.buddy-landing-hero__reviews-link {
  color: var(--oxygen);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.buddy-landing-hero__reviews-link:hover {
  text-decoration: underline;
}

.buddy-landing-hero__reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.buddy-review-card {
  background: #fff;
  border: 1px solid rgba(24, 177, 156, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buddy-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.buddy-review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.buddy-review-card__stars .star {
  width: 18px;
  height: 18px;
  fill: var(--oxygen);
  flex: 0 0 auto;
}

.buddy-review-card__text {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #333;
}

.buddy-review-card__author {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}

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

@media (max-width: 1100px) {
  .buddy-landing-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .buddy-landing-hero__content {
    max-width: 700px;
  }

  .buddy-landing-hero__reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .buddy-landing-hero {
    padding: 30px 14px 30px;
  }

  .buddy-carousel {
    border-radius: 24px;
  }

  .buddy-carousel__track {
    aspect-ratio: 1 / 1;
  }

  .buddy-carousel__arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .buddy-carousel__arrow--prev {
    left: 10px;
  }

  .buddy-carousel__arrow--next {
    right: 10px;
  }

  .buddy-carousel__dots {
    bottom: 12px;
    gap: 8px;
    padding: 8px 10px;
  }

  .buddy-carousel__dot.is-active {
    width: 24px;
  }

  .buddy-landing-hero__media-actions {
    flex-direction: column;
    gap: 12px;
  }

  .buddy-landing-hero__cta {
    width: 100%;
  }

  .buddy-landing-hero__eyebrow {
    font-size: 0.88rem;
    min-height: 38px;
    padding: 7px 14px;
    margin-bottom: 16px;
  }

  .buddy-landing-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1;
  }

  .buddy-landing-hero__intro {
    font-size: 1rem;
    line-height: 1.66;
    margin-bottom: 20px;
  }

  .buddy-landing-hero__bullets {
    gap: 12px;
  }

  .buddy-landing-hero__bullets li {
    grid-template-columns: 26px 1fr;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .buddy-landing-hero__bullet-check {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
  }

  .buddy-landing-hero__bullets li span:last-child {
    font-size: 0.96rem;
  }

  .buddy-landing-hero__trust-bubbles {
    gap: 8px;
    margin-top: 18px;
  }

  .buddy-landing-hero__trust-bubble {
    width: 100%;
    font-size: 0.9rem;
  }

  .buddy-landing-hero__reviews {
    margin-top: 28px;
  }

  .buddy-landing-hero__reviews-top {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

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

  .buddy-review-card__text {
    font-size: 0.93rem;
  }
}

@media (max-width: 480px) {
  .buddy-landing-hero__title {
    font-size: 1.85rem;
  }

  .buddy-landing-hero__intro {
    font-size: 0.96rem;
  }

  .buddy-review-card__stars .star {
    width: 17px;
    height: 17px;
  }
}

.sale-popup.hidden {
  display: none;
}

.sale-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.sale-highlight {
  font-size: 2em;
  font-weight: bold;
  color: #e63946;
  margin: 10px 0;
}

.buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #18b19c 0%, #14a086 100%);
    color: #fff;
    font-weight: bold;
    border: 2px solid #18b19c;
    border-radius: 8px;
    text-decoration: none;
    transition: 
      background 0.3s,
      color 0.3s,
      box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(24, 177, 156, 0.10);
  }
  
  .buy-button:hover {
    background: linear-gradient(90deg, #14a086 0%, #18b19c 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(24, 177, 156, 0.15);
  }  
  

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #444;
}


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

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

.final-cta-section {
  padding: 72px 20px 92px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.final-cta-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: center;

  padding: 48px;
  border-radius: 38px;

  background:
    radial-gradient(circle at 12% 20%, rgba(140, 228, 216, 0.24), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(24, 177, 156, 0.14), transparent 20%),
    linear-gradient(135deg, #f7fcfb 0%, #ffffff 55%, #f2fbf9 100%);

  border: 1px solid rgba(24, 177, 156, 0.12);
  box-shadow: 0 24px 65px rgba(15, 15, 15, 0.09);
}

.final-cta-content {
  max-width: 720px;
}

.final-cta-content .section-title {
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0;
  color: #0f0f0f;
}

.final-cta-content .section-intro {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5d5d5d;
}

.final-cta-value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.final-cta-prop {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 10px 16px;

  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);

  font-size: 0.93rem;
  font-weight: 600;
  color: #111;
}

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

/* IMAGE SIDE */

.final-cta-media {
  display: flex;
  justify-content: center;
}

.final-cta-image-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 18%, rgba(140, 228, 216, 0.45), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef8f6 100%);

  border: 1px solid rgba(24, 177, 156, 0.12);
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.10);
}

.final-cta-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1.05;
  transition: transform 0.45s ease;
}

.final-cta-image-wrap:hover .final-cta-image {
  transform: scale(1.03);
}

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

@media (max-width: 1100px) {
  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

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

  .final-cta-content .section-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-value-props,
  .final-cta-actions {
    justify-content: center;
  }

  .final-cta-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 56px 14px 70px;
  }

  .final-cta-card {
    padding: 26px 18px;
    gap: 24px;
    border-radius: 26px;
  }

  .final-cta-content .section-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.02;
  }

  .final-cta-content .section-intro {
    font-size: 0.98rem;
    line-height: 1.68;
    margin-top: 14px;
  }

  .final-cta-prop {
    width: 100%;
    font-size: 0.9rem;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions a {
    width: 100%;
  }

  .final-cta-image-wrap {
    max-width: 100%;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .final-cta-content .section-title {
    font-size: 1.75rem;
  }
}

/* =========================
   MOBILE
   ========================= */

@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;
  }

  .hero-section {
    padding-top: 34px;
  }

  .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;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

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

  .hero-card-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.04) 0%,
        rgba(15, 15, 15, 0.14) 32%,
        rgba(24, 177, 156, 0.82) 100%
      );
  }

  .hero-card-overlay-label {
    font-size: 1.02rem;
  }

  .hero-card-overlay-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

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

  .hero-card-button,
  .primary-cta-button,
  .secondary-cta-button {
    width: 100%;
    min-height: 52px;
  }

  .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;
  }
}
}

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 520px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

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

  .hero-card-button,
  .primary-cta-button,
  .secondary-cta-button {
    font-size: 0.95rem;
    padding: 13px 16px;
  }

  .benefits-item {
    padding: 16px 16px 16px 52px;
  }

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

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

  .demo-copy-title {
    font-size: 1.55rem;
  }

  .section-title,
  .hero-title {
    letter-spacing: -0.04em;
  }
}

/* =========================
   LARGE DESKTOP ENHANCEMENTS
   ========================= */

@media (min-width: 1400px) {
  .hero-title {
    max-width: 1080px;
  }

  .hero-card-grid {
    gap: 26px;
  }

  .benefits-layout,
  .demo-layout {
    gap: 60px;
  }
  
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-card:hover,
  .review-card:hover,
  .primary-cta-button:hover,
  .secondary-cta-button:hover {
    transform: none !important;
  }
}

/* Footer Styles */
.site-footer {
    background-color: #414141; /* 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: #18B19C; /* 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: #18B19C; /* 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; }
  }
  