@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes floatSideways {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(0);
  }
  75% {
    transform: translateY(10px) translateX(-10px);
  }
}
@keyframes circulate {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes dotFloat1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}
@keyframes dotFloat2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-30px, 20px);
  }
  66% {
    transform: translate(20px, -30px);
  }
}
@keyframes dotFloat3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(20px, 30px);
  }
  66% {
    transform: translate(-30px, -20px);
  }
}
@keyframes hero-icon-float-1 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(20px, -40px) rotate(45deg) scale(1.1);
  }
  50% {
    transform: translate(-30px, 10px) rotate(90deg) scale(1);
  }
  75% {
    transform: translate(10px, 30px) rotate(135deg) scale(0.9);
  }
  100% {
    transform: translate(0, 0) rotate(180deg) scale(1);
  }
}
@keyframes hero-icon-float-2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, 30px) rotate(-90deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes hero-icon-float-3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 40px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes hero-icon-float-4 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fade-in {
  animation: fadeIn 300ms ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 500ms ease forwards;
}

.fade-in-down {
  opacity: 0;
  animation: fadeInDown 500ms ease forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 500ms ease forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 500ms ease forwards;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.shimmer {
  background: linear-gradient(to right, #F5F5F5 0%, #FFFFFF 50%, #F5F5F5 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.gradient-animate {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes logoPopIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes floatLogo {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes logoPopIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes icon-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover {
  background:linear-gradient(135deg, #FFD600, #B8860B);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #1A1A1A;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms ease;
}
.btn-outline:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-outline.btn-white {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-outline.btn-white:hover {
  background: #FFFFFF;
  color: #1A1A1A;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.card, .feature-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 300ms ease;
}
.card:hover, .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.feature-card {
  text-align: center;
  padding: 3rem;
}
.feature-card .feature-icon {
  margin-bottom: 1.5rem;
}
.feature-card .feature-icon .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 100%);
  border-radius: 1rem;
  font-size: 2rem;
  transition: all 300ms ease;
}
.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #1A1A1A;
}
.feature-card p {
  color: #666666;
  line-height: 1.6;
}
.feature-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .section-header .section-title {
    font-size: 2rem;
  }
}
.section-header .section-subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
}

.grid, .grid-4, .stats .stats-grid, .grid-3, .grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4, .stats .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-4, .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .grid-4, .stats .stats-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1A1A1A;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 300ms ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #FFE55C;
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #F5F5F5;
  border-top-color: #FFD700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FAFAFA;
  text-decoration: none;
  position: relative;
}

a {
  text-decoration: none;
}

/* ================================================= */
/* COMPLETE & FINAL NAVBAR STYLES           */
/* ================================================= */

/* --- General Navbar & Wrapper Styling --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1030;
    padding: 1.5rem 0;
    transition: all 300ms ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 45px;
    transition: all 300ms ease;
}

/* --- Links & Underline Effect --- */
.navbar .nav-link {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
    transition: all 300ms ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 300ms ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #FFD700;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}


/* --- DESKTOP STYLES (> 1024px) --- */
@media (min-width: 1025px) {
    .navbar .nav-menu {
        display: flex;
        align-items: center;
        flex-grow: 1; /* Allows the menu to fill space */
    }
    
    .navbar .nav-links {
        display: flex;
        gap: 2rem;
        margin: 0 auto; /* Centers the links container */
    }

    .navbar .mobile-menu-toggle {
        display: none;
    }
}


/* --- TABLET & MOBILE STYLES (<= 1024px) --- */
@media (max-width: 1024px) {
    .navbar .nav-menu {
        display: none;
    }

    .navbar .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        position: fixed;
        top: 85px; 
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
    
    /* This rule makes the mobile links stack vertically */
    .navbar .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .navbar .nav-menu.active .nav-cta {
        margin-left: 0;
        margin-top: 1.5rem;
    }

    /* Hamburger Icon Styling */
    .navbar .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1040;
    }

    .navbar .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #1A1A1A;
        transition: all 300ms ease;
        border-radius: 2px;
    }

    .navbar .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


