/* ============================================
   CONTROLBOX - Premium Landing Page Styles
   Futuristic Technology Theme
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #05070A;
  color: #C7D0DA;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: #00AEEF;
}

.mobile-break {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #05070A;
}

::-webkit-scrollbar-thumb {
  background: #111820;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00AEEF;
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.btn--primary {
  background: #00AEEF;
  color: #05070A;
}

.btn--primary:hover {
  background: #00a0d6;
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1px solid #00AEEF;
  color: #00AEEF;
}

.btn--outline:hover {
  background: rgba(0, 174, 239, 0.1);
}

.btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn--whatsapp:hover {
  background: #1EBE5A;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
  transition: background 0.3s ease;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: #00AEEF;
  color: #05070A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 18px;
}

.header__logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 2px;
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.header__link {
  color: #C7D0DA;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.header__link:hover,
.header__link.active {
  color: #00AEEF;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(5, 7, 10, 0.98);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  display: block;
  width: 100%;
  padding: 14px 24px;
  color: #C7D0DA;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav__link:hover {
  color: #00AEEF;
  background: rgba(0, 174, 239, 0.05);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  color: #00AEEF;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #19D67F;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.hero__subtitle {
  font-size: 18px;
  color: #C7D0DA;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero__text {
  font-size: 15px;
  color: rgba(199, 208, 218, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #C7D0DA;
}

.hero__indicator--featured {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.16), rgba(25, 214, 127, 0.12));
  border: 1px solid rgba(0, 174, 239, 0.42);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.12);
}

.hero__indicator svg {
  color: #00AEEF;
  flex-shrink: 0;
}

.hero__indicator--featured svg {
  color: #19D67F;
}

/* ============================================
   HERO MOCKUP
   ============================================ */
.hero__visual {
  flex: 1;
  position: relative;
  min-height: 400px;
  min-width: 0;
}

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

.hero__mockup--image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero__product-image {
  display: block;
  width: min(520px, 100%);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 24px 55px rgba(0, 174, 239, 0.18));
}

.mockup__tv {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.mockup__tv-screen {
  background: #111820;
  border-radius: 12px;
  border: 2px solid rgba(0, 174, 239, 0.2);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 174, 239, 0.1);
}

.mockup__tv-screen img,
.mockup__notebook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup__tv-stand {
  width: 60px;
  height: 30px;
  background: #111820;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  border: 2px solid rgba(0, 174, 239, 0.1);
}

.mockup__box {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 112px;
}

.mockup__notebook {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 220px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: #111820;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.mockup__mascot {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 82px;
}

.mockup__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: #00AEEF;
  font-size: 14px;
  text-align: center;
  background: rgba(17, 24, 32, 0.9);
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 12px;
  min-height: 74px;
}

.mockup__placeholder--sm {
  padding: 20px;
  min-height: 64px;
}

.mockup__placeholder--lg {
  padding: 60px;
}

/* ============================================
   FLOATING CARDS
   ============================================ */
.floating-card {
  position: absolute;
  background: rgba(17, 24, 32, 0.9);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card--online {
  top: 15%;
  left: -5%;
}

.floating-card--devices {
  top: 55%;
  left: -15%;
  animation-delay: 0.5s;
}

.floating-card--status {
  bottom: 25%;
  right: -10%;
  animation-delay: 1s;
}

.floating-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.floating-card__dot--green {
  background: #19D67F;
  animation: pulse 2s infinite;
}

/* ============================================
   HERO DATA LINE
   ============================================ */
.hero__data-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
}

.hero__data-line-inner {
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00AEEF, transparent);
  animation: dataLine 3s linear infinite;
}

/* ============================================
   DIGITAL LINES (background effect)
   ============================================ */
.hero__digital-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
}

.hero__digital-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0, 174, 239, 0.03) 40px,
    rgba(0, 174, 239, 0.03) 41px
  );
}

.hero__digital-lines::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(0, 174, 239, 0.02) 80px,
    rgba(0, 174, 239, 0.02) 81px
  );
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  color: #00AEEF;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 50px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: #C7D0DA;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
  padding: 100px 0;
  background: #05070A;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.problem-card {
  background: #111820;
  border: 1px solid rgba(255, 59, 59, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(255, 59, 59, 0.3);
  transform: translateY(-2px);
}

.problem-card__icon {
  flex-shrink: 0;
}

