*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:sofia-pro, sans-serif
Font being rendered;
    padding:20px 0;
    scroll-behavior: smooth;
}

/* MAIN WRAPPER */
.main-wrapper{
    width:100%;
    display:block;
}

/* ============== STICKY HEADER ============== */
.ventoff-header{
    position:sticky;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    display:flex;
    justify-content:center;
    padding:0 10px;
}

/* HEADER INNER */
.ventoff-header-inner{
    width:98%;
    background:rgba(0, 0, 0, 0.185);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(14px);
    padding:10px 20px;
    border-radius:30px;
    margin-bottom: 16px;
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:all .25s ease;
}

/* SHRINK ON SCROLL */
.ventoff-header.scrolled .ventoff-header-inner{
    padding:10px 20px !important;
    margin-top: 10px;
    border-radius:24px;
}

/* ============== MENU ============== */
.ventoff-menu ul{
    display:flex;
    list-style:none;
    gap:34px;
}
.ventoff-menu a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    font-size:18px;
    transition:.2s;
}
.ventoff-menu a:hover{
    opacity:.8;
}

/* LOGO */
.ventoff-logo img{
    width:160px;
    height:auto;
    display:block;
}

.ventoff-logo{ margin-right:auto; }
.ventoff-right{ margin-left:auto; }

/* RIGHT SIDE */
.ventoff-right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* CTA BUTTON */
.ventoff-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:12px 24px;
    border-radius:14px;
    font-weight:700;
    font-size:16px;
    line-height:1.2;
    min-height:44px;
    text-decoration:none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform .12s ease, box-shadow .12s ease;
}

/* MOBILE ONLY */
.hamburger{
    display:none;
    width:44px;height:44px;border-radius:50%;
    background:#fff;
    border:1px solid #e4e7ec;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:22px;
}
@media(max-width:900px){
    .ventoff-menu{display:none;}
    .hamburger{display:flex;}
    .ventoff-logo img{width:130px;}
}