/* --- Default hero styles for DESKTOP --- */
.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

/* --- Specific overrides for TABLET & MOBILE --- */
@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    text-align: center;
  }
}

.hero .hero-bg {
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero .hero-bg .hero-bg-image {
  width: 100%;
  height: calc(100% + 70px);
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
}
.hero .hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero .hero-animated-bg .hero-icon {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.hero .hero-animated-bg .hero-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .hero-animated-bg .hero-icon.icon-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 10%;
  animation-name: hero-icon-float-1;
  animation-duration: 15s;
  opacity: 0.5;
}
.hero .hero-animated-bg .hero-icon.icon-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 85%;
  animation-name: hero-icon-float-2;
  animation-duration: 18s;
  animation-delay: 2s;
  opacity: 0.7;
}
.hero .hero-animated-bg .hero-icon.icon-3 {
  width: 100px;
  height: 100px;
  top: 70%;
  left: 5%;
  animation-name: hero-icon-float-3;
  animation-duration: 22s;
  opacity: 0.6;
}
.hero .hero-animated-bg .hero-icon.icon-4 {
  width: 150px;
  height: 80px;
  top: 80%;
  left: 70%;
  animation-name: hero-icon-float-3;
  animation-duration: 12s;
  animation-delay: 1s;
  opacity: 1;
}
.hero .hero-animated-bg .hero-icon.icon-5 {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation-name: hero-icon-float-1;
  animation-duration: 20s;
  animation-delay: 3s;
  opacity: 0.3;
}
.hero .hero-animated-bg .hero-icon.icon-6 {
  width: 120px;
  height: 40px;
  top: 65%;
  left: 60%;
  animation-name: hero-icon-float-3;
  animation-duration: 28s;
  animation-delay: 4s;
  opacity: 0.25;
}
.hero .hero-animated-bg .hero-icon.icon-7 {
  width: 35px;
  height: 35px;
  top: 5%;
  left: 40%;
  animation-name: hero-icon-float-2;
  animation-duration: 16s;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .hero .hero-animated-bg .hero-icon.icon-1, .hero .hero-animated-bg .hero-icon.icon-3, .hero .hero-animated-bg .hero-icon.icon-5, .hero .hero-animated-bg .hero-icon.icon-6 {
    transform: scale(0.7);
  }
  .hero .hero-animated-bg .hero-icon.icon-2 {
    transform: scale(0.7);
    left: auto;
    right: 5%;
  }
  .hero .hero-animated-bg .hero-icon.icon-4, .hero .hero-animated-bg .hero-icon.icon-7 {
    display: none;
  }
}
.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  gap: 60px;
}
@media (max-width: 1024px) {
  .hero .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.hero .hero-text {
  max-width: 580px;
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .hero .hero-text {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.hero .mobile-showcase {
  position: relative;
  margin-right: -130px;
}
.hero .mobile-showcase .mobile-phones {
  max-width: 650px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}
@media (max-width: 1024px) {
  .hero .mobile-showcase {
    display: none;
  }
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #FF9500;
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
  border-radius: 9999px;
  margin-bottom: 1rem;
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 600;
}
.hero .hero-badge .badge-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 992px) {
  .hero .hero-badge {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
.hero .hero-title {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}
.hero .hero-title .text-highlight {
  color: #FF9500;
}
.hero .hero-subtitle {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .hero .hero-subtitle {
    margin: 0 auto 2rem;
  }
}
.hero .hero-buttons .hero-button {
  display: inline-flex;
  font-weight: 600;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  color: #1A1A1A;
}
.hero .hero-buttons .hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.6) 50%, transparent 80%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}
.hero .hero-buttons .hero-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}
.hero .hero-buttons .hero-button:hover::before {
  left: 150%;
}
@media (max-width: 992px) {
  .hero .hero-buttons .hero-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.logo-slider-section {
  background: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.logo-slider-section::before, .logo-slider-section::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.logo-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}
.logo-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}
.logo-slider-section .logo-slider-track {
  display: flex;
  align-items: center;
  animation: logo-scroll 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
.logo-slider-section .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 80px;
  flex-shrink: 0;
  padding: 0 2rem;
}
.logo-slider-section .logo-img {
  max-width: 150px;
  max-height: 45px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: all 300ms ease;
}
.logo-slider-section .logo-item:hover .logo-img {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}
.features {
  padding: 3rem 0 6rem;
  background: #FFFFFF;
}
.features .section-header {
  margin-bottom: 4rem;
}
.features .features-grid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .features .features-grid-container {
    flex-direction: column;
  }
}
.features .features-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.features .features-center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 2rem;
}
.features .features-center-logo .center-logo-icon {
  max-width: 150px;
}
.features .features-center-logo .center-logo-font {
  max-width: 220px;
}
@media (max-width: 1024px) {
  .features .features-center-logo {
    order: -1;
    margin-bottom: 3rem;
  }
}
.features .pop-in {
  animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.features .feature-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFBE5 100%);
  border: 1px solid #F3E9C4;
  border-radius: 1rem;
  padding: 2rem;
  width: 380px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 300ms ease;
  position: relative;
}
@media (max-width: 992px) {
  .features .feature-card {
    width: 100%;
  }
}
.features .feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-right: 40px;
}
.features .feature-card p {
  color: #666666;
  font-size: 1rem;
}
.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.features .card-corner-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}
.features .card-corner-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1A1A1A;
}

