/* 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 */
    }
}
/* ============================================================
   /oxygen-hose-reel/oxygen-hose-reel.css
   Reel Free — Oxygen Hose Reel page (PAGE 2)
   Palette:
     Carbon: #0F0F0F
     Oxygen: #18B19C
     Mint:   #8CE4D8
     Fog:    #E3E0E0

   Fonts:
     Headline: Poppins ExtraBold, -20 tracking
     Subhead:  Poppins SemiBold/Medium, -20 tracking
     Body:     Poppins Light, -20 tracking
     Spec:     Poppins Black Italic, +40 tracking
============================================================ */

/* ------------------------------
   Root tokens
------------------------------ */
:root{
  --carbon:#0F0F0F;
  --oxygen:#18B19C;
  --mint:#8CE4D8;
  --fog:#E3E0E0;

  --white:#ffffff;
  --black:#000000;

  --text: rgba(15,15,15,.92);
  --muted: rgba(15,15,15,.68);
  --mutedOnDark: rgba(255,255,255,.70);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-1: 0 12px 28px rgba(0,0,0,.14);
  --shadow-2: 0 18px 50px rgba(0,0,0,.18);

  --ring: 0 0 0 4px rgba(24,177,156,.18);

  --container: 1160px;
  --padX: clamp(18px, 4vw, 42px);

  --ease: cubic-bezier(.2,.8,.2,1);

  /* type scale */
  --h1: clamp(34px, 3.6vw, 56px);
  --h2: clamp(26px, 2.6vw, 40px);
  --h3: clamp(18px, 1.6vw, 22px);
  --lead: clamp(16px, 1.2vw, 18px);
  --p: clamp(15px, 1.1vw, 17px);
  --micro: 13px;

  /* letter spacing rules */
  --track-tight: -0.02em;  /* -20 */
  --track-wide:  0.04em;   /* +40 */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ------------------------------
   Base utilities for this page
------------------------------ */
#main-content{
  color: var(--text);
  background: var(--white);
  overflow: clip; /* prevents glow overflow */
}

.oh-container{
  width: min(var(--container), calc(100% - (var(--padX) * 2)));
  margin-inline: auto;
}

.oh-section{
  padding: clamp(54px, 7vw, 110px) 0;
  position: relative;
}

/* Typography */
.oh-h1,
.oh-h2,
.oh-h3{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: var(--track-tight);
  text-transform: none;
  margin: 0 0 14px 0;
}

.oh-h1{
  font-weight: 800; /* Extra Bold */
  font-size: var(--h1);
  line-height: 1.03;
}

.oh-h2{
  font-weight: 800;
  font-size: var(--h2);
  line-height: 1.1;
}

.oh-h3{
  font-weight: 600; /* Semi-bold */
  font-size: var(--h3);
  line-height: 1.25;
}

.oh-subhead,
.oh-lead,
.oh-p,
.oh-micro,
.oh-a,
.oh-figcap,
.oh-breadcrumb,
.oh-kicker{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: var(--track-tight);
  text-transform: none;
}

.oh-subhead{
  font-weight: 300; /* Light */
  font-size: var(--lead);
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 18px 0;
}

.oh-lead{
  font-weight: 300;
  font-size: var(--lead);
  line-height: 1.7;
  color: var(--muted);
  max-width: 74ch;
  margin: 8px 0 28px 0;
}

.oh-p{
  font-weight: 300;
  font-size: var(--p);
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 14px 0;
}

.oh-micro{
  font-weight: 300;
  font-size: var(--micro);
  line-height: 1.6;
  color: rgba(255,255,255,.76);
  margin: 10px 0 0 0;
}

/* Kicker */
.oh-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600; /* Semi-bold or Medium */
  color: rgba(15,15,15,.72);
  font-size: 13px;
  margin: 0 0 14px 0;
}

.oh-kickerDot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--mint), var(--oxygen));
  box-shadow: 0 0 0 6px rgba(24,177,156,.12);
}