.problem-card__p {
  color: #C7D0DA;
  font-size: 14px;
  line-height: 1.5;
}

.problems__conclusion {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  padding: 100px 0;
  background: linear-gradient(180deg, #05070A 0%, #071A2B 50%, #05070A 100%);
}

.solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
  transform: translateY(-4px);
}

.solution-card--featured {
  border-color: rgba(0, 174, 239, 0.3);
  background: linear-gradient(135deg, #111820 0%, #071A2B 100%);
}

.solution-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #00AEEF;
  color: #05070A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
}

.solution-card__header {
  margin-bottom: 16px;
}

.solution-card__icon {
  margin-bottom: 16px;
}

.solution-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.solution-card__desc {
  font-size: 14px;
  color: #C7D0DA;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-card__list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.solution-card__list li {
  font-size: 13px;
  color: rgba(199, 208, 218, 0.8);
  padding-left: 20px;
  position: relative;
}

.solution-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #00AEEF;
  border-radius: 50%;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 100px 0;
  background: #05070A;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(0, 174, 239, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 174, 239, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #00AEEF;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  background: rgba(0, 174, 239, 0.15);
}

.feature-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 13px;
  color: rgba(199, 208, 218, 0.7);
  line-height: 1.5;
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */
.dashboard {
  padding: 100px 0;
  background: linear-gradient(180deg, #05070A 0%, #071A2B 100%);
}

.dashboard__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard__mockup {
  background: #111820;
  border-radius: 16px;
  border: 1px solid rgba(0, 174, 239, 0.2);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 174, 239, 0.1);
}

.dashboard__mockup img {
  width: 100%;
  height: auto;
  display: block;
}

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

.metric-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: rgba(0, 174, 239, 0.2);
}

.metric-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 174, 239, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-card__info {
  flex: 1;
}

.metric-card__value {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}

.metric-card__label {
  font-size: 12px;
  color: #C7D0DA;
}

.metric-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.metric-card__dot--green {
  background: #19D67F;
  animation: pulse 2s infinite;
}

.metric-card__dot--red {
  background: #FF3B3B;
}

.dashboard__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.dashboard__tab {
  background: transparent;
  border: 1px solid rgba(0, 174, 239, 0.2);
  color: #C7D0DA;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard__tab.active,
.dashboard__tab:hover {
  background: rgba(0, 174, 239, 0.1);
  border-color: #00AEEF;
  color: #00AEEF;
}

/* ============================================
   HOW IT WORKS / TIMELINE
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: #05070A;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #00AEEF, transparent);
}

.timeline__item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.timeline__marker {
  width: 50px;
  height: 50px;
  background: #111820;
  border: 2px solid #00AEEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00AEEF;
  font-size: 16px;
}

.timeline__content {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  transition: all 0.3s ease;
}

.timeline__content:hover {
  border-color: rgba(0, 174, 239, 0.2);
}

.timeline__icon {
  margin-bottom: 12px;
}

.timeline__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00AEEF;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 14px;
  color: #C7D0DA;
  line-height: 1.6;
}

/* ============================================
   RESELLERS SECTION
   ============================================ */
.resellers {
  padding: 100px 0;
  background: linear-gradient(180deg, #071A2B 0%, #05070A 100%);
}

.resellers__hierarchy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hierarchy__level {
  background: #111820;
  border: 2px solid rgba(0, 174, 239, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
}

.hierarchy__label {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00AEEF;
  letter-spacing: 1px;
}

.hierarchy__level--master {
  border-color: #00AEEF;
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.2);
}

.hierarchy__arrow {
  color: #00AEEF;
}

.resellers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.reseller-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
}

.reseller-feature p {
  font-size: 14px;
  color: #C7D0DA;
}

.resellers__cta {
  text-align: center;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.differentiators {
  padding: 100px 0;
  background: #05070A;
}

.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.diff-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: rgba(0, 174, 239, 0.2);
  transform: translateY(-2px);
}

.diff-card__icon {
  flex-shrink: 0;
}

.diff-card span {
  font-size: 14px;
  color: #C7D0DA;
  font-weight: 500;
}

/* ============================================
   COMPATIBILITY
   ============================================ */
.compatibility {
  padding: 100px 0;
  background: linear-gradient(180deg, #05070A 0%, #071A2B 100%);
}

.compatibility__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.compatibility__group {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.compatibility__group-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00AEEF;
  margin-bottom: 20px;
}

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

.compat-tag {
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.2);
  color: #C7D0DA;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
}

.compatibility__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 59, 59, 0.05);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 13px;
  color: #C7D0DA;
}

