/* General Body and Background */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    
    /* We layer a semi-transparent black gradient OVER the image */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
        url('assets/images/mockup.png');
        
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    color: white;
    
    /* Optional: ensures the background covers the full height even on short pages */
    min-height: 100vh; 
}

/* Navigation Bar */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}



.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* keeps logo left, links centered */
  position: relative;
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: center;
    align-items: center;
  text-decoration: none;
  color: #fff;
  position: absolute;
  left: 0; /* ensures logo is fixed on the left */
  margin-left: 30px;
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.8rem 2rem;
    /* Semi-transparent background with blur */
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;   /* centers vertically */
  justify-content: flex-start; /* keeps it on the left */
}


.nav-center {
  justify-self: center;
}

.nav-right {
  justify-self: end;
  margin-right: 50px;
}

/* Navigation Links */
/* --- DESKTOP NAVIGATION (Outside Media Query) --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* --- MOBILE NAVIGATION (Inside @media (max-width: 768px)) --- */
@media (max-width: 768px) {
  /* 1. Change Nav from Grid to Flex on Mobile */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem; /* Slightly less padding for small screens */
    height: 70px;
  }

  /* 2. Hide the desktop-style center column */
  .nav-center {
    position: fixed;
    top: 70px;
    right: -100%; /* Hidden off-screen */
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #111;
    transition: 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
  }

  /* 3. Show the menu when active */
  .nav-center.show {
    right: 0;
  }

  /* 4. Ensure the Toggle is visible and high enough Z-index */
  .nav-toggle {
    display: block !important; /* Force visibility */
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem; /* Make it easy to tap */
    cursor: pointer;
    z-index: 1001;
    margin-right: 50px; /* Remove that 50px margin you had on nav-right */
  }

  .nav-right {
    margin-right: 0; /* Override your desktop margin-right: 50px */
  }

  /* 5. Style the links for vertical stacking */
  .nav-links {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 1.5rem;
  }

  .nav-links li:not(:last-child)::after {
    display: none; /* Hide the | dividers */
  }
}

.nav-links li {
    padding: 0.5rem 0;
    position: relative;
}

/* Hide hamburger on desktop */
.nav-toggle {
    display: none;
}


/* Add border between buttons */
.nav-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.75rem; /* Space for the border */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.5rem;
    background: #333; /* Subtle divider color */
}

/* Links */
.nav-links a {
    text-decoration: none;
    color: #ccc; /* Silver links */
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
}

/* Links hover effect */
.nav-links a:hover {
    color: #111; /* Dark text on hover */
    background-color: #ccc; /* Silver hover background */
}

/* Active Page Highlight */
.nav-links a.active {
    background: #333; /* Slight highlight for the active page */
    color: #9bff00; /* Lime green text for active link */
    font-size: 1.1rem; /* Slightly larger font size */
    padding: 0.6rem 1.2rem; /* Adjust padding to match increased font size */
    font-weight: bold;
    border-radius: 5px; /* Rounded highlight effect */
    transition: background-color 0.3s, color 0.3s, font-size 0.3s;
}


nav .logo {
  margin-right: 30px; /* space between logo + links */
  font-size: 20px;
  font-weight: bold;
  justify-content: left;
}


/* Positioning for nav-container sections */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* spreads logo, links, icon */
  width: 100%;
}

/* Account Icon */
.account-icon {
  margin-left: auto;
  font-size: 1.4rem;
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s, color 0.3s, transform 0.2s ease; /* added transform */
}

.account-icon:hover {
  color: #efefef;
  transform: scale(1.2); /* grows 20% on hover */
}




.cart-icon {
    position: relative;
    right: 45px;  
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cart-icon img {
    width: 50px;
    height: 50px;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;  /* Adjusted to bring it inside */
    background: limegreen;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    color: #333; /* Darker font color */
}

.cart-dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cart-dropdown li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    display: flex;  /* Enables flexbox layout */
    align-items: center;  /* Vertically aligns items on the same line */
    justify-content: space-between;  /* Ensures the text and button are at opposite ends */
}