/* Breadcrumb */
.oh-breadcrumb{
  font-size: 13px;
  color: rgba(15,15,15,.6);
  margin: 0 0 14px 0;
}
.oh-bcLink{
  color: rgba(15,15,15,.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(15,15,15,.18);
}
.oh-bcLink:hover{ color: var(--carbon); border-bottom-color: rgba(15,15,15,.36); }
.oh-bcSep{ opacity: .5; margin-inline: 6px; }

/* Accent highlight */
.oh-h1Accent{
  background: linear-gradient(90deg, var(--oxygen), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Links */
.oh-inlineLink{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(15,15,15,.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(15,15,15,.18);
  padding-bottom: 2px;
}
.oh-inlineLink:hover{
  color: var(--carbon);
  border-bottom-color: rgba(15,15,15,.36);
}

/* Figures */
.oh-figure{
  margin: 0;
  position: relative;
}
.oh-figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  transform: translateZ(0);
}
.oh-figcap{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(15,15,15,.58);
}

/* ------------------------------
   Buttons (rounded, clean)
------------------------------ */
.oh-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: var(--track-tight);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.oh-btnIcon{
  font-size: 14px;
  opacity: .95;
}

.oh-btnPrimary{
  color: #071A18;
  background: linear-gradient(135deg, var(--oxygen), var(--mint));
  box-shadow: 0 10px 22px rgba(24,177,156,.25);
}
.oh-btnPrimary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24,177,156,.32);
}
.oh-btnPrimary:active{ transform: translateY(0px) scale(.99); }

.oh-btnGhost{
  color: rgba(15,15,15,.82);
  background: rgba(255,255,255,.7);
  border-color: rgba(15,15,15,.12);
  backdrop-filter: blur(10px);
}
.oh-btnGhost:hover{
  transform: translateY(-2px);
  border-color: rgba(24,177,156,.28);
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
}
.oh-btnGhost:focus-visible,
.oh-btnPrimary:focus-visible{
  outline: none;
  box-shadow: var(--shadow-1), var(--ring);
}

/* ------------------------------
   HERO
------------------------------ */
.oh-hero{
  padding: clamp(34px, 4.5vw, 70px) 0 0 0;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 600px at 12% 18%, rgba(140,228,216,.34), transparent 62%),
    radial-gradient(900px 600px at 88% 12%, rgba(24,177,156,.26), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #F7F8F8 100%);
}

/* floating grain overlay */
.oh-heroBg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15,15,15,.06) 1px, transparent 0);
  background-size: 16px 16px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,0));
}

.oh-heroGrid{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
}

.oh-heroCopy{
  position: relative;
  z-index: 2;
  padding: clamp(14px, 2vw, 20px);
}

/* hero “glass” panel behind copy */
.oh-heroCopy::before{
  content:"";
  position:absolute;
  inset: -10px -10px -10px -10px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.oh-heroCtas{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px 0;
}

.oh-proof{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px 0;
}

.oh-proofItem{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,15,15,.10);
  box-shadow: 0 10px 20px rgba(0,0,0,.07);
  font-size: 13px;
  color: rgba(15,15,15,.78);
}
.oh-stars{
  letter-spacing: .06em;
  background: linear-gradient(90deg, var(--oxygen), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.oh-proofPip{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--oxygen);
  box-shadow: 0 0 0 6px rgba(24,177,156,.12);
}

.oh-heroBullets{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}
.oh-heroBullets li{
  display:flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 300;
  color: rgba(15,15,15,.76);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(15,15,15,.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.oh-heroBullets li::before{
  content:"";
  flex: 0 0 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: radial-gradient(circle at 30% 30%, var(--mint), var(--oxygen));
  box-shadow: 0 0 0 6px rgba(24,177,156,.12);
}

.oh-heroMedia{
  position: relative;
  z-index: 1;
}
.oh-heroMedia .oh-figure{
  transform: translateZ(0);
}
.oh-heroMedia .oh-figure::after{
  content:"";
  position:absolute;
  inset: -10px;
  border-radius: var(--radius-xl);
  background: radial-gradient(closest-side at 65% 40%, rgba(24,177,156,.28), transparent 72%);
  filter: blur(18px);
  z-index: -1;
}

.oh-heroBottomLink{
  padding: 18px 0 26px 0;
}

/* ------------------------------
   Split layout utility
------------------------------ */
.oh-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
}

.oh-splitCopy{ max-width: 60ch; }
.oh-splitMedia{ position: relative; }

/* ------------------------------
   Tags
------------------------------ */
.oh-tagRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.oh-tag{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24,177,156,.10);
  border: 1px solid rgba(24,177,156,.22);
  color: rgba(15,15,15,.80);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--track-tight);
}

