:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --bg-dark: #0f172a;
  --bg-light: #1e293b;
  --bg-card: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --success-color: #10b981;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 0;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
  will-change: transform;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 0 80px;
  overflow: hidden;
  gap: 2rem;
}

.hero .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 70%
  );
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(8px) rotate(-1deg);
  }
}

@keyframes pulseBorder {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.15;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes auroraDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-5%, 5%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

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

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

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Pricing Hero Styles */
.pricing-hero {
  position: relative;
  background: var(--bg-dark);
  background-image: 
    /* Subtle noise texture */
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.015) 1px, transparent 0),
    /* Grid pattern */
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 
    20px 20px, /* Noise texture size */
    50px 50px, /* Grid size */
    50px 50px; /* Grid size */
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.pricing-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Subtle dot pattern overlay */
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pricing-hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-scroll {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.page-scroll {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: auto;
  z-index: 1100;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.page-scroll .scroll-indicator {
  opacity: 0.85;
  backdrop-filter: blur(6px);
  background: rgba(15, 23, 42, 0.6);
}

.page-scroll.hidden {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

.scroll-indicator {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  animation: bounceDown 2.4s ease-in-out infinite;
}

.scroll-indicator:hover {
  transform: translateY(4px);
  border-color: rgba(99, 102, 241, 0.7);
  color: var(--text-primary);
}

.scroll-indicator svg {
  pointer-events: none;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  min-width: 170px;
  justify-content: center;
}

.secondary-button:hover {
  border-color: rgba(99, 102, 241, 0.7);
  color: var(--text-primary);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.hero-showcase {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: stretch;
  z-index: 1;
}

.showcase-card {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.55);
  overflow: hidden;
  animation: floatCard 9s ease-in-out infinite;
  backdrop-filter: blur(6px);
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  will-change: transform;
  contain: layout paint;
  text-decoration: none;
  color: inherit;
  border-color: transparent;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  border: 1px solid transparent;
  background: linear-gradient(
      120deg,
      rgba(99, 102, 241, 0.5),
      rgba(236, 72, 153, 0.45)
    )
    border-box;
  mask-composite: exclude;
  pointer-events: none;
  animation: pulseBorder 6s ease-in-out infinite;
  opacity: 0.6;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.6);
}

.showcase-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.showcase-card .showcase-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.showcase-card .showcase-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: block;
}

.showcase-card.available {
  border-color: rgba(16, 185, 129, 0.45);
}

.showcase-card.listed {
  border-color: rgba(129, 140, 248, 0.55);
}

.showcase-card.sold {
  border-color: rgba(248, 113, 113, 0.55);
}

.showcase-card.available:hover {
  border-color: rgba(16, 185, 129, 0.75);
}

.showcase-card.listed:hover {
  border-color: rgba(129, 140, 248, 0.85);
}

.showcase-card.sold:hover {
  border-color: rgba(248, 113, 113, 0.85);
}

.hero-marquee {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  width: 100%;
  padding: 0.85rem 0;
  background: rgba(15, 23, 42, 0.65);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-marquee::before,
.hero-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.hero-marquee::after {
  right: 0;
  transform: rotate(180deg);
}

.hero-marquee::before {
  left: 0;
}

.hero-marquee--top {
  margin: 1rem auto 0.75rem;
  border-radius: 999px;
  max-width: 960px;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding-right: 3rem;
  will-change: transform;
}

.marquee-track span {
  color: var(--text-primary);
}

.hero-aurora {
  position: absolute;
  width: 65%;
  height: 65%;
  top: 8%;
  left: 20%;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(99, 102, 241, 0.55),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(236, 72, 153, 0.45),
      transparent 70%
    );
  filter: blur(100px);
  animation: auroraDrift 18s ease-in-out infinite;
  opacity: 0.85;
  will-change: transform;
}

.hero-aurora.delay {
  animation-delay: 6s;
  top: auto;
  bottom: 5%;
  left: 5%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.4rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
  min-width: 190px;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Domains Section */
.domains-section,
.about-section,
.contact-section,
.footer,
.preview-modal {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.domains-section {
  padding: 80px 0;
  background: var(--bg-dark);
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Ensure all sections use consistent theme backgrounds */
section {
  background: var(--bg-dark);
}

section.domains-section,
section.services-section,
section.insights-section,
section.about-section {
  background: var(--bg-dark);
}

.hosting-banner {
  margin-bottom: 2.5rem;
  background: linear-gradient(
    120deg,
    rgba(99, 102, 241, 0.18),
    rgba(236, 72, 153, 0.15)
  );
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.4);
}

.hosting-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.hosting-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hosting-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.hosting-text {
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hosting-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hosting-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--gradient);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 20px 35px rgba(99, 102, 241, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hosting-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(99, 102, 241, 0.45);
}

.hosting-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.hosting-link svg {
  pointer-events: none;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

/* Domains Grid */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
  contain: layout paint;
}

.domain-card[data-domain-url] {
  cursor: pointer;
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.domain-card:hover:not(.sold) {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.domain-card.sold:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.domain-card:hover::before {
  transform: scaleX(1);
}

.domain-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  word-break: break-all;
}

.domain-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.domain-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge.available {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge.in-progress {
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.badge.flippa {
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-color);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge.sold {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge.in-progress {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.domain-card.sold {
  opacity: 0.7;
}

/* Insights Section */
.insights-section {
  padding: 80px 0;
  background: var(--bg-dark);
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.insight-card {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 1.75rem;
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insight-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
}

.insight-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.insight-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.insight-card p {
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.insight-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.insight-link::after {
  content: "↗";
  font-size: 0.9rem;
}
.domain-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.domain-link {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.domain-link.preview-btn {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--secondary-color);
}

.domain-link.preview-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(99, 102, 241, 0.3) 100%
  );
  border-color: var(--secondary-color);
}

.domain-link:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.domain-link.flippa-link {
  background: transparent;
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--text-primary);
}

.domain-link.flippa-link:hover {
  color: var(--text-primary);
  background: var(--gradient);
  border-color: transparent;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#submit-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

.spinner-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

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

@keyframes dash {
  0% {
    stroke-dashoffset: 50;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -50;
  }
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  overflow: visible;
}

.services-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  max-width: 100%;
  width: 100%;
}

.service-package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
  overflow: visible;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.service-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
}

.service-package-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
  transition: all 0.3s ease;
}

.service-package-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.service-package-card:hover::after {
  height: 4px;
  background: var(--gradient);
}

.service-package-card.package-popular {
  border: 3px solid var(--primary-color);
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.08) 0%,
    var(--bg-card) 25%
  );
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.service-package-card.package-popular::after {
  height: 5px;
  background: var(--gradient);
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  z-index: 10;
}

.package-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.service-package-card.package-popular .package-name {
  margin-top: 0.75rem;
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.package-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 0.625rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-weight: bold;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-now-button {
  width: 100%;
  margin-top: 2rem;
  padding: 1.125rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  letter-spacing: 0.01em;
}

.buy-now-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
}

.request-quote-button {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.request-quote-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.services-contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.services-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--text-primary);
}

.services-form-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.services-contact-form {
  margin-top: 2rem;
}

.services-contact-form .form-group {
  margin-bottom: 1.5rem;
}

.services-contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.services-contact-form .form-group input,
.services-contact-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.services-contact-form .form-group input:focus,
.services-contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .domain-links {
    flex-direction: column;
  }

  .domain-link {
    min-width: 100%;
  }

  .stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .contact-content {
    padding: 0 1rem;
  }

  .services-packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-package-card {
    padding: 1.5rem;
  }

  .services-contact-wrapper {
    padding-top: 2rem;
  }

  .preview-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .preview-modal-header {
    padding: 1rem 1.5rem;
  }

  .preview-domain-name {
    font-size: 1rem;
  }

  .preview-modal-body {
    min-height: 400px;
  }

  .preview-iframe {
    min-height: 400px;
  }

  .preview-modal-footer {
    padding: 1rem;
  }
}

/* Pricing Comparison Table */
.comparison-table-wrapper {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table-container {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
}

.comparison-table th {
  padding: 1.75rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  font-size: 1.05rem;
}

.comparison-table th.comparison-feature-col {
  width: 40%;
}

.comparison-table th.comparison-plan-col {
  text-align: center;
  width: 20%;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
}

.comparison-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.08);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-feature-name {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-feature-check {
  text-align: center;
  font-size: 1.5rem;
  color: var(--success-color);
  font-weight: bold;
}

/* Custom Build Configurator */
.custom-build-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.configurator-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.configurator-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.base-builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.base-build-card {
  position: relative;
}

.base-build-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.base-build-label {
  display: block;
  padding: 1.5rem;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.base-build-label:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
}

.base-build-radio:checked + .base-build-label {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.base-build-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.base-build-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.base-build-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.page-count-selector {
  max-width: 500px;
}

.page-count-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

#page-count-display {
  color: var(--primary-color);
  font-weight: 700;
}

.page-count-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-dark);
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 0.5rem;
}

.page-count-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.page-count-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.page-count-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

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

.addon-card {
  position: relative;
}

.addon-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-label {
  display: block;
  padding: 1.25rem;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addon-label:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
}

.addon-checkbox:checked + .addon-label {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.addon-name {
  font-weight: 600;
  color: var(--text-primary);
}

.addon-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.addon-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.configurator-summary {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid var(--primary-color);
}

.price-summary {
  margin-bottom: 2rem;
}

.price-breakdown {
  margin-bottom: 1.5rem;
}

.price-breakdown-empty {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.price-breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.price-breakdown-separator {
  height: 1px;
  background: var(--border-color);
  margin: 0.75rem 0;
  border: none;
}

.price-breakdown-item.price-breakdown-total {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.price-breakdown-item.price-breakdown-total strong {
  font-weight: 700;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 2px solid var(--primary-color);
}

.price-total-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.price-total-amount {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.checkout-button {
  width: 100%;
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
}

.checkout-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.checkout-button:disabled:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Loading states for checkout buttons */
.buy-now-button:disabled,
.checkout-button:disabled {
  position: relative;
  color: transparent;
}

.buy-now-button:disabled::after,
.checkout-button:disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Custom Build Badge for Homepage */
.custom-build-hero-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* Custom Build Hero Section - Prominent Display */
.custom-build-hero-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  border-top: 2px solid rgba(99, 102, 241, 0.3);
  border-bottom: 2px solid rgba(99, 102, 241, 0.3);
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.custom-build-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.custom-build-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.custom-build-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
  }
}

.custom-build-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Enhanced configurator section */
#custom-build-configurator-section {
  margin-top: -2rem;
  padding-bottom: 4rem;
}

/* Domains CTA Section */
.domains-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.domains-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.domains-cta-content .section-title {
  margin-bottom: 1rem;
}

.domains-cta-content .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Responsive styles for configurator */
@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

  .base-builds-grid {
    grid-template-columns: 1fr;
  }

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

  .configurator-section {
    padding: 1.5rem;
  }

  .price-total {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .price-total-amount {
    font-size: 1.75rem;
  }

  .custom-build-hero-section {
    padding: 3rem 0;
  }

  .custom-build-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .custom-build-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-social-proof {
    gap: 2rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }

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

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-proof-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.social-proof-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge svg {
  color: var(--success-color);
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author-title {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Urgency & Bonus Elements */
.urgency-banner {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(99, 102, 241, 0.2));
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: pulseUrgent 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

@keyframes pulseUrgent {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.7);
  }
}

.bonus-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: pulseBonus 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

@keyframes pulseBonus {
  0%, 100% {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  }
  50% {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  }
}

.bonus-icon {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.urgency-text {
  animation: blink 2s ease-in-out infinite;
}

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

/* Preview Modal */
.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  contain: layout paint style;
}

.preview-modal.active {
  opacity: 1;
  visibility: visible;
}

.preview-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(5px);
}

.preview-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.8);
}