.cart-item-name {
    flex-grow: 1;  /* Ensures the text takes up available space */
    color: #333; /* Darker text for list items */
}

.remove-btn {
    background: transparent;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

.remove-btn:hover {
    color: darkred;
}


.cart-dropdown p {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555; /* Slightly darker grey for empty message */
}

.cart-icon:hover .cart-dropdown {
    display: block;
}

.cart-item-image {
    width: 30px; /* Small size for the image */
    height: auto;
    margin-right: 10px; /* Space between image and text */
    vertical-align: middle; /* Align the image with the text */
}





button {
    background: limegreen;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background: darkgreen;
}



/* Call to Action Button */
.cta {
    background: #9bff00; /* Lime green button */
    color: #111; /* Dark text for contrast */
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cta:hover {
    background: #ccc; /* Silver hover effect for the button */
    color: #111; /* Dark text on hover */
}



/* Main Content */
main {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.7); /* <--- THIS IS IT */
    margin: 0 auto;
    max-width: 800px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Section Styling */
section {
    padding: 50px 20px;
    margin-bottom: 40px;
}


/* Hero Section */
header.hero3 {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align items at the top */
    align-items: center; /* Center horizontally */
    height: 2vh; /* Full height of hero section */
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center;  /* Centers the image */
    color: white;
    padding: 5rem;
    position: relative; /* Makes the button positioning relative to this section */
}

/* Hero Section */
header.hero2 {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align items at the top */
    align-items: center; /* Center horizontally */
    height: 20vh; /* Full height of hero section */
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center;  /* Centers the image */
    color: white;
    padding: 4rem;
    position: relative; /* Makes the button positioning relative to this section */
}

/* Hero Section */
header.hero {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align items at the top */
    align-items: center; /* Center horizontally */
    height: 10vh; /* Full height of hero section */
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center;  /* Centers the image */
    color: white;
    padding: 4rem;
    position: relative; /* Makes the button positioning relative to this section */
}

/* Hero Heading and Subtext */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px; /* Space between title and subtext */
    text-align: center;  /* Ensures the heading is centered horizontally */
}

.hero .hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px; /* Space between subtext and button */
    text-align: center;  /* Ensures the subtext is centered horizontally */
}

/* Hero Section Button (Positioned at the Bottom) */
.hero .btn {
    background-color: #ff9900;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: auto;  /* Push the button to the bottom */
    text-align: center;  /* Centers the text inside the button */
}

/* Button Hover Effect */
.hero .btn:hover {
    background-color: #ff7f00;
}

/* What is ShowRunner Section */
.what-is {
    text-align: center; /* Centers the content */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7); /* Slightly opaque background for contrast */
    color: white; /* Makes the text readable */
    border-radius: 10px; /* Adds a subtle rounded effect */
    margin: 2rem auto;
    max-width: 800px; /* Limits the width for better readability */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Adds depth with a shadow */
}

/* What is ShowRunner Image */
.what-is-image {
    max-width: 100%; /* Ensures the image scales within its container */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: 1rem; /* Adds space below the image */
    border-radius: 5px; /* Optional: Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

/* What is ShowRunner Video */
.what-is-video {
    max-width: 80%; /* Ensures the video scales within its container */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: 1rem; /* Adds space below the video */
    border-radius: 5px; /* Optional: Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.video-wrapper {
  position: relative;
  width: 100%;           /* full width of container */
  max-width: 600px;     /* optional, adjust as needed */
  margin: 0 auto;        /* center */
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}





section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
     color: #0f0; /* lime green accent */
}