/* MOBILE PANEL */
.mobile-panel{
    position:fixed;
    inset:0;
    display:none;
    z-index:99999;
}
.mobile-panel .bg{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
.mobile-panel .panel{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:260px;
    background:#ffffff;
    padding:28px 20px;
    box-shadow:8px 0 30px rgba(0,0,0,0.25);
}
.mobile-panel ul{
    list-style:none;
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:16px;
}
.mobile-panel a{
    text-decoration:none;
    color:#0b1220;
    font-weight:700;
    font-size:22px;
}

/* WRAPPER PADDING SAME AS HEADER */
.ventoff-hero-wrapper{
    width:100%;
    margin:0 auto;
    padding: 12px;
}

/* HERO BANNER */
.ventoff-hero{
    height:50vh;
    border-radius:40px;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* VIDEO + IMAGE */
.ventoff-hero-bg{
    position:absolute;
    inset:0;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f766e, #1d4ed8, #0f172a);
    background-size: 220% 220%;
    animation: heroFlow 18s ease-in-out infinite;
}

.ventoff-hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:2;
    pointer-events:none;
}

/* IMAGE */
.ventoff-hero-img{
    display:none;
}

/* VIDEO */
.ventoff-hero-video{
    display:none;
}

@keyframes heroFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CONTENT */
.ventoff-hero-content{
    position:relative;
    z-index:5;
    text-align:center;
    max-width:780px;
    color:#fff;
    padding:24px;
}

/* BUTTON */
.ventoff-hero-btn{
    background:#000000;
    padding:12px 28px;
    border-radius:999px;
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    margin-bottom:32px;
}

/* HEADING */
.ventoff-hero-content h1{
    font-size:52px;
    font-weight:800;
    line-height:1.04;
    margin-bottom:16px;
    max-width: 1000px;
}

/* PARAGRAPH */
.ventoff-hero-content p{
    font-size:15px;
    line-height:1.6;
    color:#e8f7f6;
}

.ventoff-section {
    width: 100%;
    padding: 60px 0;
    background: #eff9f5;
    font-family: "Inter", sans-serif;
}

.ventoff-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.ventoff-left {
    flex: 1;
    margin-top: 10px;
}

.vo-title {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    margin-top: 25px;
}

.vo-text {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

/* RIGHT BOX */
.ventoff-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
}

.vo-point {
    font-size: 32px;
    font-weight: 600;
    color: #ffbb0085;
    
}

.vo-point.strong {
    color: #ffbb00c0;
}

.vo-point.strong2 {
    color: #ffbb00d7;
}

/* BUTTON */
.vo-button {
    display: inline-block;
    background: #000;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
}



/* LIGHT BACKGROUND */
.ventoff-features-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* FLEX LAYOUT */
.ventoff-features-container {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT PLANT FIXED LIKE YOUR SCREENSHOT */
.ventoff-left-plant img {
    width: 350px;
    height: auto;
    object-fit: contain;
    margin-left: -40px;
}

/* FEATURES LIST */
.ventoff-features-list {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* CROSS-OVER BARS */
.ventoff-feature-item {
    display: flex;
    align-items: center;
    padding: 20px 32px;
    border-radius: 30px;
    width: 100%;
    position: relative;
    margin-top: -1px; /* OVERLAP */
}

/* TEXT */
.ventoff-feature-item p {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* WHITE DOT */
.circle {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    margin-right: 18px;
}

/* OPACITY COLORS */
.tone-1 { background: rgba(255, 187, 0, 0.35); }
.tone-2 { background: rgba(255, 187, 0, 0.50); }
.tone-3 { background: rgba(255, 187, 0, 0.65); }
.tone-4 { background: rgba(255, 187, 0, 0.75); }
.tone-5 { background: rgba(255, 187, 0, 0.85); }
.tone-6 { background: rgba(255, 187, 0, 1); }

/* CROSS TILTS EXACT LIKE YOUR SCREENSHOT */
.ventoff-feature-item:nth-child(1) { transform: rotate(0.8deg) translateX(5px); }
.ventoff-feature-item:nth-child(2) { transform: rotate(-1.1deg) translateX(12px); }
.ventoff-feature-item:nth-child(3) { transform: rotate(1.5deg) translateX(22px); }
.ventoff-feature-item:nth-child(4) { transform: rotate(-1.3deg) translateX(18px); }
.ventoff-feature-item:nth-child(5) { transform: rotate(1.1deg) translateX(24px); }
.ventoff-feature-item:nth-child(6) { transform: rotate(-0.7deg) translateX(10px); }

/* BOTTLE IMAGE */
.ventoff-right-bottle img {
    display: none;
}

/* mirrored leaf on the right to replace bottle */
.ventoff-right-plant {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(-1);
}

.ventoff-right-plant img {
    width: 340px;
    height: auto;
    object-fit: contain;
    margin-left: -20px;
}




.ventoff-cards-section{
  width:100%;
  background:var(--bg);
  padding:48px 20px;
}
.ventoff-cards-wrap{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  gap:30px;
  align-items:stretch;
  justify-content:space-between;
}

/* CARD - shared */
.ventoff-card{
  flex:1 1 48%;
  min-height:280px;
  border-radius:var(--card-radius);
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:32px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

/* CARD INNER (content container so background overlay can be separate) */
.ventoff-card-inner{
  position:relative;
  z-index:3;
  width:100%;
  max-width:920px;
}

/* Gradient card */
.ventoff-card--gradient{
  background: black;
  color:#fff;
}

/* Image card - background handled by .ventoff-card-bg */
.ventoff-card--image{
  background:black;
  color:#fff;
}

/* Background image layer for right card */
.ventoff-card--image .ventoff-card-bg{
  display:none;
}

/* when toggled to long on image card we'll reveal a darker overlay (JS toggles class) */
.ventoff-card--image.overlay-active .ventoff-card-bg{
  filter: brightness(0.45);
  transition: filter .35s ease;
}

/* Toggle row */
.ventoff-toggle-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

/* Toggle button */
.ventoff-toggle{
  width:36px;
  height:20px;
  border-radius:20px;
  border:none;
  background:#fff;
  padding:0;
  display:inline-flex;
  align-items:center;
  cursor:pointer;
  position:relative;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
.ventoff-toggle:focus{outline:2px solid rgba(0,0,0,0.08)}
.ventoff-toggle-dot{
  width:12px;
  height:12px;
  background:#000000;
  border-radius:50%;
  margin-left:4px;
  transition: transform .25s ease;
  transform: translateX(0);
}
.ventoff-toggle.ventoff-toggle--inactive .ventoff-toggle-dot,
.ventoff-toggle:not(.ventoff-toggle--active) .ventoff-toggle-dot{
  transform: translateX(16px);
}

/* Toggle label */
.ventoff-toggle-label{
  color:#fff;
  font-weight:600;
  font-size:15px;
}

/* Title */
.ventoff-card-title{
  font-size:44px;
  line-height:1.02;
  margin:8px 0 26px;
  color:#fff;
  font-weight:800;
  letter-spacing:-0.02em;
}
.ventoff-card-title--light{ color:#fff; }

/* Text wrap - both short & long overlap and fade */
.ventoff-text-wrap{
  position:relative;
  min-height:72px;
  margin-bottom:26px;
}
.ventoff-text{
  margin:0;
  color:rgba(255,255,255,0.95);
  font-weight:500;
  font-size:15px;
  line-height:1.6;
  position:absolute;
  left:0;
  top:0;
  right:0;
  transition: opacity .28s ease, transform .28s ease;
  opacity:0;
  transform: translateY(6px);
}

/* Visible states */
.ventoff-text--short{ opacity:1; transform: translateY(0); position:relative; }
.ventoff-card .ventoff-text--long{ opacity:0; }

/* When card gets .long-active we show long and hide short */
.ventoff-card.long-active .ventoff-text--short{ opacity:0; transform: translateY(-6px); position:absolute; }
.ventoff-card.long-active .ventoff-text--long{ opacity:1; transform: translateY(0); position:relative; }

/* Button (right card) */
.ventoff-btn{
  display:inline-block;
  background:#000;
  color:#ffffff;
  padding:12px 24px;
  border-radius:24px;
  font-weight:700;
  font-size:16px;
  line-height:1.2;
  min-height:44px;
  text-decoration:none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}
.ventoff-btn:hover{ transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.16); }

/* Small adjustments to match screenshot spacing */
.ventoff-card--gradient{ padding-left:44px; padding-right:44px; }
.ventoff-card--image{ padding-left:36px; padding-right:36px; }

/* Rounded corners on card content (visual like screenshot) */
.ventoff-card{ border-radius:26px; }

/* Responsive: stack on small screens */
@media (max-width:980px){
  .ventoff-cards-wrap{ flex-direction:column; gap:22px; padding:0 6px; }
  .ventoff-card{ min-height:360px; padding:22px; }
  .ventoff-card-title{ font-size:30px; }
  .ventoff-text{ font-size:14px; line-height:1.5 }
  .ventoff-left-visual{ display:none }
}

/* Very small phones: compact */
@media (max-width:420px){
  .ventoff-card-title{ font-size:22px; }
  .ventoff-text{ font-size:13px; }
  .ventoff-toggle-label{ font-size:14px; }
}


/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.hero-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
}

.hero-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background-image: url('./assets/landing-banner-scaled.jpg'); /* add your banner image */
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  border-radius: 20px;
  position: relative;
}


/* Overlay */
.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.534); /* adjust transparency here */

  border-radius: inherit;
  z-index: 1;
}

/* Content stays above overlay */
.hero-inner > * {
  position: relative;
  z-index: 2;
}


/* TEXT AREA */
.hero-text-block {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  color: #ffffff;
  backdrop-filter: none;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 16px;
  color: #ffffff;
  max-width: 450px;
}

/* FORM CARD */
/* .hero-form-card {
  flex: 0 0 420px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(30px);
} */

.hero-form-card .klaviyo-form-V5AzQs {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-form-card {
    width: 100%;
  }
}

/* Section */
.help-section {
    background: #fffbef;
    padding: 80px 20px;
    text-align: center;
}

.help-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #000;
}

/* Group layout */
.help-group {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

/* Each accordion card */
.help-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* Summary/Title styling */
.help-item summary {
    cursor: pointer;
    padding: 18px 20px;
    list-style: none;
    text-align: center !important;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center !important;
    flex-direction: column;
    gap: 10px;
}

/* Hide default browser arrow */
.help-item summary::-webkit-details-marker {
    display: none;
}

/* Content inside accordion */
.help-body {
    margin: 16px 20px 22px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #1b1502;
    background: #fff9ea;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    animation: fadeIn 0.25s ease;
    text-align: center;
}

/* Gentle accent bar on left for category */
.help-gradient-yellow {
    background: linear-gradient(90deg, #f8d24c2b 0%, #fff9ea 32%, #fff9ea 100%);
    border-left: 4px solid #f2c23b;
}

/* Closing state: remove body */
.help-item:not([open]) .help-body {
    display: none;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Note text */
.help-note {
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}



/* Layout wrapper */
.why-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 40px;
    background: #f1faf4;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.why-left {
    flex: 1;
    min-width: 320px;
}

.why-subtitle {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: black;
}

/* RIGHT SIDE WRAPPER */
.why-right {
    flex: 1;
    min-width: 380px;
}

/* Accordion container */
.why-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Each Accordion card */
.why-item {
    border-radius: 26px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    border: none;
    backdrop-filter: blur(12px);
    padding: 0;
    position: relative;
}

/* Background overlay images / blur simulation */
.why-item:nth-child(1) { background-image: url('./assets/leaf.png'); }
.why-item:nth-child(2) { background-image: url('https://i.imgur.com/DZhCOTF.png'); }
.why-item:nth-child(3) { background-image: url('https://i.imgur.com/aU6a5DT.png'); }
.why-item:nth-child(4) { background-image: url('https://i.imgur.com/T9r0P8j.png'); }
.why-item:nth-child(5) { background-image: url('https://i.imgur.com/DZhCOTF.png'); }
.why-item:nth-child(6) { background-image: url('https://i.imgur.com/aU6a5DT.png'); }

/* Gradient overlay */
.why-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
}

/* Accordion Header */
.why-head {
    cursor: pointer;
    padding: 28px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #fff;
    list-style: none;
}

/* Remove arrow */
.why-head::-webkit-details-marker {
    display: none;
}

/* Body */
.why-body {
    padding: 22px 28px 28px 28px;
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeIn 0.25s ease;
    position: relative;
    z-index: 2;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Layout */
.vo-section.vo-why {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #f1faf4;
    padding: 80px 40px 60px;
    gap: 32px;
}

/* Left text */
.vo-why .vo-left {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
}

.vo-why .vo-subtitle {
    /* Use dark text for contrast on the light why-section background */
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vo-why .vo-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    white-space: normal;
}

/* Right side accordion list */
.vo-why .vo-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Accordion item */
.vo-why .vo-item {
    border-radius: 28px;
    padding: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 160px;
    display: block;
    position: relative;
}

/* UNIQUE IMAGES */
.bg1 { background-image: none; background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #0b1224 100%); }
.bg2 { background-image: none; background: linear-gradient(135deg, #0b3c5d 0%, #1d6996 50%, #0b3c5d 100%); }
.bg3 { background-image: none; background: linear-gradient(135deg, #0f3d2e 0%, #1c6b4a 50%, #0f3d2e 100%); }
.bg4 { background-image: none; background: linear-gradient(135deg, #2c1a4a 0%, #53339f 50%, #2c1a4a 100%); }
.bg5 { background-image: none; background: linear-gradient(135deg, #15324a 0%, #2f5f8f 50%, #15324a 100%); }
.bg6 { background-image: none; background: linear-gradient(135deg, #403012 0%, #8c5b10 50%, #403012 100%); }

/* Title bar */
.vo-why .vo-head {
    padding: 18px 22px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0,0,0,0.35);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
}

.vo-why .vo-head::-webkit-details-marker {
    display: none;
}

/* Content */
.vo-why .vo-body {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background: rgba(0,0,0,0.45);
    border-radius: 14px;
}

.vo-why .vo-item[open] .vo-body { display: block; animation: fadeIn 0.3s ease; }

/* Responsive tweaks for why-choose grid */
@media (max-width: 1100px) {
  .vo-why { padding: 60px 28px; }
  .vo-why .vo-right { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .vo-why { padding: 50px 20px; }
  .vo-why .vo-right { grid-template-columns: 1fr; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SECTION WRAPPER */
.faq-section {
    position: relative;
    padding: 80px 40px;
    margin: 0px 30px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f766e);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* BACKGROUND VIDEO */
.faq-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* CONTENT WRAPPER */
.faq-inner {
    position: relative;
    z-index: 2;
}

/* TITLE */
.faq-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* GRID: LEFT + RIGHT WITH SAME WIDTH */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* FORCE BOTH COLUMNS SAME SIZE */
.faq-left,
.faq-right {
    max-width: 650px;
    width: 100%;
}

/* ACCORDION CARD */
.faq-item {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* CLOSED → BLUE BLUR */
.faq-item:not([open]) {
    background: rgba(70, 100, 150, 0.28);
    backdrop-filter: blur(18px);
}

/* OPEN → WHITE BOX */
.faq-item[open] {
    background: #ffffff;
    backdrop-filter: none;
}

/* HEADERS */
.faq-head {
    display: flex;
    justify-content: space-between;
    padding: 28px 36px;
    font-size: 20px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

/* CLOSED HEADER → WHITE */
.faq-item:not([open]) .faq-head {
    color: #ffffff;
}

/* OPEN HEADER → YELLOW */
.faq-item[open] .faq-head {
    color: #0f172a;
}

/* Remove default arrow */
.faq-head::-webkit-details-marker {
    display: none;
}

/* BODY CONTENT */
.faq-body {
    padding: 0 36px 32px 36px;
    font-size: 17px;
    line-height: 1.6;
    animation: faqFade 0.3s ease;
}

/* CLOSED BODY */
.faq-item:not([open]) .faq-body {
    display: none;
}

/* OPEN BODY → BLACK TEXT */
.faq-item[open] .faq-body {
    color: #000;
}

/* Animation */
@keyframes faqFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* MAIN FOOTER WRAPPER */
/* .vo-footer {
   
    margin: 30px 30px 10px 30px;
    background: linear-gradient(to bottom, #000000, #b98500);
    border-radius: 30px;
    padding: 50px 60px;
    color: white;
    font-family: Inter, sans-serif;
}




.vo-footer-top {
    margin-bottom: 40px;
}
.vo-logo {
    width: 120px;
}


.vo-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 40px;
}


.vo-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}


.vo-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 160px;
}
.vo-col h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.vo-col a {
    color: white;
    text-decoration: none;
    opacity: .9;
    font-size: 16px;
}
.vo-col a:hover {
    opacity: 1;
}


.vo-news { width: 45%; max-width: 560px; }
.vo-news h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #fff;
}

.vo-news-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.vo-row { display: flex; gap: 16px; }

.vo-input { flex: 1; }
.vo-input.full { width: 100%; }
.vo-input label {
    font-size: 13px;
    letter-spacing: .01em;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    display: block;
}
.vo-input input {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    background: #f7f8fa;
    color: #1a1a1a;
    font-size: 15px;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}
.vo-input input:focus {
    outline: none;
    border-color: #f2b705;
    box-shadow: 0 0 0 3px rgba(242,183,5,0.18);
    background: #fff;
}

.vo-btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: linear-gradient(90deg, #ffd34d, #ffb347);
    color: #1d1400;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.vo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
    filter: brightness(1.02);
}


.vo-bottom {
    margin-top: 50px;
}
.vo-bottom-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.vo-bottom-links a {
    color: white;
    opacity: .85;
    text-decoration: none;
}
.vo-copy {
    opacity: .8;
    margin: 10px 0;
}
.vo-copy a span {
   color: #df7e26 !important;

}

.vo-payment-img {
    margin-top: 20px;
    max-width: 250px;
}


.vo-disclaimer {
    margin-top: 30px;
    opacity: .8;
    font-size: 14px;
    line-height: 1.5em;
}


@media (max-width: 900px) {
    .vo-footer-grid {
        flex-direction: column;
    }
    .vo-news {
        width: 100%;
    }
}

.prichead{
    /* Keep the pricing heading legible on the dark gradient card */
    color: #ffffff !important;
    font-size: 36px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Ensure dark-card section headings stay white */
.vo-left1 h1{
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Extra specificity for the dark cards */
.vo-how .prichead,
.vo-pricing .prichead {
    color: #ffffff !important;
}

.ourlistener{
    padding: 10px 20px;
}

.vocopy1{
    color: #df7e26;
    font-weight: 600;
}




.vo-footer {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 30px;
  padding: 0;
  background: linear-gradient(120deg, #000000, #ffbc00);
  box-sizing: border-box;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

/* The video sits absolutely and fills the footer area */
.vo-bg-video { display: none; }

/* subtle overlay above video for contrast */
.vo-footer::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.12)); z-index: 1; pointer-events: none; }

/* Inner wrapper holds padding/space for content and places content above overlay */
.vo-footer-inner {
  position: relative;
  z-index: 2;
  padding: 60px 60px;      /* important: gives footer height so video is behind content */
  color: #ffffff;
  font-family: Inter, sans-serif;
  box-sizing: border-box;
}

/* Layout & styling (kept similar to your prior styles) */
.vo-footer-top { margin-bottom: 24px; display:flex; align-items:flex-start; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.vo-logo { width: 120px; display: block; }
.vo-divider { display:none; }

.vo-footer-top .vo-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    opacity: .9;
    font-size: 14px;
    margin-top: 6px;
}

.vo-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Columns */
.vo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 160px;
}
.vo-col h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.vo-col a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 16px;
  opacity: 0.95;
}
.vo-col a:hover { opacity: 1; }

/* Newsletter box */
.vo-news { width: 45%; max-width: 560px; }
.vo-news-top { width: 55%; max-width: 720px; }
.vo-news h4 { font-size: 22px; margin-bottom: 18px; font-weight:700; color:#fff; }

.vo-news-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.vo-row { display: flex; gap: 16px; }
.vo-input { flex: 1; }
.vo-input.full { width: 100%; margin-top: 14px; }
.vo-input label { font-size: 13px; color: rgba(255,255,255,0.92); display:block; letter-spacing:.01em; font-weight:600; }
.vo-input input {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #f7f8fa;
  color: #1a1a1a;
  font-size: 15px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}
.vo-input input:focus {
  outline: none;
  border-color: #f2b705;
  box-shadow: 0 0 0 3px rgba(242,183,5,0.18);
  background: #fff;
}

/* Button */
.vo-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  min-height: 48px;
  background: linear-gradient(90deg, #ffd34d, #ffb347);
  color: #1d1400;
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.vo-btn:hover { 
  background: linear-gradient(90deg, #ffe173, #ffc45a);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  filter: brightness(1.02);
}

@media (max-width: 768px) {
  .vo-news, .vo-news-top { width: 100%; max-width: none; }
  .vo-row { flex-direction: column; }
  .vo-news-box { padding: 22px; }
}

/* Bottom area */
.vo-bottom { margin-top: 50px; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.vo-copy { opacity: .9; margin: 10px 0; }
.vocopy1 { color: #df7e26; font-weight: 600; }

.vo-payment-img { margin-top: 0; max-width: 250px; }

.vo-footer-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px 20px;
    font-size: 14px;
    color: #fff;
    opacity: .9;
    margin-top: 4px;
}

.vo-footer-contact.below-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12px;
    gap: 4px;
}

.vo-disclaimer {
  margin-top: 30px;
  opacity: .9;
  font-size: 14px;
  line-height: 1.5em;
}

/* Responsive: stack columns and hide video on small screens to save bandwidth */
@media (max-width: 900px) {
  .vo-footer-grid { flex-direction: column; }
  .vo-news { width: 100%; }
  .vo-bg-video { display: none; } /* optional but recommended on mobile */
  .vo-footer-inner { padding: 40px 24px; }
}





/* ===========================
   VENTOFF — MOBILE RESPONSIVE
   =========================== */

/* Tablet & small desktop */
@media (max-width: 900px) {
    .ventoff-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .ventoff-left, 
    .ventoff-box {
        width: 100%;
    }

    .vo-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .vo-text {
        font-size: 16px;
    }

    .ventoff-box {
        padding: 36px;
    }
}

/* Large phones */
@media (max-width: 768px) {

    .vo-title {
        font-size: 32px;
    }

    .ventoff-box {
        padding: 28px;
    }

    .vo-point {
        font-size: 26px;
    }

    .vo-button {
        font-size: 15px;
        padding: 10px 22px;
    }
}

/* Standard mobile */
@media (max-width: 576px) {

    .ventoff-section {
        padding: 50px 0;
    }

    .ventoff-container {
        width: 94%;
    }

    .vo-title {
        font-size: 28px;
    }

    .vo-text {
        font-size: 15px;
    }

    .ventoff-box {
        padding: 22px;
        border-radius: 20px;
    }

    .vo-point {
        font-size: 22px;
    }

    .vo-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Small mobiles */
@media (max-width: 420px) {

    .vo-title {
        font-size: 24px;
    }

    .ventoff-box {
        padding: 18px;
    }

    .vo-text {
        font-size: 14px;
    }

    .vo-point {
        font-size: 20px;
    }
}

/* Very small screens (320–360px) */
@media (max-width: 325px) {

    .ventoff-section {
        padding: 40px 0;
    }

    .vo-title {
        font-size: 20px;
    }

    .ventoff-box {
        padding: 14px;
    }

    .vo-text {
        font-size: 13px;
        line-height: 1.3;
    }

    .vo-point {
        font-size: 18px;
    }

    .vo-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* MAIN OUTER WRAPPER */
.vo-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    padding: 30px;
    border-radius: 30px;
}

/* LEFT SIDE */
.vo-left1 {
    flex: 1;
    padding: 40px 30px;
    border-radius: 30px;
    background: linear-gradient(120deg, #000000, #ffbc00);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ACC ITEM */
.vo-acc-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

/* ACC BUTTON */
.vo-acc-btn {
    width: 100%;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    color: #000000;
    padding: 28px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ACC ARROW */
.vo-arrow {
    background: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #2d5f5f;
    transition: 0.3s ease;
}

/* ROTATE WHEN OPEN */
.vo-acc-item.active .vo-arrow {
    transform: rotate(90deg);
}

/* CONTENT */
.vo-acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease;
    color: #fff;
}

.vo-acc-content p {
    padding: 20px 0;
    margin: 0;
}

/* RIGHT SIDE BACKGROUND IMAGE */
.vo-right1 {
    flex: 1;
    border-radius: 30px;
    background-image: url('./assets/landing-banner-scaled.jpg'); /* CHANGE THIS */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vo-right2 {
    flex: 1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,244,219,0.78), rgba(251,212,114,0.78)), url('./assets/landing-banner-scaled.jpg');
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    min-height: 100%;
}

/* MOBILE */
@media (max-width: 900px) {
    .vo-section {
        flex-direction: column;
    }
    .vo-right {
        height: 350px;
    }
}





@media  screen and (max-width:425px) {
    
    .ventoff-btn { 
        display: none;
    }


        .ventoff-logo img {
        width: 110px;
    }

    .ventoff-left-plant img { 
        display: none;
    }
    .ventoff-right-bottle img { 
        display: none;
    }
    .ventoff-right-plant img {
        display: none;
    }

    .vo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1faf4;
    padding: 20px 10px;
    gap: 40px;
    flex-wrap: wrap;
}


.ventoff-benefits { 
    padding: 15px !important;
}



    .faq-section {   padding: 40px 20px;
    margin: 10px;
    }

    .faq-grid {
    grid-template-columns: 1fr;
    gap:0px;
    
}

.vo-footer {
    margin: 10px; 
    padding: 50px 20px;
}

.vo-logo {
    width: 100px;
}




.ventoff-hero-content {
    padding: 40px 20px; 
}


.ventoff-features-list {
    width: 100%; }

}


/* MAIN WRAPPER */

.ni-text ul li{

    font-size: 18px;
    margin-bottom: 12px;

}

/* ---------- Nosu-style ingredient cards (hover reveals text) ---------- */

.ventoff-ingredients {
  width: 100%;
  padding: 56px 0;
  background: #ffffff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.ventoff-ingredients-inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* headings */
.ni-kicker {
  color: #ffffff;
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 600;
}
.ni-head {
  color: #000000;
  font-size: 40px;
  margin: 0 0 28px;
  font-weight: 800;
}

/* grid */
.ni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;

}

/* card base */
.ni-card {
  position: relative;
  height: 350px;                  /* match screenshot height */
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;     /* title sits near top area visually but we place at bottom stack */
  padding: 28px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s ease;
  
  will-change: transform;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(5,20,20,0.04);
}

/* subtle lift on hover */
.ni-card:hover,
.ni-card.ni-focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(5,20,20,0.10);
}


.ni-overlay {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: rgba(0,0,0,0.32);       
  backdrop-filter: blur(4px);          
  -webkit-backdrop-filter: blur(4px);
  transition: background .36s ease, backdrop-filter .36s ease;
  z-index: 0;
}


/* title always visible */
.ni-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  color: #fff;
}

/* description hidden by default */
.ni-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 80%;
  text-align: left;
  opacity: 1;
  transition: opacity .36s ease, transform .36s ease;
  z-index: 3;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
}


/* HOVER => darken+blur + show text */
.ni-card:hover .ni-overlay,
.ni-card.ni-focus .ni-overlay {
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ni-card:hover .ni-text,
.ni-card.ni-focus .ni-text {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* ensure title remains visible on hover (contrast) */
.ni-card:hover .ni-title,
.ni-card.ni-focus .ni-title {
  color: #fff;
}

/* HOVER (deeper + stronger blur) */
.ni-card:hover .ni-overlay,
.ni-card.ni-focus .ni-overlay {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* RESPONSIVE: mobile shows text always, stack single column */
@media (max-width: 992px) {
  .ni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ni-card { height: 380px; padding: 24px; }
  .ni-text { max-width: 86%; }
}

@media (max-width: 600px) {

  .ni-text {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .ni-grid {
    grid-template-columns: 1fr;
  }
  .ni-card {
    height: 320px;
    padding: 20px;
  }
  /* always show text on mobile (no hover) */
  .ni-overlay {
    background: rgba(0,0,0,0.36);
    backdrop-filter: blur(6px);
  }
  .ni-title { text-shadow: none; }


}

/* small accessibility focus style */
.ni-card:focus { outline: 3px solid rgba(5,120,110,0.12); outline-offset: 4px; }

.ourlistener li{
    padding: 10px 0;
}