@keyframes subtle-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.promo-section {
  min-height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: auto auto;
  background: linear-gradient(120deg, #fffbe5 0%, #ffe5a5 55%, #fff 100%);
}
@media (max-width: 800px) {
  .promo-section {
    padding: 40px 0;
    min-height: 340px;
  }
}
.promo-section .promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.promo-section .promo-container .promo-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  background: transparent;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .promo-section .promo-container .promo-image {
    max-width: 94vw;
    border-radius: 18px;
  }
}

.vendor-guide-section {
  background: #fff;
  padding: 90px 0 60px 0;
}
.vendor-guide-section .vendor-guide-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #252525;
  letter-spacing: 0.01em;
}
.vendor-guide-section .vendor-guide-desc {
  text-align: center;
  font-size: 1.14rem;
  color: #888;
  margin-bottom: 44px;
}
.vendor-guide-section .vendor-guide-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
@media (max-width: 980px) {
  .vendor-guide-section .vendor-guide-container {
    flex-direction: column;
    gap: 40px;
  }
}
.vendor-guide-section .vendor-guide-image {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.vendor-guide-section .vendor-guide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.vendor-guide-section .vendor-guide-steps {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 350px;
  max-width: 540px;
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .vendor-guide-section .vendor-guide-steps {
    min-width: 0;
    width: 100%;
    padding: 0 1.5rem; /* This adds space on the left and right */
  }
}
.vendor-guide-section .vendor-guide-steps .vendor-step-card {
  background: #f6f7f9;
  color: #222;
  border-radius: 22px;
  box-shadow: 0 6px 28px 0 rgba(185, 134, 11, 0.08);
  padding: 36px 42px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1.45rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.33s cubic-bezier(0.5, 1.6, 0.6, 0.99), color 0.22s, box-shadow 0.19s;
  min-height: 88px;
}
.vendor-guide-section .vendor-guide-steps .vendor-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #f4f3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #b8860b;
  transition: background 0.33s, color 0.24s;
}
.vendor-guide-section .vendor-guide-steps .vendor-step-card .vendor-step-icon img, .vendor-guide-section .vendor-guide-steps .vendor-step-card .vendor-step-icon svg {
  width: 38px;
  height: 38px;
}
.vendor-guide-section .vendor-guide-steps .vendor-step-card:hover, .vendor-guide-section .vendor-guide-steps .vendor-step-card:focus {
  background: linear-gradient(120deg, #ffe376 0%, #ffc800 100%);
  color: #fff;
  box-shadow: 0 8px 40px 0 rgba(185, 134, 11, 0.18);
}
.vendor-guide-section .vendor-guide-steps .vendor-step-card:hover .vendor-step-icon, .vendor-guide-section .vendor-guide-steps .vendor-step-card:focus .vendor-step-icon {
  background: transparent;
  color: #fff;
}
.vendor-guide-section .vendor-guide-steps .vendor-step-card:hover .vendor-step-icon img, .vendor-guide-section .vendor-guide-steps .vendor-step-card:hover .vendor-step-icon svg, .vendor-guide-section .vendor-guide-steps .vendor-step-card:focus .vendor-step-icon img, .vendor-guide-section .vendor-guide-steps .vendor-step-card:focus .vendor-step-icon svg {
  filter: brightness(0) invert(1);
}

.compare-section {
  background: #fff;
  padding: 60px 0 0 0;
  position: relative;
  z-index: 2;
}
.compare-section .dotted-curve-container {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
}
.compare-section .dotted-curve-container .dotted-curve {
  width: 100%;
  max-width: 1100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}
.compare-section .dotted-curve-container .distributor-btn {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD600, #B8860B);
  color: #fff;
  border: none;
  padding: 18px 48px;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 24px 0 rgba(185, 134, 11, 0.13);
  cursor: pointer;
  transition: background 0.24s, transform 0.24s;
  z-index: 5;
}
.compare-section .dotted-curve-container .distributor-btn:hover {
  background: linear-gradient(120deg, #FFC800, #FFD600 85%);
  transform: translateX(-50%) scale(1.05);
}
.compare-section .compare-cards {
  display: flex;
  gap: 36px;
  max-width: 1280px;
  margin: 150px auto 0 auto;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .compare-section .compare-cards {
    flex-direction: column;
    gap: 34px;
    align-items: center;
  }
}
.compare-section .compare-card {
  flex: 1 1 410px;
  min-width: 320px;
  max-width: 530px;
  background: linear-gradient(120deg, #fffbe5 0%, #fff9e1 100%);
  border-radius: 18px;
  box-shadow: 0 4px 38px 0 rgba(185, 134, 11, 0.09);
  padding: 38px 42px 32px 42px;
  border: 1.5px solid #f3e9c4;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.5, 1.6, 0.6, 0.99), transform 0.6s cubic-bezier(0.5, 1.6, 0.6, 0.99);
}
.compare-section .compare-card.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.compare-section .compare-card.delay-1 {
  transition-delay: 0.14s;
}
.compare-section .compare-card h3 {
  text-align: center;
  font-size: 1.68rem;
  font-weight: 700;
  color: #463d20;
  margin-bottom: 8px;
}
.compare-section .compare-card .subtitle {
  text-align: center;
  color: #9b8d4a;
  margin-bottom: 22px;
  font-size: 1.09rem;
}
.compare-section .compare-card .timeline {
  border-left: 2px dashed #e4d9b0;
  padding-left: 32px;
  margin-top: 10px;
}
.compare-section .compare-card .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.compare-section .compare-card .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.compare-section .compare-card .timeline .timeline-item .timeline-dot {
  margin-right: 18px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  box-shadow: 0 2px 8px 0 rgba(185, 134, 11, 0.11);
  flex-shrink: 0;
}
.compare-section .compare-card .timeline .timeline-item strong {
  font-weight: 700;
  color: #b8860b;
  font-size: 1.05rem;
  margin-bottom: 2px;
  display: block;
}
.compare-section .compare-card .timeline .timeline-item p {
  color: #3e3823;
  margin: 2px 0 0 0;
  font-size: 1rem;
}

.how-it-works {
  padding: 6rem 0;
  background: #FFFFFF;
}
.how-it-works .section-header {
  margin-bottom: 4rem;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .how-it-works .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
  }
}
.how-it-works .step-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease;
}
.how-it-works .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #FFD700;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE55C 100%);
}
.how-it-works .step-icon {
  margin-bottom: 1.5rem;
}
.how-it-works .step-icon svg {
  width: 64px;
  height: 64px;
  stroke: #FFD700;
  stroke-width: 1.5;
  fill: rgba(255, 215, 0, 0.05);
}
.how-it-works .step-icon.is-animating {
  animation: icon-float 4s ease-in-out infinite;
}
.how-it-works .step-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1A1A1A;
  max-width: 200px;
  margin: 0 auto;
}
.how-it-works .steps-cta {
  text-align: center;
  margin-top: 4rem;
}