/* Section Styling */
section {
    padding: 50px 20px;
    margin-bottom: 40px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Image styling for each section */
.section-image {
    width: 100%; /* Makes the image take full width of the container */
    max-width: 600px; /* Sets a max-width for the images to prevent them from getting too large */
    height: auto; /* Keeps the aspect ratio intact */
    margin-bottom: 20px; /* Adds space between the image and the text */
}

/* Purchase Section Button */
.purchase-btn {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
}

.purchase-btn:hover {
    background-color: #218838;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; /* centers the grid */
  padding: 20px;
}


/* Products Section */
.products-list {
    padding: 2rem;
    background-color: rgba(17, 17, 17, 0.95); /* Increased opacity for a darker section background */
    color: #ccc; /* Silver text */
}

.product-image {
    width: 100%;
    border-radius: 5px;
    position: relative; /* allows ribbon to sit over it */
}

/* Wrap the image so ribbon can overlap */
.product-image-wrapper {
    position: relative;
    width: 100%;
}

/* Diagonal Corner Ribbon over image */
.coming-soon {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 160px;
    background-color: #4CAF50;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 15px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 10;
    pointer-events: none;
}

/* Intro Sale badge */
.intro-sale {
    display: inline-block;
    background-color: #FFD700; /* gold/yellow */
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 5px;
    font-size: 14px;
    font-weight: normal;
}

/* Make sure product-item keeps relative positioning for ribbon */
.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.product-features {
    list-style: none; /* remove default bullets */
    padding-left: 0;
    margin-top: 15px;
}

.product-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #a6a6a6; /* slightly darker for emphasis */
}

.product-features li::before {
    content: "✔"; /* checkmark icon */
    position: absolute;
    left: 0;
    color: #00ff48; /* ShowRunner lime green accent */
    font-size: 18px;
}


.price-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-header {
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
    width: 100%; /* Ensures it uses all available space */
}


.product-name {
    font-size: 1.5em; /* Increase as needed */
    font-weight: bold;
    align-items: center;
    margin: 0;
    white-space: nowrap; /* Prevents wrapping */
    flex: 1; /* Ensures it grows properly */
}


.price {
    font-size: 1.2em;
    font-weight: bold;
    align-items: center;
    color: #ccc;
    white-space: nowrap; /* Prevents wrapping */
    margin: 0 10px;
}

.add-to-cart-btn {
    padding: 5px 10px;
    font-size: 0.9em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap; /* Prevents wrapping */
}

.add-to-cart-btn:hover {
    background-color: #218838;
}

/* Ecosystem Section */
.ecosystem {
  background: #111; /* dark background */
  color: #eee;
  padding: 4rem 2rem;
  text-align: center;
}

.ecosystem h2 {
  font-size: 2rem;
  color: #0f0; /* lime green accent */
  margin-bottom: 2.5rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ecosystem-card {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    color: inherit; /* keeps text color consistent */
    text-decoration: none; /* removes underline */
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    border-color: #9bff00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.ecosystem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1fab3b;
}

.ecosystem-card img {
  width: 250px;
  height: 175px;
  margin-bottom: 1.5rem;
}

.ecosystem-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.product-item::before {
    content: "";
    display: block;
    height: 80px; /* same as nav height */
    margin-top: -80px;
}


.product-item h2 {
    color: #0f0; /* Lime green for product titles */
    margin-bottom: 1rem;
}



/* Product Images */
.product-image {
    max-width: 80%; /* Width relative to the container */
    max-height: 60vh; /* Height relative to the viewport height */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: 1rem; /* Adds spacing between the image and text */
    border-radius: 5px; /* Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
    object-fit: contain; /* Ensures the image fits within its bounding box */
}



.sound-booth-image {
    width: 100%; /* Adjust to fit container */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px; /* Space between the text and the image */
}


.product-item h2 {
    color: #0f0; /* Lime green for product titles */
    margin-bottom: 1rem;
}

.product-item p {
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff; /* Text color */
    background-color: #3cb371; /* Lime green */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: background-color 0.3s, transform 0.3s; /* Smooth hover effect */
}

.learn-more-btn:hover {
    background-color: #2e8b57; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slight zoom effect */
}



/* Button Style for Hero Section */
.hero-buttons .btn {
    margin: 1rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    background: #444;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #f39c12;
    color: black;
}

/* About Content Section */
/* About Page Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/hero-about.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: #c7ffd8; /* subtle green tint */
}

