/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0c74d0;
  --primary-dark: #032e56;
  --secondary-color: #094475;
  --accent-color: #629bd6;
  --text-primary: #f1f2f3;
  --text-secondary: #adcbeb;
  --text-light: #ffffff;
  --text-dark: #010204;
  --text-muted: rgba(173, 203, 235, 0.55);
  --bg-primary: #010204;
  --bg-secondary: #041229;
  --bg-dark: #020b17;
  --bg-card: #032441;
  --border-color: #0b2f4d;
  --shadow: 0 10px 30px rgba(1, 2, 4, 0.6);
  --shadow-lg: 0 25px 60px rgba(1, 2, 4, 0.8);
  --shadow-red: 0 8px 30px rgba(12, 116, 208, 0.35);
  --gradient-primary: linear-gradient(135deg, #0c74d0, #032e56);
  --gradient-dark: linear-gradient(135deg, #010204, #032e56);
  --gradient-bg: linear-gradient(135deg, #010204 0%, #041937 100%);
  --gradient-red-glow: radial-gradient(
    circle,
    rgba(12, 116, 208, 0.15) 0%,
    transparent 70%
  );
  --status-success: #7fd6ff;
  --status-error: #0e589c;
  --status-info: #adcbeb;
  --promo-height: 52px;
  --navbar-height: 70px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-anchor {
  display: block;
  position: relative;
  top: -120px;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.with-promo {
  top: var(--promo-height);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.3s ease;
}

.dropdown-toggle:focus-visible {
  outline: 2px solid rgba(12, 116, 208, 0.5);
  outline-offset: 6px;
  border-radius: 6px;
}

.dropdown-caret {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.nav-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.nav-dropdown.open .dropdown-toggle {
  color: var(--primary-color);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: clamp(520px, 48vw, 720px);
  background: rgba(3, 18, 41, 0.98);
  border: 1px solid rgba(98, 155, 214, 0.35);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 40px 80px rgba(1, 2, 4, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1200;
}

.dropdown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top,
    rgba(12, 116, 208, 0.25),
    transparent 60%
  );
  pointer-events: none;
}

.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(3, 36, 65, 0.6);
  border: 1px solid rgba(98, 155, 214, 0.2);
  transition: all 0.25s ease;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.dropdown-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(12, 116, 208, 0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.dropdown-card:hover,
.dropdown-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.dropdown-card:hover::after,
.dropdown-card:focus-visible::after {
  opacity: 1;
}

.dropdown-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.dropdown-card-icon i {
  color: var(--text-light);
  font-size: 1.1rem;
}

.dropdown-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.dropdown-card-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
}

.dropdown-card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dropdown-card > i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-left: auto;
  align-self: center;
}

.btn-tienda {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-panel {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-panel:hover {
  background: rgba(12, 116, 208, 0.1);
}

.btn-tienda:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-tienda::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--gradient-bg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(12, 116, 208, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-discord {
  background: linear-gradient(135deg, #040b1f, #071b36);
}

.hero-web {
  background: linear-gradient(135deg, #041229, #062540);
}

.hero-custom {
  background: linear-gradient(135deg, #010204, #051d36);
}

.hero-services {
  background: linear-gradient(135deg, #010204, #032441);
}

.hero-discord::after,
.hero-web::after,
.hero-custom::after,
.hero-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(12, 116, 208, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-container:has(.hero-content:only-child) {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.hero-content:only-child {
  grid-column: 1 / -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(12, 116, 208, 0.15);
  border: 1px solid rgba(12, 116, 208, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 1.5rem;
}

.promo-banner {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  background: rgba(12, 116, 208, 0.15);
  border: 1px solid rgba(12, 116, 208, 0.4);
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

.global-promo {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: linear-gradient(90deg, rgba(12, 116, 208, 0.4), rgba(3, 46, 86, 0.85));
  border-bottom: 1px solid rgba(12, 116, 208, 0.55);
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.2px;
}

body.has-global-promo {
  padding-top: calc(var(--promo-height) + var(--navbar-height));
}

.promo-banner {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  background: rgba(12, 116, 208, 0.15);
  border: 1px solid rgba(12, 116, 208, 0.4);
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-highlight {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-highlight i {
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn[aria-disabled="true"],
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Minecraft Server Preview */
.minecraft-server-preview {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.server-window {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.server-window:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.window-header {
  background: var(--bg-secondary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.close {
  background: #032e56;
}

.control.minimize {
  background: #0c74d0;
}

.control.maximize {
  background: #629bd6;
}

.window-title {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.server-content {
  padding: 20px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.4;
}

.server-line {
  color: var(--text-secondary);
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.server-line:nth-child(1) {
  animation-delay: 0.5s;
}
.server-line:nth-child(2) {
  animation-delay: 1s;
}
.server-line:nth-child(3) {
  animation-delay: 1.5s;
}
.server-line:nth-child(4) {
  animation-delay: 2s;
}
.server-line:nth-child(5) {
  animation-delay: 2.5s;
}
.server-line:nth-child(6) {
  animation-delay: 3s;
}

.server-line.active {
  color: var(--accent-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Confirmation Page */
.confirmation {
  padding: 100px 0 80px;
  background: var(--bg-secondary);
  position: relative;
}

.confirmation .feature-card {
  height: 100%;
}

.confirmation-note {
  margin: 2.5rem auto 0;
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow);
  color: var(--text-secondary);
}

.confirmation-note i {
  color: var(--primary-color);
  margin-top: 2px;
}

.confirmation-note strong {
  color: var(--text-primary);
}

/* Checkout Page */
.checkout {
  padding: 100px 0 80px;
  background: var(--bg-primary);
}

.checkout-hero-support {
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 1rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.summary-card h3,
.checkout-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.summary-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-secondary);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--text-primary);
}

.summary-value {
  font-weight: 700;
  color: var(--text-light);
}

.summary-price-block {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.summary-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price-original {
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-right: 0.6rem;
  font-weight: 500;
}

.price-new {
  color: var(--text-light);
  font-weight: 800;
}

.summary-per-month {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.summary-discount {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.summary-meta {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.inline-help {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-primary);
  font: inherit;
}

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

.tos-box {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(12, 116, 208, 0.4);
  background: rgba(12, 116, 208, 0.08);
  border-radius: 14px;
}

.tos-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.tos-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #0c74d0;
  margin-top: 2px;
}

.tos-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.pay-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-pay {
  flex: 1 1 240px;
  justify-content: center;
}

.note-card {
  margin-top: 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.note-card i {
  color: var(--primary-color);
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(12, 116, 208, 0.14);
  color: var(--text-primary);
  border: 1px solid rgba(12, 116, 208, 0.4);
  border-radius: 10px;
  font-weight: 600;
  margin-right: 8px;
  margin-top: 8px;
}

.badge-neutral {
  background: rgba(173, 203, 235, 0.08);
  border-color: rgba(173, 203, 235, 0.25);
  color: var(--text-secondary);
}

.error-banner {
  margin-top: 1rem;
  background: rgba(14, 88, 156, 0.15);
  border: 1px solid rgba(14, 88, 156, 0.5);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-primary);
  display: none;
}

.error-banner.visible {
  display: block;
}

.checkout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.light-text {
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--bg-primary);
}

.pricing-header-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 116, 208, 0.15);
  border: 1px solid rgba(12, 116, 208, 0.4);
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 1rem;
}

.billing-toggle {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.billing-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.billing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.billing-option {
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-option:hover {
  color: var(--text-light);
  border-color: var(--primary-color);
}

.billing-option.active {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.tier-note {
  margin: 1.5rem auto 0;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tier-note strong {
  color: var(--text-light);
}

.tier-note-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-note-title i {
  color: var(--primary-color);
}

.tier-toggle {
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.tier-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-label i {
  color: var(--primary-color);
}

.tier-options {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.4rem;
}

.tier-option {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  min-width: 140px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tier-option:hover {
  color: var(--text-light);
}

.tier-option.active {
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(12, 116, 208, 0.3);
}

.tier-option.active[data-tier="standard"] {
  background: linear-gradient(120deg, #0c74d0, #629bd6);
}

.tier-option.active[data-tier="extreme"] {
  background: linear-gradient(120deg, #032e56, #0c74d0);
}

@media (max-width: 640px) {
  .tier-toggle {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-options {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tier-option {
    width: 100%;
    text-align: center;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-grid.single-plan {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.pricing-cta {
  margin-top: 2rem;
  text-align: center;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.pricing-card.placeholder {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(12, 116, 208, 0.06)
  );
}

.plan-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.placeholder-pill {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(12, 116, 208, 0.12);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
}

.placeholder-copy {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.placeholder-specs {
  gap: 0.65rem;
}

.placeholder-specs li {
  padding: 0;
}

.placeholder-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.08)
  );
  animation: placeholderShimmer 1.8s ease-in-out infinite;
}

@keyframes placeholderShimmer {
  0% {
    opacity: 0.3;
    transform: translateX(-8%);
  }

  50% {
    opacity: 0.85;
  }

  100% {
    opacity: 0.3;
    transform: translateX(8%);
  }
}

.placeholder-btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.plan-price-current {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-price-current [data-price-value] {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-light);
}

.plan-price-current [data-period-label] {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.plan-price-total {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.plan-price-original {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.plan-price-original.no-discount {
  text-decoration: none;
}

.plan-price-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Quote Builder */
.quote-builder {
  padding: 80px 0;
  background: var(--bg-secondary);
  margin-top: -20px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
}

.quote-controls {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-control-value {
  color: var(--primary-color);
  font-weight: 600;
}

.quote-control input[type="range"] {
  width: 100%;
  accent-color: var(--primary-color);
}

.quote-summary {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--primary-color);
  padding: 2rem;
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
}

.quote-summary-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-summary-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.quote-summary-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.quote-summary-detail {
  color: var(--text-secondary);
  font-size: 1rem;
}

.quote-summary-discount {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
}

.quote-includes {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-include {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.quote-include i {
  color: var(--primary-color);
}

.quote-summary .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.plan-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.plan-specs li i {
  color: var(--primary-color);
}

.plan-cta {
  margin-top: auto;
}

.disclaimer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Technology Section */
.technology {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.technology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.tech-card:hover::before {
  transform: translateX(0);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.tech-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.tech-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tech-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Support Section */
.support {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.support-features {
  margin-top: 2rem;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.support-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.support-feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 4px;
}

.support-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.support-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(12, 116, 208, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Overview Section */
.overview {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.overview-card:hover::before {
  transform: translateX(0);
}

.overview-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.overview-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.overview-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.overview-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Quick Contact Section */
.quick-contact {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.quick-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(12, 116, 208, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.quick-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.quick-contact-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Additional Services Section */
.additional-services {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.additional-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(12, 116, 208, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo .logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* Contact Features */
.contact-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.contact-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-feature span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Additional Contact Section */
.additional-contact {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.additional-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.method-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.method-card:hover::before {
  transform: translateX(0);
}

.method-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.method-icon i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.method-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.method-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.method-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.social-links-inline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link-inline {
  width: 45px;
  height: 45px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link-inline:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

/* Business Hours Section */
.business-hours {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.business-hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hours-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.hours-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.hours-item.emergency {
  background: linear-gradient(
    135deg,
    rgba(12, 116, 208, 0.1) 0%,
    transparent 100%
  );
  border-color: var(--primary-color);
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.hours-time {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hours-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hours-info {
  flex: 1;
}

/* FAQ Quick Section */
.faq-quick {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.faq-quick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.quick-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-faq-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.quick-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.quick-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.quick-faq-item:hover::before {
  transform: translateX(0);
}

.faq-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.faq-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.quick-faq-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.quick-faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Support Text and Image */
.support-text {
  flex: 1;
}

.support-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Support Channels Section */
.support-channels {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.support-channels::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.channel-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.channel-card:hover::before {
  transform: translateX(0);
}

.channel-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.channel-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.channel-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.channel-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.channel-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(12, 116, 208, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-card);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Tech Specs Section */
.tech-specs {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.tech-specs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.spec-category {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.spec-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.spec-category:hover::before {
  transform: translateX(0);
}

.spec-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spec-title i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.spec-list li:last-child {
  border-bottom: none;
}

/* Security Section */
.security {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-text {
  flex: 1;
}

.security-features {
  margin-top: 2rem;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.security-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.security-feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 4px;
}

.security-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.security-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.security-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Review Form Section */
.review-form-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.review-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(12, 116, 208, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.review-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.review-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 116, 208, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.rating-input {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-direction: row-reverse; /* Invertir orden para que CSS ~ funcione correctamente */
}

.rating-input input[type="radio"] {
  display: none;
}

.star-label {
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Estilo base para todas las estrellas */
.star-label {
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Cuando haces hover sobre una estrella, colorea esa y todas las anteriores (visualmente a la izquierda) */
.star-label:hover,
.star-label:hover ~ .star-label {
  color: var(--primary-color);
}

/* Cuando un radio está seleccionado, colorea esa estrella y todas las anteriores */
.rating-input input[type="radio"]:checked ~ .star-label {
  color: var(--primary-color);
}

/* La estrella asociada al radio seleccionado también debe estar coloreada */
.rating-input input[type="radio"]:checked + .star-label {
  color: var(--primary-color);
}

/* Reviews Display Section */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.review-card:hover::before {
  transform: translateX(0);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
}

.review-rating .star {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.review-rating .star.empty {
  color: var(--text-muted);
  opacity: 0.4;
}

.review-rating .star.filled {
  color: var(--primary-color);
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
}

.review-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

.review-message.success {
  background: rgba(127, 214, 255, 0.08);
  border: 1px solid rgba(127, 214, 255, 0.35);
  color: var(--status-success);
}

.review-message.error {
  background: rgba(14, 88, 156, 0.12);
  border: 1px solid rgba(14, 88, 156, 0.4);
  color: var(--status-error);
}

.review-message.info {
  background: rgba(173, 203, 235, 0.12);
  border: 1px solid rgba(173, 203, 235, 0.35);
  color: var(--status-info);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-reviews {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.no-reviews i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* En Desarrollo Section */
.development-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  min-height: 60vh;
}

.development-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(12, 116, 208, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.development-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.development-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  animation: loadingBar 3s ease-in-out infinite;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.development-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.development-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.development-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.development-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(12, 116, 208, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(12, 116, 208, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(12, 116, 208, 0.1);
  border-color: rgba(12, 116, 208, 0.3);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.development-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.development-note i {
  color: var(--primary-color);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-hub,
.custom-use-cases,
.infrastructure-highlight,
.infrastructure-summary {
  padding: 80px 0;
}

.service-hub,
.custom-use-cases {
  background: var(--bg-secondary);
}

.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.hub-card {
  background: rgba(3, 36, 65, 0.8);
  border: 1px solid rgba(98, 155, 214, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
}

.hub-card.highlight {
  border-color: rgba(12, 116, 208, 0.6);
  background: rgba(3, 36, 65, 0.95);
}

.hub-card h3 {
  margin-bottom: 0.3rem;
}

.hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
}

.hub-icon i {
  color: var(--text-light);
  font-size: 1.2rem;
}

.hub-card > i {
  margin-left: auto;
  color: var(--primary-color);
}

.infrastructure-highlight {
  background: var(--bg-card);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.highlight-grid ul {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.highlight-card {
  background: rgba(3, 36, 65, 0.9);
  border: 1px solid rgba(98, 155, 214, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.link-inline {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.link-inline:hover {
  color: var(--text-light);
}

.custom-use-cases .use-case-selector {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.use-case-option {
  flex: 1;
  min-width: 180px;
  border: 1px solid rgba(98, 155, 214, 0.25);
  border-radius: 14px;
  background: rgba(3, 36, 65, 0.6);
  color: var(--text-secondary);
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.use-case-option.active {
  color: var(--text-light);
  border-color: var(--primary-color);
  background: rgba(12, 116, 208, 0.2);
  box-shadow: var(--shadow-red);
}

.use-case-panels {
  margin-top: 2.5rem;
}

.use-case-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.use-case-panel.active {
  display: block;
}

.use-case-panel h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.use-case-panel ul {
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.spec-listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.spec-item {
  background: rgba(3, 36, 65, 0.75);
  border: 1px solid rgba(98, 155, 214, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .use-case-selector {
    flex-direction: column;
  }

  .use-case-option {
    width: 100%;
  }

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

  .hub-card {
    flex-direction: row;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    padding: 1.25rem;
  }

  .nav-dropdown.open .dropdown-panel {
    transform: none;
    display: block;
  }

  .nav-dropdown:not(.open) .dropdown-panel {
    display: none;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-highlights {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    padding: 1.25rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    text-align: center;
  }

  .quote-summary .btn {
    align-self: center;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quick-contact-content {
    flex-direction: column;
    text-align: center;
  }

  .quick-contact-actions {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .hours-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours-stats {
    grid-template-columns: 1fr;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }

  .channels-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-form {
    padding: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-card,
  .pricing-card,
  .contact-card {
    padding: 1.5rem;
  }

  .development-section {
    padding: 60px 0;
  }

  .development-content {
    padding: 2.5rem 1.5rem;
  }

  .development-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .development-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .development-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .development-features {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}