/* ============================================
   USE CASES
   ============================================ */
.use-cases {
  padding: 100px 0;
  background: #05070A;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.use-case-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: rgba(0, 174, 239, 0.2);
  transform: translateY(-2px);
}

.use-case-card__icon {
  margin-bottom: 16px;
  color: #00AEEF;
}

.use-case-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* ============================================
   PLANS
   ============================================ */
.plans {
  padding: 100px 0;
  background: linear-gradient(180deg, #05070A 0%, #071A2B 100%);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
}

.plan-card--featured {
  border-color: #00AEEF;
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.15);
}

.plan-card--featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00AEEF;
  color: #05070A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
}

.plan-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}

.plan-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #C7D0DA;
  display: block;
  margin-bottom: 8px;
}

.plan-card__price {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00AEEF;
}

.plan-card__price small {
  display: block;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(199, 208, 218, 0.68);
  font-weight: 600;
}

.plan-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  padding: 0;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #C7D0DA;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-card__features li svg {
  flex-shrink: 0;
}

.plans__note {
  text-align: center;
  font-size: 13px;
  color: rgba(199, 208, 218, 0.5);
  margin-top: 24px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: #05070A;
}

.gallery--featured {
  padding-top: 90px;
  background: linear-gradient(180deg, #05070A 0%, #07111B 52%, #05070A 100%);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 174, 239, 0.1);
  background: #111820;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0;
  transition: all 0.3s ease;
}

.gallery__item:hover {
  border-color: rgba(0, 174, 239, 0.3);
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item--photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0), rgba(5, 7, 10, 0.92));
  pointer-events: none;
}