/* Section styling */
.about-content, .highlight-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    color: #fff;
}

.about-content h2, .highlight-section h2 {
    color: #1bd822; /* green headers for emphasis */
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* Founder story emphasis */
.founder-story p:first-of-type {
    font-style: italic;
    color: #c7ffd8;
    font-size: 1.15rem;
}

/* Lists */
.feature-list, .about-content ul {
    margin-top: 1rem;
    list-style: disc inside;
    color: #fff;
}

.feature-list li:hover, .about-content ul li:hover {
    color: #4CAF50;
    font-weight: bold;
    transition: 0.3s;
}

/* Visuals Grid */
.visuals-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.visuals-grid img {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.visuals-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #111;
    color: #888;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #9cd76a; /* lime green accent */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


.founder-heading {
    font-size: 1.8rem;
    color: #4CAF50; /* green accent to match theme */
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.founder-images {
  flex: 1;
  display: grid;
  gap: 1rem;
}

.founder-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.founder-text {
  flex: 2;
}

.founder-text ul {
  padding-left: 1.25rem;  /* keeps bullets indented nicely */
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.founder-text ul li {
  margin-bottom: 0.75rem; /* adjust spacing as needed */
  line-height: 1.5;       /* improves readability */
}

.founder-text h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: #a6ff47; /* lime accent */
}



.founder-photo {
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.founder-text {
    flex: 1;
    color: #dfdfdf;
}

/* FAQ Section Styling */
.faq-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    padding: 0px 20px;
    width: 100%;
    box-sizing: border-box;
}

.faq-content {
    background-color: rgba(20, 20, 20, 0.85);
    color: #e0e0e0;
    padding: 50px;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(5px);

    /* Add this to center it as a block inside flex */
    margin: 0 auto;
}

.faq-category h3 {
    color: #1bc109; /* lime green for category headers */
    border-bottom: 1px solid rgba(200,200,200,0.3);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 20px;
    cursor: pointer; /* make entire box clickable */
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.faq-item:hover {
    background-color: rgba(122, 122, 122, 0.1); /* subtle green highlight */
}

.faq-question {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question .arrow {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-left: 15px;
}

.faq-answer.open {
    padding-top: 10px;
    padding-bottom: 10px;
}



/* Features Section Styling */
.features {
    text-align: center;
    padding: 2rem;
}

.feature-card {
    background-color: rgba(10, 10, 10, 0.7); /* dark gray with 70% opacity */
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid #333; /* subtle line between cards */
}


.feature-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0.5rem auto; /* small margin above and below image */
}

.feature-card h3 {
    margin: 0; /* remove extra space above */
    font-size: x-large;
    color: #cecece;
}

.feature-card p {
    margin-top: 0.5rem; /* small gap between image and description */
    color: #e0e0e0;
    font-size: 0.95rem;
}



.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
    background: #222;
    border-radius: 10px;
}

.features-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.features-slider {
    display: flex;
    overflow: hidden;
    max-width: 600px; /* adjust to match your card width */
    margin: 0 auto;
    transition: transform 0.5s ease-in-out; /* smooth sliding animation */
}


.feature-card {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* Style for prev/next buttons */
.prev-btn,
.next-btn {
    background-color: rgba(0,0,0,0.5); /* default semi-transparent */
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;

    transition: background-color 0.3s ease;
}

/* Hover / active states */
.prev-btn:hover,
.next-btn:hover,
.prev-btn:active,
.next-btn:active {
    background-color: rgba(255,255,255,0.2); /* light grey/white overlay */
    color: #fff; /* keep arrow color white */
}

.prev-btn { left: -40px; }   /* slightly left of slider */
.next-btn { right: -40px; }  /* slightly right of slider */

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #333; /* inactive: dark */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #bbb; /* active: lighter */
}



/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: #999;
}


.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    background: #111;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #a0ff00;
    box-shadow: 0 0 6px rgba(160, 255, 0, 0.5);
}

.submit-btn {
    background: #32cd32;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0b880b;
}

.buy-btn {
  background-color: #32cd32; /* lime green */
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none; /* remove underline */
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Disabled style */
.buy-btn.disabled {
  background-color: #ccc;     /* grey background */
  color: #666;                /* darker grey text */
  pointer-events: none;       /* disables clicks */
  cursor: not-allowed;        /* shows a disabled cursor */
}

.testimonial-slider {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #eee;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}


.testimonial.active {
  display: block;
  opacity: 1;
}


.rating {
  margin: 10px 0;
  font-size: 20px;
  color: gold;
}

.testimonial-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;

  transition: background 0.2s;
}

.testimonial-container button:active {
  background: rgba(255,255,255,0.3);
}

/* Arrows */
.prev-testimonial,
.next-testimonial {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4); /* subtle dark background */
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
 
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev-testimonial {
  left: 10px;
}

.next-testimonial {
  right: 10px;
}
.testimonial-dots {
  margin-top: 15px;
}

.testimonial-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots span.active {
  background: #ddd;
}




.about-content, .mission, .founder-story, .about-features, .team, .about-visuals {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}



.about-content p, .mission p, .founder-story p, .team p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";  /* or use a music note "♪" for style */
    position: absolute;
    left: 0;
    color: #0f0;  /* accent color */
}

.about-visuals .visuals-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.about-visuals img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}


