:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-light: #f8fbff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
  color: var(--text);
  line-height: 1.7;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.section-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.9rem, 4vw, 4.4rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1.25rem;
}

.cta-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-button:hover,
.contact-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.section-services,
.section-plans {
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.plans-cta-bubble {
  padding: 2.4rem 2.2rem;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow);
  text-align: center;
}

.plans-cta-bubble h2 {
  margin: 0.3rem 0 0.8rem;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.plans-cta-bubble p {
  max-width: 680px;
  margin: 0 auto 1.25rem;
  color: var(--text);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.plan-card,
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card h3,
.plan-card h3,
.about-card h3 {
  margin-bottom: 1rem;
}

.plan-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.plan-cta {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.plan-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.plan-cta.large {
  margin-top: 0.2rem;
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.plan-cta.disabled {
  pointer-events: none;
  opacity: 0.65;
  background: rgba(148, 163, 184, 0.15);
  color: var(--muted);
}

.status-note {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}
.plan-card li {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.recommended {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), #ffffff);
  border-color: rgba(37, 99, 235, 0.2);
}

.section-about {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card li {
  margin-bottom: 1rem;
}

.section-order {
  padding-top: 1rem;
}

.order-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section-contact {
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.email-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.email-box a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: center;
  color: var(--muted);
}

.pricing-page {
  padding-top: 3rem;
}

.page-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.plan-detail {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-detail:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.28);
}

.plan-detail.featured {
  border-color: rgba(37, 99, 235, 0.26);
  transform: translateY(-4px);
}

.plan-detail.featured:hover {
  transform: translateY(-10px) scale(1.02);
}

.plan-detail.subscription-plan.compact {
  padding: 1.5rem;
  border-color: rgba(251, 191, 36, 0.35);
}

.plan-detail.vps-plan {
  border-color: rgba(16, 185, 129, 0.35);
}

.service-divider {
  margin: 1.75rem 0 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  text-align: center;
}

.service-divider span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.service-divider p {
  margin: 0;
  color: var(--text);
}

.domain-search-bubble {
  margin-top: 1.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow);
}

.domain-search-bubble.secondary {
  margin-top: 1rem;
  border-color: rgba(16, 185, 129, 0.3);
}

.domain-search-bubble h3 {
  margin-bottom: 0.45rem;
}

.domain-search-bubble p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.domain-search-bubble a {
  color: var(--accent);
  font-weight: 600;
}

.plan-badge {
  display: inline-block;
  padding: 0.38rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recommendation-note {
  margin: 0.7rem 0 0.9rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-note {
  margin: 0 0 1rem;
  color: #f59e0b;
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-summary {
  color: var(--muted);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
}

.plan-list li {
  margin-bottom: 0.7rem;
  color: var(--text);
  position: relative;
  padding-left: 1rem;
}

.plan-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan-list li.crossed {
  color: #f87171;
}

.plan-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: auto;
  padding: 1rem 1.1rem;
  min-height: 168px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.price-label-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  width: 100%;
}

.plan-price-label {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  width: 100%;
}

.price-bubble {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--text);
  font-size: 0.95rem;
}

.sale-note {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #fda4af;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.order-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.full-width-info-bubble {
  margin: 0 auto 2rem;
  padding: 1.15rem 1.4rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow);
}

.full-width-info-bubble p {
  margin: 0;
  color: var(--text);
}

.purchase-disclaimer {
  margin: 1.5rem 0 1.25rem;
  padding: 1.1rem 1.3rem;
  border: 2px solid #f59e0b;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(251, 191, 36, 0.1));
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.support-card {
  margin-top: 1.25rem;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow);
}

.support-card h3 {
  margin-bottom: 0.8rem;
}

.purchase-contact-bubble {
  margin-top: 2rem;
  padding: 2rem 2.2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: var(--shadow);
  text-align: center;
}

.purchase-contact-bubble h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.purchase-contact-bubble p {
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.contact-bubble-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-bubble-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 840px) {
  .about-grid,
  .contact-inner,
  .header-inner {
    display: block;
  }

  .contact-inner {
    text-align: center;
  }

  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
  }
}

@media (max-width: 680px) {
  .card,
  .plan-card,
  .about-card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