.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE55C 100%);
}
.stats .stats-grid {
  text-align: center;
}
.stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats .stat-item p {
  font-size: 1.125rem;
  color: #666666;
}

.contact-faq-section {
  padding: 80px 0 64px 0;
  background: #fff;
}
.contact-faq-section .section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #232323;
}
.contact-faq-section .section-subtitle {
  text-align: center;
  font-size: 1.14rem;
  color: #8a8782;
  margin-bottom: 38px;
}
.contact-faq-section .contact-faq-grid {
  display: flex;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .contact-faq-section .contact-faq-grid {
    flex-direction: column;
    gap: 38px;
  }
}
.contact-faq-section .contact-card,
.contact-faq-section .faq-card {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #faf9ff 70%, #fffbe7 100%);
  box-shadow: 0 8px 32px 0 rgba(100, 70, 20, 0.09);
  border-radius: 14px;
  padding: 36px 30px 30px 30px;
  min-width: 0;
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-faq-section .contact-card h3,
.contact-faq-section .faq-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #333;
}
.contact-faq-section .contact-card .desc,
.contact-faq-section .faq-card .desc {
  font-size: 1.06rem;
  color: #90896a;
  text-align: center;
  margin-bottom: 18px;
}
.contact-faq-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.contact-faq-section .contact-form label {
  font-size: 1.04rem;
  font-weight: 500;
  color: #2e2e2e;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-faq-section .contact-form label input, .contact-faq-section .contact-form label textarea {
  font-size: 1.07rem;
  padding: 11px 15px;
  border: 1.5px solid #e6dba7;
  border-radius: 8px;
  background: #fffef8;
  color: #37322a;
  transition: border-color 0.22s;
}
.contact-faq-section .contact-form label input:focus, .contact-faq-section .contact-form label textarea:focus {
  border-color: #ffd700;
  outline: none;
}
.contact-faq-section .contact-form label textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-faq-section .contact-form .golden-btn {
  margin-top: 8px;
  background: linear-gradient(120deg, #FFD600, #B8860B);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  cursor: pointer;
  box-shadow: 0 3px 10px 0 rgba(185, 134, 11, 0.1);
  transition: background 0.24s, transform 0.16s;
}
.contact-faq-section .contact-form .golden-btn:hover {
  background: linear-gradient(120deg, #FFC800, #FFD600 90%);
  transform: translateY(-2px) scale(1.04);
}
.contact-faq-section .faq-accordion .faq-item {
  border-bottom: 1px solid #efe7cf;
}
.contact-faq-section .faq-accordion .faq-item:last-child {
  border-bottom: none;
}
.contact-faq-section .faq-accordion .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.11rem;
  font-weight: 300;
  color: #333;
  padding: 19px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.18s;
  outline: none;
}
.contact-faq-section .faq-accordion .faq-item .faq-question::after {
  content: "";
  border: solid #c8b26a;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  position: absolute;
  right: 8px;
  top: 30%;
  transform: rotate(45deg);
  transition: transform 0.24s;
}
.contact-faq-section .faq-accordion .faq-item.active .faq-question {
  color: #b8860b;
}
.contact-faq-section .faq-accordion .faq-item.active .faq-question::after {
  transform: rotate(-135deg);
}
.contact-faq-section .faq-accordion .faq-item .faq-answer {
  display: none;
  font-size: 1.04rem;
  color: #625b44;
  padding-bottom: 17px;
  padding-right: 18px;
  line-height: 1.6;
  animation: fadeInAccordion 0.38s;
}
.contact-faq-section .faq-accordion .faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeInAccordion {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta {
  padding: 6rem 0;
  background: #FFFFFF;
}
.cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cta .cta-content h2 {
    font-size: 2rem;
  }
}
.cta .cta-content p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
}