.highlight-section {
    background-color: rgba(10, 9, 9, 0.8); /* Semi-transparent dark background */
    padding: 2rem;
    border-radius: 8px;
    color: #fff; /* White text for readability */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Soft shadow for depth */
    margin-top: 2rem; /* Adds space above the content */
}

.highlight-section h2 {
    margin-bottom: 20px;
}

.highlight-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}


.comparison-table {
  margin: 3rem auto;
  padding: 2rem;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  color: #eee;
  max-width: 1000px;
}

.comparison-table h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.comparison-table p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.comparison-table th {
  background: #222;
  color: #fff;
  font-weight: bold;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #ddd;
}

/* ✅ green */
.comparison-table td:contains("✅") {
  color: #4ade80; /* tailwind green-400 */
  font-weight: bold;
}

/* ❌ red */
.comparison-table td:contains("❌") {
  color: #f87171; /* tailwind red-400 */
  font-weight: bold;
}

/* 🔶 orange */
.comparison-table td:contains("🔶") {
  color: #facc15; /* tailwind yellow-400 */
  font-weight: bold;
}

/* Legend styling */
.legend {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #aaa;
}
.feature-media {
  width: 100%;            /* full width of card */
  aspect-ratio: 16 / 9;   /* keeps video in 16:9 ratio */
  object-fit: cover;      /* fill the space nicely without stretching */
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* =========================
   MOBILE OPTIMIZATIONS
   ========================= */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  main {
    max-width: 100%;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
  }

  header.hero {
    height: auto;
    padding: 6rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .hero-subtext {
    font-size: 1rem;
  }

  .nav-links {
    width: 100%;
    right: 0;
    top: 70px;
    border-radius: 0;
  }

  .nav-links li:not(:last-child)::after {
    display: none;
  }

  .features {
    padding: 1.5rem 1rem;
  }

  .prev-btn,
  .next-btn {
    display: none;
  }

  .ecosystem-card img {
    width: 180px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 700px;
  }

  .testimonial-container button {
    display: none;
  }
}

/* ===== Mobile Table Fix ===== */
/* Hide mobile cards by default */
.mobile-comparison {
  display: none;
}

/* Desktop Table Styling */
.desktop-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.desktop-table th,
.desktop-table td {
  border: 1px solid #333;
  padding: 0.75rem;
  text-align: center;
}

.desktop-table th {
  background: #222;
  color: #fff;
}

/* Mobile Cards */
@media (max-width: 768px) {
  .desktop-table {
    display: none;
  }

  .mobile-comparison {
    display: grid;
    gap: 1rem;
  }

  .feature-card {
    background: #111;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }

  .feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #fff;
  }

  .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #ccc;
  }

  .feature-card li span {
    font-weight: 500;
  }

  .feature-card li.highlight {
    font-weight: 600;
    color: #7CFF6B; /* ShowRunner pop color */
  }
}