.gallery__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.gallery__label strong {
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.gallery__label span {
  color: rgba(199, 208, 218, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 174, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item--empty {
  background: #111820;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item--feature {
  background: linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(7, 26, 43, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  cursor: pointer;
}

.gallery__item--feature::before {
  content: '';
  position: absolute;
  inset: 16px 16px auto auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.08);
}

.gallery__item--feature strong {
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.gallery__item--feature span {
  color: rgba(199, 208, 218, 0.78);
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__content {
  width: min(1120px, calc(100vw - 150px));
  display: grid;
  gap: 14px;
}

.gallery-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #FFFFFF;
}

.gallery-modal__header strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

.gallery-modal__header span {
  color: rgba(199, 208, 218, 0.78);
  font-size: 13px;
}

.gallery-modal img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: #05070A;
  border: 1px solid rgba(0, 174, 239, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-modal p {
  color: #C7D0DA;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: #FFFFFF;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.25);
  background: rgba(17, 24, 32, 0.88);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-modal__nav:hover {
  border-color: #00AEEF;
  background: rgba(0, 174, 239, 0.18);
}

.gallery-modal__nav--prev {
  left: 28px;
}

.gallery-modal__nav--next {
  right: 28px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #05070A 0%, #071A2B 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 16px;
  padding: 28px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFD700;
}

.testimonial-card__text {
  font-size: 14px;
  color: #C7D0DA;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 174, 239, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
}

.testimonial-card__author span {
  font-size: 12px;
  color: rgba(199, 208, 218, 0.6);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: #05070A;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 174, 239, 0.2);
}

.faq-item__question {
  width: 100%;
  background: #111820;
  border: none;
  color: #FFFFFF;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: left;
}

.faq-item__chevron {
  transition: transform 0.3s ease;
  color: #00AEEF;
  flex-shrink: 0;
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 14px;
  color: #C7D0DA;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071A2B 0%, #05070A 100%);
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final__text {
  font-size: 16px;
  color: #C7D0DA;
  margin-bottom: 32px;
}

.cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: #05070A;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.contact-form {
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #C7D0DA;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #05070A;
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00AEEF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111820;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact__info-item:hover {
  border-color: rgba(0, 174, 239, 0.2);
}

.contact__info-item strong {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
}

.contact__info-item span {
  color: #C7D0DA;
  font-size: 13px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: #111820;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(17, 24, 32, 0.9);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  color: #00AEEF;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(0, 174, 239, 0.1);
  border-color: #00AEEF;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111820;
  border: 1px solid rgba(25, 214, 127, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  color: #FFFFFF;
  font-size: 14px;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   CONTACT SUCCESS MODAL
   ============================================ */
.contact-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-success.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-success__card {
  background: #111820;
  border: 1px solid rgba(25, 214, 127, 0.2);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.contact-success.active .contact-success__card {
  transform: scale(1);
}

.contact-success__card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  color: #FFFFFF;
  margin: 20px 0 12px;
}

.contact-success__card p {
  font-size: 14px;
  color: #C7D0DA;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #071A2B;
  border-top: 1px solid rgba(0, 174, 239, 0.1);
  padding: 60px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__desc {
  font-size: 14px;
  color: #C7D0DA;
  margin-top: 16px;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #C7D0DA;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #00AEEF;
}

.footer__contact p,
.footer__contact a {
  font-size: 14px;
  color: #C7D0DA;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer__contact a:hover {
  color: #00AEEF;
}

.footer__bottom {
  border-top: 1px solid rgba(0, 174, 239, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(199, 208, 218, 0.5);
}

.footer__disclaimer {
  margin-top: 8px;
  font-size: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes dataLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

.animate-on-scroll:nth-child(7) {
  transition-delay: 0.6s;
}

.animate-on-scroll:nth-child(8) {
  transition-delay: 0.7s;
}

.animate-on-scroll:nth-child(9) {
  transition-delay: 0.8s;
}

.animate-on-scroll:nth-child(10) {
  transition-delay: 0.9s;
}

/* ============================================
   RESPONSIVE - TABLETS (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
  }

  .hero__visual {
    min-height: 300px;
  }

  .solution__cards {
    grid-template-columns: 1fr;
  }

  .dashboard__wrapper {
    grid-template-columns: 1fr;
  }

  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .compatibility__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header__menu,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__title {
    font-size: 23px;
    line-height: 1.18;
    max-width: 100%;
    word-break: break-word;
  }

  .mobile-break {
    display: block;
  }

  .hero__mockup {
    max-width: 320px;
    margin: 28px auto 0;
  }

  .hero__mockup--image {
    display: flex;
    min-height: 360px;
  }

  .hero__product-image {
    width: 100%;
    max-height: 420px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: min(358px, calc(100vw - 32px));
  }

  .hero__badge {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.35;
    letter-spacing: 0.4px;
    padding: 8px 12px;
  }

  .hero__subtitle,
  .hero__text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__buttons .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
  }

  .hero__indicator {
    min-width: 0;
  }

  .hero__indicator span {
    overflow-wrap: anywhere;
  }

  .gallery-modal__content {
    width: calc(100vw - 32px);
  }

  .gallery-modal img {
    max-height: 68vh;
  }

  .gallery-modal__nav {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .gallery-modal__nav--prev {
    left: 24px;
  }

  .gallery-modal__nav--next {
    right: 24px;
  }

  .gallery-modal__close {
    top: 14px;
    right: 14px;
  }

  .problems__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .plans__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentiators__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .dashboard__metrics {
    grid-template-columns: 1fr;
  }

  .resellers__hierarchy {
    flex-direction: column;
  }

  .hierarchy__arrow {
    transform: rotate(90deg);
  }

  .hero__container {
    padding: 90px 16px 40px;
    gap: 40px;
    overflow: hidden;
  }

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

  .problems,
  .solution,
  .features,
  .dashboard,
  .how-it-works,
  .resellers,
  .differentiators,
  .compatibility,
  .use-cases,
  .plans,
  .gallery,
  .testimonials,
  .faq,
  .cta-final,
  .contact {
    padding: 60px 0;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header__container {
    padding: 0 16px;
  }

  .header__logo-text {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .differentiators__grid {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    flex-direction: column;
  }

  .timeline__line {
    display: none;
  }

  .plans__grid {
    grid-template-columns: 1fr;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-2px);
  }

  .hero__title {
    font-size: 21px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__text {
    font-size: 14px;
  }

  .section-title,
  .cta-final__title {
    overflow-wrap: anywhere;
  }

  .cta-final__buttons .btn {
    width: 100%;
    white-space: normal;
  }

  .toast {
    width: calc(100% - 32px);
    padding: 14px 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 22px;
    bottom: 84px;
  }

  .problems__grid,
  .features__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .compatibility__tags {
    gap: 8px;
  }
}