/* ============================================================
   What section (white with soft accents)
============================================================ */
.oh-what{
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(140,228,216,.25), transparent 55%),
    radial-gradient(900px 520px at 90% 100%, rgba(24,177,156,.18), transparent 55%),
    #fff;
}

/* ============================================================
   Problems section (light gray fog + cards)
============================================================ */
.oh-problems{
  background:
    radial-gradient(900px 520px at 60% 0%, rgba(24,177,156,.14), transparent 60%),
    linear-gradient(180deg, #F7F8F8 0%, #ffffff 100%);
}

.oh-problemGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.oh-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,15,15,.08);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.oh-card:hover{
  transform: translateY(-4px);
  border-color: rgba(24,177,156,.22);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* Problem callout (split inside) */
.oh-problemCallout{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 18px;
  background:
    radial-gradient(520px 320px at 10% 20%, rgba(140,228,216,.24), transparent 55%),
    rgba(255,255,255,.86);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.oh-calloutCopy{
  padding: 10px 10px 10px 10px;
}

.oh-calloutMedia img{
  border-radius: var(--radius-xl);
}

/* ============================================================
   Solution section (BLACK / carbon + neon accents)
============================================================ */
.oh-solution{
  background:
    radial-gradient(1000px 620px at 15% 0%, rgba(24,177,156,.30), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(140,228,216,.22), transparent 58%),
    linear-gradient(180deg, #0B0B0B 0%, var(--carbon) 60%, #050505 100%);
  color: #fff;
}

.oh-solution .oh-kicker,
.oh-solution .oh-h2,
.oh-solution .oh-h3{
  color: #fff;
}
.oh-solution .oh-lead,
.oh-solution .oh-p,
.oh-solution .oh-figcap{
  color: var(--mutedOnDark);
}

.oh-solutionGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 3.6vw, 28px);
  align-items: start;
  margin-top: 22px;
}

.oh-videoCard{
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  position: relative;
}

/* subtle animated border sheen */
.oh-videoCard::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(120deg, transparent 0%, rgba(140,228,216,.16) 35%, transparent 70%);
  transform: translateX(-60%);
  animation: ohSheen 7s var(--ease) infinite;
  opacity: .8;
}
@keyframes ohSheen{
  0%{ transform: translateX(-60%); }
  55%{ transform: translateX(60%); }
  100%{ transform: translateX(60%); }
}

.oh-videoFrame{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: rgba(255,255,255,.04);
}
.oh-videoFrame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.oh-videoMeta{
  padding: 18px 18px 20px 18px;
}

.oh-stepsCard{
  border-radius: var(--radius-xl);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 360px at 30% 0%, rgba(24,177,156,.20), transparent 60%),
    rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.oh-stepsTop{
  margin-bottom: 12px;
}