.features-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.features-slider {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

.feature-card {
  flex: 0 0 80%; /* width of card on mobile */
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 1rem;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  min-width: 250px;
}

.feature-card img.feature-media {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  z-index: 10;
}

.prev-btn { left: 0.5rem; }
.next-btn { right: 0.5rem; }

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #444;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #7CFF6B; /* highlight color */
}

/* Desktop: multiple cards side by side */
@media (min-width: 769px) {
  .feature-card {
    flex: 0 0 30%; /* show 3 cards at a time */
  }
}

@media (max-width: 768px) {
    .founder-container {
        flex-direction: column; /* stack images above text on mobile */
        gap: 1rem;
    }

    .founder-photo {
        max-width: 100%;   /* don’t let image exceed its container */
        height: auto;      /* maintain aspect ratio */
        display: block;    /* removes extra space below the image */
    }

    .founder-images {
        width: 100%; /* take full width */
    }

    .founder-text {
        width: 100%; /* take full width */
    }
}



/* Portal Flagship Layout */

/* 1. Force Main to be full-width only on the portal page */
body.portal-page main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

/* 2. Stretch the background section */
.portal-feature-wrapper {
    width: 100%;
    background-color: #0b0b0b; /* Your preferred dark shade */
    display: flex;
    justify-content: center;
}

/* 3. Set the content container to 1800px */
.portal-showcase {
    width: 100%;
    max-width: 1800px; 
   padding: 60px 5% 0 5% !important;
    box-sizing: border-box;
}
/* 4. Feature Rows with huge images */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; 
    margin-bottom: 120px; /* Reduced from 160px for a tighter flow */
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

/* Text stays readable and compact */
.feature-text {
    flex: 1;
    min-width: 400px;
    max-width: 500px; /* Slightly tighter text block */
}

/* Image takes the majority of the 1800px */
.feature-image {
    flex: 2.5; 
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother transition */
}

.feature-image img:hover {
    transform: scale(1.02);
}

/* Typography Polish */
.feature-badge {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.feature-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #a0a0a0;
}

/* =========================================
   Integration Side-by-Side - CORRECTED SIZE & HOVER
   ========================================= */

.integration-showcase.feature-row {
    gap: 60px;
}

.integration-showcase .feature-text {
    flex: 1.2; 
    max-width: 500px;
}

.integration-showcase .feature-image-group {
    flex: 2; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    max-width: 900px;
}

.integration-image {
    flex: 1;
    position: relative;
    max-width: 420px;
}

.integration-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* ADD THIS FOR SMOOTH HOVER */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Shadow for the Group (before hover) */
.integration-showcase .feature-image-group img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* =========================================
   THE RESTORED HOVER ANIMATION
   Lifts and slightly swells the whole group 
   ========================================= */

.integration-showcase .feature-image-group:hover img {
    /* Lift up (-8px) and swell slightly (1.02) */
    transform: translateY(-8px) scale(1.02);
    
    /* Stronger shadow when hovering */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Optional: Subtle blue shadow only on the cloud side during hover */
.integration-showcase .feature-image-group:hover .cloud-view img {
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.2);
}

/* Restoring the Sync Icon Separtor Style */
.sync-icon-separator {
    color: #007bff;
    background: #1a1a1a;
    padding: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    z-index: 2;
    flex-shrink: 0;
    margin-top: -15px; /* Nudge it up so it bridges the two images */
    transition: all 0.4s ease; /* Ensure icon animates too */
}

/* Ensure labels also move smoothly */
.image-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #888;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease; /* Ensure label animates */
}

