/* ===== SonnetVPN Main Stylesheet ===== */
/* Converted from TailwindCSS + React to vanilla CSS */

:root {
  --bg-color: #000000;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.1);
  --success: #00ff66;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Canvas Background ===== */
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Layout ===== */
.app-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: opacity 0.3s;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  color: #fff;
  text-decoration: none;
}

.logo-text:hover {
  opacity: 0.8;
}

.logo-text span {
  font-weight: 300;
  opacity: 0.7;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.lang-btn {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.5s;
  text-transform: uppercase;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ===== Main Content ===== */
.main-content {
  position: relative;
  z-index: 10;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .main-content {
    padding: 8rem 1rem 0.75rem;
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInZoom 1s ease-out;
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-logo {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.7s;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 12rem;
    height: 12rem;
    margin-bottom: 2.5rem;
  }
}

/* Title with Shimmer */
.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
    margin-bottom: 1.5rem;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, #666 0%, #fff 25%, #fff 50%, #fff 75%, #666 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* ===== Buttons Container ===== */
.buttons-container {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideUp 1s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .buttons-container {
    gap: 2.5rem;
  }
}

.primary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.2;
}

.divider-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, white, transparent);
}

/* Platform Section */
.platform-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* Video Instruction Button - Full Width */
.btn-video-instruction {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.btn-video-instruction:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-video-instruction svg {
  fill: currentColor;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.btn-platform-centered {
  grid-column: span 2;
  max-width: 50%;
  justify-self: center;
}

/* ===== Button Styles ===== */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.95);
}

/* Primary Button */
.btn-primary {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.btn-primary:hover::after {
  opacity: 1;
}

/* Platform Button */
.btn-platform {
  background: rgba(0, 0, 0, 0.2);
  color: #9ca3af;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn-platform:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Button Icons */
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-platform svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 10;
  padding: 1rem 0 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    padding: 1rem 0;
    margin-top: 0.75rem;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #fff;
  filter: drop-shadow(0 0 10px white);
}

/* ===== Modals ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 640px) {
  .modal-overlay {
    padding: 1.5rem;
  }
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 32rem;
  max-height: 95vh;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: blur(0);
}

@media (min-width: 640px) {
  .modal-content {
    border-radius: 1.5rem;
  }
}

.modal-content.wide {
  max-width: 80rem;
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
  }
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@media (min-width: 640px) {
  .modal-title {
    font-size: 1.5rem;
  }
}

.modal-close {
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Modal Body */
.modal-body {
  padding: 1rem 1.5rem;
  overflow-y: auto;
  position: relative;
}

@media (min-width: 640px) {
  .modal-body {
    padding: 1.5rem;
  }
}

.modal-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

/* Modal without title */
.modal-no-title .modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .modal-no-title .modal-close {
    top: 1rem;
    right: 1rem;
  }
}

/* ===== Pricing Modal ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 1rem;
  }
}

@media (min-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card.highlighted {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 0.625rem;
  font-weight: 900;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-badge {
    top: -1rem;
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-header {
    margin-bottom: 2rem;
  }
}

.pricing-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.pricing-old-price {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 0.75rem;
  font-family: monospace;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .pricing-old-price {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-price {
    margin-bottom: 0.75rem;
  }
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

@media (min-width: 768px) {
  .pricing-amount {
    font-size: 3.75rem;
  }
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .pricing-currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

.pricing-savings {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  animation: glowPulse 1.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .pricing-savings {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
  }
}

.pricing-devices {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 255, 102, 0);
    filter: brightness(1);
    transform: scale(1);
    border-color: rgba(0, 255, 102, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
    filter: brightness(1.2);
    transform: scale(1.05);
    border-color: rgba(0, 255, 102, 1);
  }
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-features {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .pricing-feature {
    gap: 0.75rem;
  }
}

.pricing-card:hover .pricing-feature {
  color: #fff;
}

.pricing-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 0.125rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.pricing-feature-icon svg {
  width: 0.625rem;
  height: 0.625rem;
}

@media (min-width: 768px) {
  .pricing-feature-icon svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.pricing-footer {
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.pricing-cta {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .pricing-cta {
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1rem;
  }
}

.pricing-disclaimer {
  font-size: 0.5625rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .pricing-disclaimer {
    font-size: 0.625rem;
  }
}

.pricing-disclaimer button {
  background: none;
  border: none;
  color: #9ca3af;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}

.pricing-disclaimer button:hover {
  color: #fff;
}

/* ===== Install Modal ===== */
.install-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .install-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .install-steps {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.install-step {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .install-step {
    gap: 1.25rem;
  }
}

.install-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .install-step-num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.install-step:hover .install-step-num {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.install-step-text {
  color: #d1d5db;
  padding-top: 0.25rem;
  transition: color 0.3s;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .install-step-text {
    padding-top: 0.5rem;
    font-size: 1rem;
  }
}

.install-step:hover .install-step-text {
  color: #fff;
}

.install-action {
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .install-action {
    padding-top: 1rem;
  }
}

.install-tip {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: rgba(147, 197, 253, 0.9);
  line-height: 1.5;
}

/* Step Links */
.step-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.step-link:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.step-link-green {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.step-link-green:hover {
  color: #93c5fd;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* ===== Contacts Modal ===== */
.contacts-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.contacts-title span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), #fff, rgba(255, 255, 255, 0.6));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite alternate;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacts-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.contacts-item:last-child {
  border-bottom: none;
}

.contacts-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contacts-value a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s;
}

.contacts-value a:hover {
  color: #93c5fd;
}

.contacts-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contacts-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s;
}

.contacts-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== Offer Modal ===== */
.offer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #d1d5db;
  line-height: 1.7;
}

.offer-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.offer-title span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), #fff, rgba(255, 255, 255, 0.6));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite alternate;
}

.offer-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.offer-content p {
  margin: 0;
}

.offer-content a {
  color: #60a5fa;
  text-decoration: none;
}

.offer-content a:hover {
  text-decoration: underline;
}

.offer-content ul {
  list-style: none;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offer-content li::before {
  content: "—";
  margin-right: 0.5rem;
}

.offer-divider {
  margin: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ===== Utility: Hidden by default ===== */
[data-lang-content] {
  display: none !important;
}

span[data-lang-content].active {
  display: inline !important;
}

div[data-lang-content].active {
  display: block !important;
}

.pricing-grid[data-lang-content].active {
  display: grid !important;
}

.hidden {
  display: none !important;
}