﻿/* sales.css - Sales Page Styles */

/* Prevent horizontal overflow on all screens */
/* Applied to main, NOT body — overflow-x on body breaks position:fixed centering on iOS */
main {
  overflow-x: hidden;
}

/* Hide scrollbar on mobile/tablet */
@media (max-width: 1024px) {
  body,
  html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  body::-webkit-scrollbar,
  html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

/* Hero Section */
.heroSection {
  min-height: 100vh;
  background: var(--bg-gradient);
  background-attachment: scroll;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  box-sizing: border-box;
}

/* Animated background orbs */
.heroOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.heroOrb1 {
  width: 600px;
  height: 600px;
  background: rgba(1, 214, 245, 0.09);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.heroOrb2 {
  width: 400px;
  height: 400px;
  background: rgba(1, 214, 245, 0.06);
  bottom: -80px;
  left: -80px;
  animation-delay: -4s;
}

.heroOrb3 {
  width: 250px;
  height: 250px;
  background: rgba(1, 214, 245, 0.04);
  top: 30%;
  left: 40%;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero inner layout */
.heroInner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.heroSalesContent {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pills */
.heroPills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 36px;
  white-space: nowrap;
}

.heroPill {
  background: rgba(1, 214, 245, 0.1);
  border: 1px solid rgba(1, 214, 245, 0.3);
  color: #01D6F5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Headline */
.heroSection h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.heroHighlight {
  color: #01D6F5;
  display: inline-block;
}

.heroSection .heroSubtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 0 36px;
  position: relative;
  z-index: 1;
}

/* CTAs */
.heroActions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.heroSecondaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.heroSecondaryBtn:hover {
  color: #01D6F5;
}

/* Stats bar */
.heroStats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.heroStat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.heroStatNum {
  font-size: 1.8rem;
  font-weight: 900;
  color: #01D6F5;
  line-height: 1;
}

.heroStatLabel {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.heroStatDivider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Hero carousel */
.heroCarousel {
  flex-shrink: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroCarouselInner {
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.heroCarouselGlow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(1, 214, 245, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.heroCarouselTrack {
  width: 100%;
  height: 100%;
  position: relative;
}

.heroCarouselSlide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.7s ease;
  border-radius: 20px;
}

.heroCarouselSlide.active {
  opacity: 1;
  z-index: 1;
}

.heroCarouselDots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.heroCarouselDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.heroCarouselDot.active {
  background: #01D6F5;
  transform: scale(1.25);
}

.heroCarouselCaption {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  font-style: italic;
}

/* Hero responsive */

/* Smaller notebooks (1025px – 1280px): reduce carousel and spacing, keep side-by-side */
@media (max-width: 1280px) {
  .heroSection {
    padding: 100px 0 60px;
  }

  .heroInner {
    gap: 36px;
  }

  .heroCarousel {
    width: 400px;
  }

  .heroCarouselInner {
    height: 460px;
  }
}

/* Tablets and small laptops (≤ 1024px): stack vertically, photos below text */
@media (max-width: 1024px) {
  .heroSection {
    padding: 100px 0 60px;
  }

  .heroInner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .heroPills {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .heroSalesContent {
    align-items: center;
    order: 1;
  }

  .heroSection h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }

  .heroSection .heroSubtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .heroActions {
    justify-content: center;
  }

  .heroStats {
    justify-content: center;
  }

  .heroCarousel {
    order: 2;
    width: 90%;
    max-width: 480px;
  }

  .heroCarouselInner {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .heroCarousel {
    width: 100%;
  }

  .heroCarouselInner {
    height: 280px;
  }
}

/* Steps Timeline Section */
.stepsSection {
  padding: 80px 0;
  background: var(--bg-light);
}

.stepsSection h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0b0b0b;
  text-align: center;
  margin-bottom: 60px;
}

.stepsTimeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.stepsTimeline::before {
  display: none;
}

.stepItem {
  background: #f7f8fa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.stepItem:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 48px;
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(1, 214, 245, 0.7) 0%, rgba(1, 214, 245, 0.3) 100%);
  z-index: 1;
}

.stepItem:hover {
  transform: translateY(-4px);
  background: #eef9fb;
  border-color: rgba(1, 214, 245, 0.4);
  box-shadow: 0 8px 32px rgba(1, 214, 245, 0.15);
}

.stepItem:last-child {
  margin-bottom: 0;
}

.stepNumber {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #01D6F5 0%, #00b8d4 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(1, 214, 245, 0.3);
  position: relative;
  z-index: 1;
}

.stepContent {
  flex: 1;
}

.stepContent h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 8px;
}

.stepContent p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Hardware Differentials Section */
.hardwareSection {
  padding: 80px 0;
  background: var(--bg-gradient);
}

.hardwareCenterImg {
  flex-shrink: 0;
  width: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardwareCenterImg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.hardwareSection h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.hardwareSubtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.hardwareGrid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.hardwareCard {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(1, 214, 245, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hardwareCard:hover {
  background: rgba(1, 214, 245, 0.06);
  border-color: rgba(1, 214, 245, 0.4);
  box-shadow: 0 12px 40px rgba(1, 214, 245, 0.18);
  transform: translateY(-4px);
}

.hardwareBadge {
  display: inline-block;
  background: rgba(1, 214, 245, 0.15);
  color: #01D6F5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(1, 214, 245, 0.3);
}

.hardwareIconWrap {
  width: 140px;
  height: 140px;
  background: rgba(1, 214, 245, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hardwareIconWrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hardwareCard:hover .hardwareIconWrap {
  background: rgba(1, 214, 245, 0.15);
  transform: scale(1.08);
}

.hardwareCard h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.hardwareCard p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hardwareFeatureList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hardwareFeatureList li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hardwareDivider {
  display: none;
}

@media (max-width: 768px) {
  .hardwareGrid {
    flex-direction: column;
    gap: 20px;
  }

  .hardwareCenterImg {
    display: none;
  }

  .hardwareSection h2 {
    font-size: 1.9rem;
  }
}

/* Benefits Section */
.benefitsSection {
  padding: 80px 0;
  background: var(--bg-gradient);
  text-align: center;
}

.benefitsSection h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefitsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  text-align: left;
}

.benefitCard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.benefitCard:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(1, 214, 245, 0.3);
  box-shadow: 0 10px 40px rgba(1, 214, 245, 0.2);
}

.benefitIcon {
  width: 60px;
  height: 60px;
  background: rgba(1, 214, 245, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefitCard h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.benefitCard p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.ctaCenter {
  text-align: center;
  margin-top: 20px;
}

.btnPrimary {
  background: linear-gradient(135deg, #01D6F5 0%, #0088CC 100%);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(1, 214, 245, 0.3);
}

.btnPrimary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(1, 214, 245, 0.5);
}

/* Quote Form Section */
.quoteSection {
  padding: 80px 0;
  background: var(--bg-gradient);
}

.quoteContent {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.quoteInfo h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.quoteDescription {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.quoteFeatures {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quoteFeature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #fff;
}

.quoteFeature svg {
  flex-shrink: 0;
}

.formContainer {
  background: #ededed;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.formSectionTitle {
  grid-column: 1 / -1;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0b0b;
  margin: 30px 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #01D6F5;
}

.formSectionTitle:first-child {
  margin-top: 0;
}

.formSeparator {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 11, 11, 0.1) 20%, rgba(11, 11, 11, 0.1) 80%, transparent);
  margin: 20px 0;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-margin-top: 180px;
}

.formGroup.fullWidth {
  grid-column: 1 / -1;
}

.formGroup label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  padding: 14px 16px;
  border: 1px solid rgba(11, 11, 11, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
  color: #0b0b0b;
  height: 50px;
  box-sizing: border-box;
  scroll-margin-top: 180px;
}

.formGroup input::placeholder,
.formGroup select::placeholder,
.formGroup textarea::placeholder {
  color: rgba(11, 11, 11, 0.5);
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: #01D6F5;
  box-shadow: 0 0 0 3px rgba(1, 214, 245, 0.1);
}

.formGroup textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
}

.btnSubmit {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #01D6F5 0%, #0088CC 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: none !important;
  transform: none !important;
}

.btnSubmit:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(1, 214, 245, 0.3);
  transform: none !important;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #01D6F5 0%, #0088CC 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(1, 214, 245, 0.4);
  z-index: 10000;
  transition: bottom 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notification.show {
  bottom: 30px;
}

/* FAQ Section — sales page overrides (light background theme) */
.faqSection {
  padding: 80px 0;
  background: var(--bg-light);
}

.faqSection h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111;
  text-align: center;
  margin-bottom: 60px;
}

.faqList {
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.faqItem {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faqItem:hover {
  border-color: rgba(1, 214, 245, 0.5);
  box-shadow: 0 4px 16px rgba(1, 214, 245, 0.1);
}

.faqItem.active {
  background: #fff;
  border-color: #01D6F5;
}

.faqQuestion {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faqQuestion h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.faqIcon {
  width: 30px;
  height: 30px;
  background: rgba(1, 214, 245, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #01D6F5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faqItem.active .faqIcon {
  transform: rotate(45deg);
  background: #01D6F5;
  color: #fff;
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faqItem.active .faqAnswer {
  max-height: 300px;
}

.faqAnswer p {
  padding: 0 0 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {

  .heroSection h1 {
    font-size: 2.5rem;
  }
}

/* iPad Pro portrait (1024×1366) — column layout, bigger text, bigger carousel */
@media (min-width: 901px) and (max-width: 1024px) and (orientation: portrait) {
  .heroSection {
    padding: 120px 0 60px;
  }

  .heroInner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .heroSalesContent {
    align-items: center;
    order: 1;
  }

  .heroPills {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .heroSection h1 {
    font-size: 3.4rem;
  }

  .heroSection .heroSubtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .heroActions {
    justify-content: center;
  }

  .heroStats {
    justify-content: center;
  }

  .heroCarousel {
    order: 2;
    width: 88%;
    max-width: 640px;
  }

  .heroCarouselInner {
    height: 680px;
  }
}

@media (max-width: 768px) {
  .heroSection {
    padding: 100px 0 60px;
  }

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

  .heroSection .heroSubtitle {
    font-size: 1rem;
  }

  .stepsTimeline::before {
    left: 20px;
  }

  .stepNumber {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .stepItem {
    gap: 20px;
  }

  .stepContent h3 {
    font-size: 1.2rem;
  }

  .faqQuestion {
    padding: 20px;
  }

  .faqQuestion h3 {
    font-size: 1rem;
  }

  .faqAnswer p {
    padding: 0;
    font-size: 0.95rem;
  }

  .benefitsGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefitsSection h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .quoteContent {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quoteInfo h2 {
    font-size: 1.8rem;
  }

  .formContainer {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  /* intl-tel-input phone wrapper must not overflow */
  .formGroup .iti {
    width: 100%;
  }

  .formGroup .iti input {
    width: 100%;
    box-sizing: border-box;
  }
}

/* International Telephone Input Customization */
.iti__country-list {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 250px;
}

.iti__country {
  padding: 12px 16px;
  color: #0b0b0b !important;
  font-weight: 500;
}

.iti__country-name,
.iti__dial-code {
  color: #0b0b0b !important;
}

.iti__country:hover {
  background: #f0f9ff;
}

.iti__country.iti__highlight {
  background: #e0f2fe;
}

.iti__selected-flag {
  padding: 0 12px;
}

.iti__search-input {
  padding: 10px 12px;
  border: 1px solid rgba(11, 11, 11, 0.2);
  border-radius: 4px;
  margin: 8px;
  width: calc(100% - 16px);
  color: #0b0b0b !important;
  font-size: 0.95rem;
}

.iti__search-input::placeholder {
  color: rgba(11, 11, 11, 0.5);
}

/* Admin Dashboard Preview Section */
.adminDashboard {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.adminDashboard .container {
  position: relative;
  z-index: 1;
}

.adminDashboard h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0b0b0b;
  text-align: center;
  margin-bottom: 15px;
}

.adminDashboard .sectionSubtitle {
  text-align: center;
  color: rgba(11, 11, 11, 0.7);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.dashboardTabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dashboardTab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(11, 11, 11, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  color: rgba(11, 11, 11, 0.8);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dashboardTab svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.dashboardTab:hover {
  background: rgba(1, 214, 245, 0.15);
  border-color: rgba(1, 214, 245, 0.6);
  color: #0088cc;
  transform: translateY(-2px);
}

.dashboardTab.active {
  background: linear-gradient(135deg, #01D6F5 0%, #0099cc 100%);
  border-color: #01D6F5;
  color: #fff;
  box-shadow: 0 4px 20px rgba(1, 214, 245, 0.3);
}

.dashboardTab.active svg {
  transform: scale(1.1);
}

.dashboardScreens {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  min-height: 500px;
  background: #1a1a1a;
}

.dashboardScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dashboardScreen.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.dashboardImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboardDescriptions {
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 50px;
}

.dashboardDesc {
  display: none;
  padding: 15px 28px;
  border-top: 1px solid rgba(1, 214, 245, 0.2);
}

.dashboardDesc.active {
  display: block;
  animation: descFadeIn 0.45s ease forwards;
}

@keyframes descFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboardDesc strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #01D6F5;
  margin-bottom: 6px;
}

.dashboardDesc p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.dashboardFeatures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.dashboardFeature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(11, 11, 11, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.dashboardFeature:hover {
  background: rgba(1, 214, 245, 0.08);
  border-color: rgba(1, 214, 245, 0.4);
  transform: translateY(-3px);
}

.dashboardFeature svg {
  flex-shrink: 0;
}

.dashboardFeature p {
  color: rgba(11, 11, 11, 0.8);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .adminDashboard {
    padding: 60px 0;
  }

  .adminDashboard h2 {
    font-size: 2rem;
  }

  .dashboardTabs {
    gap: 8px;
  }

  .dashboardTab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .dashboardTab svg {
    width: 18px;
    height: 18px;
  }

  .dashboardScreens {
    min-height: 350px;
    border-radius: 12px;
  }

  .dashboardFeatures {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .dashboardTab span {
    display: none;
  }

  .dashboardTab {
    padding: 12px;
    min-width: 50px;
    justify-content: center;
  }

  .dashboardScreens {
    min-height: 280px;
  }
}

/* ==================== EXTRA SMALL DEVICES (320px) ==================== */
@media (max-width: 320px) {
  .salesPage main {
    padding-top: 100px;
  }

  /* Hero */
  .heroSection {
    padding: 40px 12px;
  }

  .heroSection h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .heroSubtitle {
    font-size: 0.85rem;
  }

  /* Features */

  .sectionTitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  /* Contact Form */
  .contactSection {
    padding: 40px 12px;
  }

  .contactForm {
    padding: 24px 16px;
  }

  .formGroup label {
    font-size: 13px;
  }

  .formGroup input,
  .formGroup textarea,
  .formGroup select {
    padding: 10px 12px;
    font-size: 14px;
  }

  .contactForm .btn {
    padding: 12px;
    font-size: 13px;
  }

  /* Dashboard */
  .dashboardTabs {
    gap: 6px;
  }

  .dashboardTab {
    padding: 10px;
    font-size: 11px;
  }

  .dashboardScreens {
    min-height: 250px;
  }
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
/* Base scroll reveal animation for all elements */
.scrollReveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 500ms ease;
}

.scrollReveal.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scrollReveal.hiding {
  opacity: 0;
  transform: translateY(-30px) scale(0.92);
}

/* Hero animations */
.heroSection h1.scrollReveal {
  transition-delay: 0.1s;
}

.heroSection .heroSubtitle.scrollReveal {
  transition-delay: 0.2s;
}

/* Feature cards with stagger effect */

/* Step items with stagger */
.stepItem.scrollReveal {
  transition-delay: 0.1s;
}

.stepItem:nth-child(1).scrollReveal { transition-delay: 0.05s; }
.stepItem:nth-child(2).scrollReveal { transition-delay: 0.1s; }
.stepItem:nth-child(3).scrollReveal { transition-delay: 0.15s; }
.stepItem:nth-child(4).scrollReveal { transition-delay: 0.2s; }
.stepItem:nth-child(5).scrollReveal { transition-delay: 0.25s; }

/* Benefit cards with stagger */
.benefitCard.scrollReveal {
  transition-delay: 0.1s;
}

.benefitCard:nth-child(1).scrollReveal { transition-delay: 0.05s; }
.benefitCard:nth-child(2).scrollReveal { transition-delay: 0.1s; }
.benefitCard:nth-child(3).scrollReveal { transition-delay: 0.15s; }
.benefitCard:nth-child(4).scrollReveal { transition-delay: 0.2s; }
.benefitCard:nth-child(5).scrollReveal { transition-delay: 0.25s; }
.benefitCard:nth-child(6).scrollReveal { transition-delay: 0.3s; }

/* FAQ items with stagger */
.faqItem.scrollReveal {
  transition-delay: 0.1s;
}

.faqItem:nth-child(1).scrollReveal { transition-delay: 0.05s; }
.faqItem:nth-child(2).scrollReveal { transition-delay: 0.1s; }
.faqItem:nth-child(3).scrollReveal { transition-delay: 0.15s; }
.faqItem:nth-child(4).scrollReveal { transition-delay: 0.2s; }
.faqItem:nth-child(5).scrollReveal { transition-delay: 0.25s; }

/* Dashboard elements */
.dashboardTabs.scrollReveal,
.dashboardScreens.scrollReveal {
  transition-delay: 0.15s;
}

/* Quote section */
.quoteInfo.scrollReveal { transition-delay: 0.05s; }
.quoteForm.scrollReveal { transition-delay: 0.15s; }

/* Hover effects */
.benefitCard.reveal:hover {
  transform: translateY(-8px) scale(1.02);
}