/* Labels move with the images when hovering */
.integration-showcase .feature-image-group:hover .image-label {
    bottom: -38px; /* Offset the -8px translateY */
    color: #fff;
}

/* =========================================
   Call to Action (CTA) Section Refinement
   ========================================= */
#subscribe.purchase {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%) !important;
    border-top: 1px solid #eee;
}

#subscribe h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

/* =========================================
   Responsive Handling for Integration
   ========================================= */
@media (max-width: 1100px) {
    .integration-showcase.feature-row {
        gap: 30px;
    }
    
    /* Shrink the gap between images as the screen gets smaller */
    .integration-showcase .feature-image-group {
        gap: 15px;
    }
    
    .sync-icon-separator {
        padding: 10px;
        transform: scale(0.8);
    }
}

@media (max-width: 850px) {
    /* Stack them like normal on mobile, but image on top */
    .integration-showcase.feature-row, .integration-showcase.feature-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    /* Make the images full width on mobile */
    .integration-showcase .feature-image-group {
        width: 100%;
        margin-bottom: 50px; /* Space for the labels */
    }
    
    /* Keep them side-by-side even on small screens...or stack them? */
    /* Side-by-Side (Current) */
    
    /* Or, if you want them stacked vertically on mobile, uncomment this: */
    /* .integration-showcase .feature-image-group {
        flex-direction: column;
        gap: 40px;
    }
    .sync-icon-separator {
        margin-top: 0;
        transform: rotate(90deg) scale(0.8);
    }
    */
}

/* Responsive Handling */
@media (max-width: 1100px) {
    .feature-row {
        gap: 40px;
    }
    .feature-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 850px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
        margin-bottom: 100px;
    }
    .feature-text {
        min-width: 100%;
    }
    .feature-image {
        width: 100%;
    }
}

/* Highlight the Portal link slightly differently than the rest */


/* Optional: Add a "New" or "Pro" badge next to it in the menu */
.nav-links a[href="portal.html"]::after {
   /* content: 'PRO';  */
   content: 'CLOUD';
    font-size: 0.6rem;
    vertical-align: top;
    margin-left: 4px;
    background: var(--primary-color);
    color: white;
    padding: 1px 4px;
    border-radius: 4px;
}

/* =========================================
   Organization Section (Small Features)
   ========================================= */
.portal-extra-features {
    padding: 100px 5%;
    background-color: #0b0b0b; /* Matching the wrapper */
    text-align: center;
}

.portal-extra-features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-top: 15px;
}

.small-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.small-feature {
    background: #161616;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.small-feature:hover {
    transform: translateY(-10px);
    background: #1c1c1c;
    border-color: rgba(0, 123, 255, 0.3);
}

.small-feature i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.small-feature h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.small-feature p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* =========================================
   Pricing Section
   ========================================= */