/* === Testimonials Section === */
.testimonials-section {
  background: linear-gradient(120deg, #fffbe7 0%, #ffe6a7 100%);
  padding: 64px 0;
}

.testimonials-section .testimonials-container {
  display: flex;
  flex-direction: column-reverse; /* mobile first: cards then image */
  align-items: center;
  gap: 32px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* --- Cards --- */
.testimonials-section .testimonial-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.testimonials-section .testimonial-carousel .section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #b8860b;
  margin-bottom: 8px;
}

.testimonials-section .testimonial-carousel .section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(184, 134, 11, 0.8);
  margin-bottom: 24px;
  font-weight: 500;
}

.testimonials-section .testimonial-carousel .carousel-viewport {
  overflow: hidden;
  width: 100%;
  max-width: none;   /* no bottleneck */
  margin: 0;
}

.testimonials-section .testimonial-carousel .carousel-track {
  display: flex;
  gap: 32px;
  will-change: transform;
}

.testimonials-section .testimonial-carousel .testimonial-card {
  flex: 0 0 310px;
  min-width: 310px;
  background: linear-gradient(120deg, #fff 85%, #fff7df 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(180, 160, 60, 0.1);
  padding: 38px 28px 30px 28px;
  text-align: center;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonials-section .testimonial-carousel .testimonial-card p {
  font-size: 1.1rem;
  color: #232323;
  margin-bottom: 22px;
  font-weight: 500;
}

.testimonials-section .testimonial-carousel .testimonial-card span {
  color: #ba9c46;
  font-size: 1.07rem;
  font-weight: 500;
}

/* --- Image --- */
.testimonials-section .testimonial-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.testimonials-section .testimonial-img img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* --- Tablet & Desktop --- */
@media (min-width: 1101px) {
  .testimonials-section .testimonials-container {
    display: grid;
    grid-template-columns: 1fr 520px; /* left: cards, right: image */
    align-items: center;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .testimonials-section .testimonial-carousel {
    align-items: flex-start;  /* align cards to left */
  }

  .testimonials-section .testimonial-carousel .section-title,
  .testimonials-section .testimonial-carousel .section-subtitle {
    text-align: left; /* titles aligned with cards */
  }

  .testimonials-section .testimonial-img {
    justify-content: flex-end;
  }
  .testimonials-section .testimonial-img img {
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(20,20,20,0.18);
  }
}
.testimonials-section .testimonial-img {
  background: transparent !important; 
  box-shadow: none !important;       
  padding: 0 !important;
}

.testimonials-section .testimonial-img img {
  display: block;
  width: 100%;        
  max-width: 520px;   
  background: transparent;
  box-shadow: none;
}
/* --- Medium desktops: a bit smaller image --- */
@media (min-width: 1101px) and (max-width: 1199px) {
  .testimonials-section .testimonials-container {
    grid-template-columns: 1fr 420px;
    gap: 40px;
    padding: 0 20px;
  }
  .testimonials-section .testimonial-img img { max-width: 420px; }
}

/* --- Small screens: adjust padding --- */
@media (max-width: 768px) {
  .testimonials-section { padding-bottom: 2rem !important; }
}


.footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-links h4 {
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.footer .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 300ms ease;
}
.footer .footer-links a:hover {
  color: #FFD700;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .features .feature-card {
    width: 100%;
  }
  .vendor-guide-section .vendor-guide-steps {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 380px) {
  .container {
    padding: 0 1rem;
  }
  .logo img {
    height: 38px;
  }
  .navbar .nav-cta {
    padding: 0.5rem 1.7rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .vendor-guide-section {
    padding-top: 4rem;
    padding-bottom: 1rem; /* Reduces space below vendor cards */
  }

  .compare-section {
    padding-top: 1rem; /* Reduces space above the dotted line */
  }

  .compare-section .compare-cards {
    margin-top: 4rem; /* Reduces space between the line and the cards */
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .vendor-guide-section .vendor-guide-title {
    font-size: 1.8rem; /* Reduces the title font size on mobile */
    line-height: 1.4;  /* Improves spacing if the title wraps to two lines */
  }

  .vendor-guide-section .vendor-guide-desc {
    font-size: 1rem;   /* Slightly reduces the subtitle font size */
  }
   .compare-section .dotted-curve-container .distributor-btn {
    top: 120px; /* Moves the button higher up on mobile screens */
    padding: 1rem 2rem; /* Makes the button slightly smaller */
    font-size: 1rem;    /* Makes the font slightly smaller */
  }
  .contact-faq-section .section-title {
    font-size: 1.8rem; /* Reduces title font size on mobile */
    line-height: 1.3;
  }

  .contact-faq-section .section-subtitle {
    font-size: 1rem;   /* Slightly reduces subtitle font size */
  }
}

/* Surface Pro / medium-large tablets: make stacked cards full-width */
@media (min-width: 850px) and (max-width: 1200px) {

  /* Vendor Guide — let the step column fill the screen */
  .vendor-guide-section .vendor-guide-container {
    max-width: none;
    padding: 0 24px;
    align-items: stretch;        /* stretch children full height when side-by-side */
  }
  .vendor-guide-section .vendor-guide-steps {
    max-width: none;             /* <-- remove 540px cap */
    width: 100%;
    padding: 0;                  /* remove extra side padding */
  }
  .vendor-guide-section .vendor-guide-steps .vendor-step-card {
    width: 100%;
    padding: 32px 40px;          /* a touch larger for readability */
    font-size: 1.2rem;
  }

  /* Compare cards — remove 530px cap and center constraints */
  .compare-section .compare-cards {
    max-width: none;
    width: 100%;
    padding: 0 24px;
    align-items: stretch;
  }
  .compare-section .compare-card {
    max-width: none;             /* <-- remove 530px cap */
    width: 100%;                 /* full row width */
  }

  /* Contact/FAQ — make each card span the full width when stacked */
  .contact-faq-section .contact-faq-grid {
    max-width: none;
    padding: 0 24px;
  }
  .contact-faq-section .contact-card,
  .contact-faq-section .faq-card {
    width: 100%;                 /* fill the column */
    margin: 0;                   /* remove 0 auto centering */
    padding: 36px 32px;          /* slightly larger interior space */
  }
  .contact-faq-section .contact-form label,
  .contact-faq-section .contact-form input,
  .contact-faq-section .contact-form textarea {
    font-size: 1.08rem;          
  }
  .contact-faq-section .contact-form .golden-btn {
    font-size: 1.12rem;
    padding: 14px 0;
  }
}
/* Equal height for Contact + FAQs when side-by-side */
@media (min-width: 900px) {
  /* Put the two cards in a 2-col grid and stretch them to the same height */
  .contact-faq-section .contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;          /* <-- key: children get equal height */
  }

  /* Make each card stretch to the grid row height */
  .contact-faq-section .contact-card,
  .contact-faq-section .faq-card {
    height: 100%;
    width: 100%;
    display: flex;                 /* so inner content can fill */
    flex-direction: column;
  }

  /* Ensure the form fills its card; keep the button at the bottom */
  .contact-faq-section .contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .contact-faq-section .contact-form button,
  .contact-faq-section .contact-form .golden-btn {
    margin-top: auto;              /* pins the submit button to the bottom */
  }

  /* Let the FAQ list fill its card, too */
  .contact-faq-section .faq-list,
  .contact-faq-section .faq-accordion,
  .contact-faq-section .faq-items {
    flex: 1 1 auto;                /* whatever your FAQ wrapper is named */
    min-height: 0;                 /* prevents overflow issues in flex items */
  }
}

/* When stacked (phones/tablets), just use normal flow */
@media (max-width: 899px) {
  .contact-faq-section .contact-faq-grid {
    display: block;
  }
}

@media (max-width: 768px) {
  /* Reduces the large gap between the stacked footer columns */
  .footer .footer-content {
    gap: 2rem;
    margin-bottom: 1.5rem; /* Reduces space below the link sections */
  }

  /* Reduces space above the copyright line */
  .footer .footer-bottom {
    padding-top: 1.5rem;
  }

  /* Reduces the space below the "Company" and "Support" headings */
  .footer .footer-links h4 {
    margin-bottom: 0.5rem;
  }

  /* Reduces the space below each individual link */
  .footer .footer-links a {
    margin-bottom: 0.75rem;
  }
}
/* ============================= */
/* Floating Action Buttons (FAB) */
/* ============================= */

.fab-wrapper{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
}

/* Base FAB shared styles */
.fab{
  position: absolute;           /* stack in same spot */
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;      /* we draw looks via SVG (WA) or gradient (gold) */
  cursor: pointer;
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    opacity .25s ease,
    box-shadow .2s ease,
    background .2s ease;
}
.fab svg{ display:block; }

.fab-gold {
  background: linear-gradient(135deg,#FFD600,#B8860B);
  color: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(185,134,11,0.7),   /* soft glow */
    0 6px 18px rgba(185,134,11,0.4); /* depth shadow */
  opacity: 0;                   /* hidden when at very top */
  pointer-events: none;
  transform: translateY(4px);   /* subtle docked feel */
  transition: all .3s ease;
}

.fab-gold:hover {
  background: linear-gradient(120deg,#FFC800,#FFD600);
  box-shadow:
    0 0 16px rgba(185,134,11,0.9),   /* stronger glow on hover */
    0 8px 22px rgba(185,134,11,0.5);
  transform: translateY(-2px);
}
/* (optional) soft outer glow around the ring */
.fab-gold::after{
  content:"";
  position:absolute;
  inset:-8px;                   /* size of the glow outside the button */
  border-radius:50%;
  pointer-events:none;
  z-index:-1;
  background: radial-gradient(closest-side,
              rgba(255,215,0,0.45),
              rgba(255,215,0,0) 65%);
  filter: blur(1px);
}

/* WhatsApp — SVG defines visual; keep only motion/shadow */
.fab-whatsapp {
  background: #25D366;          /* solid WhatsApp green background */
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
}
.fab-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
}

/* ============================= */
/* Scroll State Animations       */
/* ============================= */

/* Scrolled down: show gold; move WA above it */
body.scrolled .fab-gold{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.scrolled .fab-whatsapp{
  transform: translateY(-64px); /* adjust gap as you like */
}

/* At very top: gold hidden; WA docks back over its spot */
body:not(.scrolled) .fab-whatsapp{
  transform: translateY(0);
}

/* ============================= */
/* Mobile adjustments            */
/* ============================= */
@media (max-width: 480px){
  .fab{ width: 44px; height: 44px; }
  body.scrolled .fab-whatsapp{ transform: translateY(-58px); }
}


/*# sourceMappingURL=main.css.map */


/* Alert Base Styles */
.alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert i {
    margin-right: 8px;
    font-size: 16px;
}

/* Success Alert */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-success i {
    color: #198754;
}

/* Error/Danger Alert */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger i {
    color: #dc3545;
}

/* Info Alert */
.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-info i {
    color: #0dcaf0;
}

/* Alert Animation */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Close Button (Optional) */
.alert .close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
}

.alert .close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alert {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .alert i {
        font-size: 14px;
        margin-right: 6px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .alert-success {
        color: #d1e7dd;
        background-color: #0f5132;
        border-color: #198754;
    }
    
    .alert-danger {
        color: #f8d7da;
        background-color: #721c24;
        border-color: #dc3545;
    }
    
    .alert-info {
        color: #cff4fc;
        background-color: #055160;
        border-color: #0dcaf0;
    }
}

/* Hover Effects */
.alert:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease;
}

/* Alert with Icons Positioning */
.alert {
    display: flex;
    align-items: flex-start;
}

.alert i {
    flex-shrink: 0;
    margin-top: 1px;
}