.preview-modal.active .preview-modal-content {
  transform: scale(1);
}

.preview-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.preview-domain-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.preview-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-close-btn:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.preview-modal-body {
  position: relative;
  flex: 1;
  min-height: 500px;
  background: var(--bg-dark);
  overflow: hidden;
}

.preview-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  background: var(--bg-dark);
}

.preview-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--text-secondary);
  gap: 1rem;
}

.preview-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preview-modal-footer {
  padding: 1rem 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
  display: flex;
  justify-content: center;
}

.preview-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.preview-visit-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-marquee .marquee-track,
  .hero-aurora,
  .showcase-card,
  .domain-card,
  .preview-spinner,
  .spinner,
  .spinner-path {
    animation: none !important;
  }

  .hero-marquee {
    overflow-x: auto;
  }
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-dark);
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
}

/* Exit Intent Popup */
.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-intent-modal.active {
  opacity: 1;
  visibility: visible;
}

.exit-intent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.exit-intent-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.exit-intent-modal.active .exit-intent-content {
  transform: scale(1);
}

.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 10;
}

.exit-intent-close:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.exit-intent-body {
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.exit-intent-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.exit-intent-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exit-intent-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.exit-intent-text strong {
  color: var(--success-color);
  font-size: 1.4rem;
}

.exit-intent-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.exit-intent-subtext strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 6px;
  display: inline-block;
  margin: 0 0.25rem;
}

