/* 
  Hostingcell Live IP - Premium Dark Theme CSS 
  Typography: Inter
*/

:root {
  /* Color Palette */
  --bg-deep: #0a0a0c;
  --bg-surface: #121216;
  --bg-card: rgba(20, 20, 25, 0.6);
  --bg-card-hover: rgba(30, 30, 38, 0.8);

  --text-main: #ffffff;
  --text-muted: #a0a0ab;
  --text-accent: #e2e2ec;

  --accent-primary: #3b82f6;
  /* Vibrant Blue */
  --accent-secondary: #8b5cf6;
  /* Vibrant Purple */
  --accent-glow: rgba(59, 130, 246, 0.5);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.15);

  /* Spacing & Utilities */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition-fast: 0.2s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s infinite alternate ease-in-out;
}

.glow-1 {
  top: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
}

.glow-2 {
  top: 40%;
  right: -10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography base */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: padding var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  width: 100%;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.full-width {
  width: 100%;
}

.nav-cta {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}


/* Hero Section */
.hero {
  padding: 12rem 0 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-accent);
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.badge-icon {
  color: #10b981;
  font-weight: bold;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  transform: translateY(20px);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  transform: translateY(20px);
}


/* Plans Section */
.plans-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform var(--transition-slow), background var(--transition-slow), border-color var(--transition-fast);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: height var(--transition-slow);
}

.pricing-card:hover .card-glow {
  height: 100%;
  opacity: 0.03;
}

.card-glow.primary {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.pricing-card:hover .card-glow.primary {
  height: 100%;
  opacity: 0.08;
}


/* Popular Badge */
.pricing-card.popular {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.05);
  transform: scale(1.02);
  z-index: 1;
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Content */
.card-header {
  position: relative;
  z-index: 2;
}

.tier-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.card-features {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.card-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check {
  color: var(--text-muted);
  font-size: 0.875rem;
  opacity: 0.5;
}

.check.gradient {
  color: #c084fc;
  opacity: 1;
}

.card-action {
  position: relative;
  z-index: 2;
  margin-top: auto;
}


/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  background: rgba(10, 10, 12, 0.5);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  max-width: 200px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}


/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }
}

/* =========================================================================
   New Premium Sections
   ========================================================================= */

/* Premium Stats Section */
.premium-stats-section {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(30, 30, 40, 0.4) 50%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.premium-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDIwaDQweiIvPgo8cGF0aCBkPSJNMjAgMHY0MHoiLz4KPC9zdmc+') center/40px 40px;
  opacity: 0.02;
  pointer-events: none;
}

.stats-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-basis: 22%;
  min-width: 250px;
}

.stat-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.stat-icon {
  font-size: 1.8rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 2px solid var(--accent-primary);
  opacity: 0;
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; border-width: 0; }
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-left: 2px;
  -webkit-text-fill-color: var(--accent-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .stat-box { flex-basis: 45%; }
}

@media (max-width: 600px) {
  .stat-box { flex-basis: 100%; justify-content: flex-start; }
}

/* Why Choose Us Section */
.why-us-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

/* Visual Side */
.why-us-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-server-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 450px;
  perspective: 1000px;
  animation: float-slow 8s infinite alternate ease-in-out;
}

@keyframes float-slow {
  0% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
  100% { transform: translateY(-20px) rotateX(-5deg) rotateY(10deg); }
}

.glass-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 380px;
  background: rgba(20, 20, 30, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2rem 1.5rem;
  z-index: 2;
}

.server-node {
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.server-node::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
  margin-right: auto;
}

.server-node::after {
  content: '';
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.server-node.active {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(0,0,0,0.4));
}

.server-node.active::before {
  background: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 20px #10b981;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.connection-line {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
  backdrop-filter: blur(10px);
}

.security-badge {
  top: 15%;
  left: -10%;
  animation: float-offset 6s infinite alternate ease-in-out;
}

.speed-badge {
  bottom: 20%;
  right: -5%;
  animation: float-offset 7s infinite alternate-reverse ease-in-out;
}

@keyframes float-offset {
  0% { transform: translateY(0); }
  100% { transform: translateY(15px); }
}

/* Content Side */
.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform var(--transition-fast);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.benefit-item:hover .benefit-icon-box::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 1.5s ease;
}

@keyframes shine {
  100% { left: 200%; }
}

.benefit-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.benefit-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-accent);
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-us-visual {
    height: 400px;
    order: -1;
  }
  
  .floating-badge {
    transform: scale(0.9);
  }
}

/* Core Features Section */
.core-features-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.core-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(30, 30, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =========================================================================
   Product Page Styles
   ========================================================================= */

.product-page-body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-split {
  display: flex;
  height: 100vh;
  padding-top: 5rem;
  /* Offset for navbar */
}

/* Left Visual Side */
.product-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(30, 30, 40, 0.8) 0%, var(--bg-deep) 100%);
  border-right: 1px solid var(--border-color);
}

.visual-wrapper {
  position: relative;
  width: 80%;
  max-width: 600px;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9) contrast(1.1);
}

.visual-overlay {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.visual-overlay h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.visual-overlay p {
  color: var(--text-muted);
}

/* Right Config Side */
.product-config {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  overflow-y: auto;
}

.config-container {
  width: 100%;
  max-width: 500px;
}

.config-header {
  margin-bottom: 3rem;
}

.config-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.config-header p {
  color: var(--text-muted);
}

.config-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.section-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Segmented Custom Radio Buttons */
.tier-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-option {
  position: relative;
  cursor: pointer;
}

.tier-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.tier-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.tier-option input:checked~.tier-content {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.tier-option:hover .tier-content {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
}

.tier-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.tier-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* Custom Select Dropdown */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.custom-select option {
  background: var(--bg-surface);
  color: var(--text-main);
}

.custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Order Summary */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.price-display {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.summary-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Responsive Product Page */
@media (max-width: 992px) {
  .product-page-body {
    height: auto;
    overflow: auto;
  }

  .product-split {
    flex-direction: column;
    height: auto;
  }

  .product-visual {
    padding: 4rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .visual-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: center;
  }

  .product-config {
    padding: 4rem 2rem;
  }
}