.pricing-section {
    padding: 100px 5%;
    background-color: #080808; /* Slightly darker to separate sections */
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.pricing-card {
    flex: 1;
    background: #161616;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

/* Pro Plan Highlight */
.pricing-card.featured {
    border: 2px solid #007bff;
    background: #1c1c1c;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 25px 0;
}

.price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #ccc;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 12px;
    font-size: 0.9rem;
}

.pricing-features li i.fa-check { color: #28a745; }
.pricing-features li i.fa-times { color: #555; }

.pricing-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

/* Buttons */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: #333;
    color: #fff;
}

.featured-btn {
    background: #007bff;
}

.featured-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Mobile Pricing */
@media (max-width: 850px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 450px;
    }
    .pricing-card.featured {
        transform: scale(1);
        margin: 40px 0;
    }
}

/* Style for disabled/coming soon buttons */
.pricing-btn.coming-soon {
    background: #333 !important; /* Neutral color */
    color: #888 !important;
    cursor: not-allowed; /* Shows a 'blocked' icon on hover */
    opacity: 0.7;
    pointer-events: none; /* Prevents clicking */
    border: 1px solid #444;
}

/* Optional: Add a subtle 'Coming Soon' badge to the cards themselves */
.pricing-card::before {
    content: "Coming Soon";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffc107;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
}

/* Hide the diagonal badge on the 'Featured' card if it clashes with the 'Most Popular' badge */
.pricing-card.featured::before {
    display: none;
}

/* Make the Portal card pop in the grid */
.ecosystem-card.portal-highlight {
    border: 1px solid rgba(0, 123, 255, 0.3);
  
    position: relative;
    overflow: hidden;
}

.portal-highlight .card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.portal-highlight:hover {
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.card-link {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #007bff;
    font-weight: bold;
}

/* Styling for the new active state */
.buy-btn.notify-btn {
    background-color: #7CFF6B; /* Your ShowRunner green */
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
}

.buy-btn.notify-btn:hover {
    background-color: #9bff00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 255, 0, 0.3);
}

.priority-note {
    font-size: 0.85rem;
    color: #7CFF6B; /* Your brand green */
    margin-top: 8px;
    font-style: italic;
    opacity: 0.9;
}

/* Make the button feel "Premium" */
.waitlist-btn {
    background: linear-gradient(135deg, #7CFF6B 0%, #52c443 100%);
    color: #000 !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(124, 255, 107, 0.2);
}

.waitlist-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(124, 255, 107, 0.4);
}


/* =========================
   PRODUCTS PAGE MOBILE FIXES
   ========================= */
@media (max-width: 768px) {
  .products-list {
    padding: 1rem;
  }

  .product-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Make the price and button container stack vertically */
  .price-cart {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Shrink the main price text */
  .price {
    font-size: 1.4rem; 
    display: flex;
    flex-direction: column; /* Stacks the original price below current */
    line-height: 1.2;
  }

  /* Adjust 'To Be Announced' sizing */
  .price:contains("To Be Announced") {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Shrink the strikethrough original price */
  .original-price {
    font-size: 0.9rem;
    margin-left: 0;
  }

  /* Make the button full width on mobile for easier tapping */
  .buy-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
  }

  /* Sizing for the product images */
  .product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Coming Soon Badge */
  .coming-soon {
    font-size: 0.75rem;
    padding: 4px 4px;
    top: 0px;
    right: -20px;
  }
}


@media (max-width: 768px) {
    /* 1. Hide the Login Button */
    .nav-right .purchase-btn {
        display: none !important;
    }

    /* 2. FORCE the Hamburger to show */
    .nav-toggle {
        display: block !important; /* Overrides the 'display: none' from desktop */
        visibility: visible !important;
        opacity: 1 !important;
        background: none;
        border: none;
        color: white; /* Make sure it's not black-on-black! */
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001; /* Keep it above the slide-out menu */
    }

    /* 3. Position the container */
    .nav-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 10px;
    }
}


/* =========================
   PRICING SECTION MOBILE
   ========================= */
@media (max-width: 768px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05); /* Subtle glass effect */
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        position: relative;
    }

    /* Make the Featured/Recommended card pop */
    .pricing-card.featured {
        transform: scale(1.03); /* Slight lift */
        border: 2px solid #7CFF6B;
        box-shadow: 0 10px 30px rgba(124, 255, 107, 0.15);
        background: rgba(124, 255, 107, 0.03);
    }

    .popular-badge {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #7CFF6B;
        color: #000;
        padding: 5px 15px;
        font-weight: 800;
        font-size: 0.8rem;
        border-radius: 20px;
        position: absolute;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .price {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .price span {
        font-size: 1rem;
        color: #888;
    }

    /* Clean up the features list for thumbs */
    .pricing-features {
        text-align: left;
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pricing-features li.disabled {
        opacity: 0.4;
        color: #666;
    }

    .pricing-features i.fa-check {
        color: #7CFF6B;
    }

    /* The Waitlist Button Update */
    .pricing-btn {
        display: block;
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        transition: 0.3s ease;
        background: #333; /* Default for non-featured */
        color: #fff;
    }

    .featured-btn {
        background: #7CFF6B;
        color: #000 !important;
    }
}