.exit-intent-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.exit-intent-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.exit-intent-dismiss {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.exit-intent-dismiss:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .exit-intent-content {
    width: 95%;
    max-width: none;
  }

  .exit-intent-body {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .exit-intent-title {
    font-size: 1.5rem;
  }

  .exit-intent-text {
    font-size: 1.1rem;
  }

  .exit-intent-cta {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Social Proof Badges */
.social-proof-badges-section {
  padding: 2rem 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.social-proof-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.proof-badge-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.proof-badge-text {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .social-proof-badges {
    gap: 1.5rem;
  }

  .proof-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .proof-badge-text {
    font-size: 0.9rem;
  }
}

/* How It Works / Process Timeline */
.how-it-works-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  z-index: 2;
}

.process-step-content {
  max-width: 250px;
  margin: 0 auto;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-step-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .process-step-title {
    font-size: 1.1rem;
  }

  .process-step-description {
    font-size: 0.9rem;
  }
}

/* Case Studies Section */
.case-studies-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.case-study-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.case-study-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-type {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.case-study-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.case-study-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.case-study-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success-color);
}

.case-study-testimonial {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Video Testimonials Section */
.video-testimonials-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

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

.video-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.video-play-button {
  position: absolute;
  z-index: 2;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-play-button {
  transform: scale(1.1);
}

.video-testimonial-info {
  padding: 1.5rem;
  text-align: center;
}

.video-testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.video-testimonial-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .case-studies-grid,
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Real-time Notifications */
.realtime-notifications-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gradient);
  color: white;
  padding: 0.75rem 0;
  z-index: 999;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.realtime-notifications-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-icon {
  font-size: 1.1rem;
}

.notification-text strong {
  font-weight: 700;
}

/* Recent Sales Notification */
.recent-sales-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recent-sales-notification.active {
  opacity: 1;
  transform: translateY(0);
}

.notification-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notification-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.notification-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .recent-sales-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

/* Guarantee Section */
.guarantee-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.guarantee-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.guarantee-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.guarantee-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.guarantee-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.guarantee-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}

.guarantee-detail-item svg {
  color: var(--success-color);
  flex-shrink: 0;
}

/* Process Transparency Section */
.process-transparency-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.transparency-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.transparency-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.transparency-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.transparency-day {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.transparency-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.transparency-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .transparency-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .transparency-timeline {
    grid-template-columns: 1fr;
  }
}

/* Installment Payment Option */
.installment-option {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.installment-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.installment-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.installment-price {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--success-color);
  font-weight: 600;
}

/* Competitor Comparison */
.competitor-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.comparison-card:first-child {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

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

.comparison-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.comparison-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-feature:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .competitor-comparison {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Gallery */
.portfolio-gallery-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-label {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
  }
}