.oh-stepsList{
  margin: 0 0 16px 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 300;
}
.oh-stepsList strong{
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

/* Dark section button variants */
.oh-solution .oh-btnGhost{
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.oh-solution .oh-btnGhost:hover{
  border-color: rgba(140,228,216,.35);
  box-shadow: 0 18px 45px rgba(0,0,0,.40);
}

/* ============================================================
   Why section (white, with premium trust band)
============================================================ */
.oh-why{
  background:
    radial-gradient(900px 520px at 0% 30%, rgba(140,228,216,.20), transparent 55%),
    radial-gradient(900px 520px at 100% 70%, rgba(24,177,156,.14), transparent 55%),
    #fff;
}

.oh-whyGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
}

.oh-whyCopy{
  max-width: 66ch;
}

.oh-checkGrid{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}

.oh-check{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border-radius: var(--radius-lg);
  padding: 14px 14px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.oh-check:hover{
  transform: translateY(-3px);
  border-color: rgba(24,177,156,.22);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.oh-checkMark{
  flex: 0 0 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(24,177,156,.16), rgba(140,228,216,.20));
  border: 1px solid rgba(24,177,156,.24);
  color: rgba(15,15,15,.82);
  font-weight: 900;
}

.oh-ratingBand{
  margin-top: 18px;
  border-radius: var(--radius-xl);
  padding: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items:center;
  justify-content: space-between;
  background:
    radial-gradient(520px 320px at 10% 50%, rgba(140,228,216,.25), transparent 60%),
    linear-gradient(135deg, rgba(15,15,15,.04), rgba(24,177,156,.06));
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.oh-ratingNum{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: var(--track-tight);
  line-height: 1;
}
.oh-ratingStars{
  letter-spacing: .08em;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--oxygen), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.oh-ratingMeta{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(15,15,15,.62);
  letter-spacing: var(--track-tight);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
}

.oh-ratingRight{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   Safety section (dark/white mix + showcase)
============================================================ */
.oh-safety{
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(24,177,156,.12), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #F7F8F8 100%);
}

.oh-safetyGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.oh-safetyCard{
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.oh-safetyCard:hover{
  transform: translateY(-4px);
  border-color: rgba(24,177,156,.22);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.oh-safetyShowcase{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 18px;
  background:
    radial-gradient(520px 320px at 90% 10%, rgba(140,228,216,.24), transparent 58%),
    rgba(255,255,255,.86);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.oh-safetyCta{
  padding: 10px;
}

/* ============================================================
   FAQ (clean accordion, subtle animation)
============================================================ */
.oh-faq{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(140,228,216,.22), transparent 55%),
    radial-gradient(900px 520px at 88% 100%, rgba(24,177,156,.14), transparent 55%),
    #fff;
}

.oh-accordion{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}

.oh-q{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,15,15,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  overflow: clip;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}

.oh-q:hover{
  transform: translateY(-2px);
  border-color: rgba(24,177,156,.20);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

.oh-q summary{
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: var(--track-tight);
  font-weight: 600;
  color: rgba(15,15,15,.86);
  position: relative;
  padding-right: 48px;
}

.oh-q summary::-webkit-details-marker{ display:none; }

/* plus/minus icon */
.oh-q summary::after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(24,177,156,.10);
  border: 1px solid rgba(24,177,156,.22);
  color: rgba(15,15,15,.78);
  font-weight: 900;
  transition: transform .22s var(--ease), background .22s var(--ease);
}

.oh-q[open] summary::after{
  content:"–";
  background: rgba(140,228,216,.18);
}

.oh-a{
  padding: 0 16px 16px 16px;
  color: rgba(15,15,15,.70);
  font-weight: 300;
  line-height: 1.75;
}

/* bottom CTAs */
.oh-bottomCtas{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ============================================================
   Reveal / Animations (CSS-only baseline)
   - Your JS can toggle .is-visible later
============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Gentle floating motion on hero image (desktop only) */
@media (prefers-reduced-motion: no-preference){
  .oh-heroMedia .oh-figure img{
    animation: ohFloat 7.5s var(--ease) infinite;
  }
  @keyframes ohFloat{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }
}

/* ------------------------------------------------------------
   Spec Type (if you use it later)
   Use: <span class="oh-specType">Specification</span>
------------------------------------------------------------ */
.oh-specType{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900; /* Black */
  font-style: italic;
  letter-spacing: var(--track-wide); /* +40 */
  text-transform: none;
  color: rgba(15,15,15,.70);
  font-size: 12px;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 980px){
  .oh-heroGrid{ grid-template-columns: 1fr; }
  .oh-heroCopy::before{ inset: -8px; }
  .oh-split{ grid-template-columns: 1fr; }
  .oh-problemGrid{ grid-template-columns: 1fr; }
  .oh-problemCallout{ grid-template-columns: 1fr; }
  .oh-solutionGrid{ grid-template-columns: 1fr; }
  .oh-whyGrid{ grid-template-columns: 1fr; }
  .oh-safetyGrid{ grid-template-columns: 1fr; }
  .oh-safetyShowcase{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .oh-btn{ width: 100%; }
  .oh-heroCtas, .oh-ratingRight, .oh-bottomCtas{ width: 100%; }
  .oh-heroCtas .oh-btn, .oh-ratingRight .oh-btn, .oh-bottomCtas .oh-btn{ width: 100%; }
}

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