:root {
  --bg: #040404;
  --text: #f3edff;
  --muted: #ddd2f5;
  --primary: #8a2be2;
  --primary-2: #b026ff;
  --border: rgba(176, 38, 255, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  --radius: 18px;
}

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

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(176, 38, 255, 0.25), transparent 32%),
    radial-gradient(circle at 15% 28%, rgba(138, 43, 226, 0.14), transparent 38%),
    radial-gradient(circle at 50% 110%, rgba(176, 38, 255, 0.12), transparent 42%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  color: #f8f2ff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

section {
  padding: 92px 0;
}

/* Navbar */
#navbar,
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  background: rgba(10, 3, 20, 0.82);
  border-bottom: 1px solid rgba(176, 38, 255, 0.14);
  box-shadow: 0 1px 0 rgba(176, 38, 255, 0.1), 0 12px 36px rgba(0, 0, 0, 0.32);
  transition: background 0.3s ease;
}

.nav-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-wrap--nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  max-width: min(420px, 58vw);
}

.brand-logo-wrap--nav .brand-logo {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo-wrap--footer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 52px;
  max-width: min(380px, 85%);
}

.brand-logo-wrap--footer .brand-logo {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(225, 210, 250, 0.68);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.925rem;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.9rem;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: #f0e6ff;
  background: rgba(176, 38, 255, 0.12);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: 136px 0 104px;
  background:
    linear-gradient(145deg, rgba(35, 8, 52, 0.42) 0%, rgba(20, 6, 31, 0.52) 38%, rgba(6, 3, 7, 0.66) 100%),
    url("hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero h1,
.hero p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-container {
  max-width: 840px;
  margin: 0 auto;
  width: min(840px, 92%);
}

.hero p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #f0eaff;
  font-size: 1.12rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 0 auto 1.8rem;
}

.hero-seo-copy {
  max-width: 900px;
  margin: 0.35rem auto 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(176, 38, 255, 0.35);
  background: rgba(20, 10, 29, 0.62);
  color: #f6efff;
  font-size: 0.98rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.hero-seo-copy a {
  color: inherit;
  text-decoration-color: rgba(243, 237, 255, 0.55);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero-seo-copy a:hover {
  color: #ff6bd6;
  text-decoration-color: #ff6bd6;
}

.page-hero {
  padding: 110px 0 75px;
  background:
    linear-gradient(145deg, rgba(20, 4, 38, 0.62) 0%, rgba(12, 3, 22, 0.70) 40%, rgba(4, 2, 6, 0.80) 100%),
    url("hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero .hero-container {
  text-align: left;
}

.page-hero p {
  margin-left: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 38, 255, 0.4);
  border-color: rgba(176, 38, 255, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(176, 38, 255, 0.5);
}

.btn-secondary {
  background: rgba(138, 43, 226, 0.16);
  color: #fff;
  border-color: rgba(176, 38, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(176, 38, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(138, 43, 226, 0.28);
}

.btn-accent {
  background: rgba(176, 38, 255, 0.24);
  color: #fff;
  border-color: rgba(176, 38, 255, 0.7);
}

.btn-accent:hover {
  background: rgba(176, 38, 255, 0.38);
  box-shadow: 0 12px 24px rgba(176, 38, 255, 0.32);
}

/* Section copy */
.problem > p,
.solution > p,
.how-it-works > p,
.pricing > p,
.contact > p {
  max-width: 700px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.problem .container,
.solution .container,
.how-it-works .container,
.pricing .container,
.trust .container,
.contact .container {
  text-align: center;
}

.problem > p,
.solution > p,
.how-it-works > p,
.pricing > p,
.contact > p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 38, 255, 0.42);
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.18), rgba(138, 43, 226, 0.12));
  color: #f4ebff;
  font-size: 0.97rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(176, 38, 255, 0.18);
}

/* Grids */
.problem-grid,
.solution-grid,
.steps-grid,
.trust-grid,
.grid,
.hosting-grid,
.feature-grid {
  display: grid;
  gap: 1.2rem;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 0.45rem;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 0.45rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 0.55rem;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 0.45rem;
}

.trust .container > h2 {
  margin-bottom: 1rem;
}

.trust .container > p {
  margin-bottom: 2rem;
}

.contact .container > h2 {
  margin-bottom: 1rem;
}

.contact .container > p {
  margin-bottom: 2rem;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

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

/* Billing toggle */
.billing-toggle-wrap {
  text-align: center;
  margin: 0 0 2.5rem;
}

.billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  padding: 4px;
  border-radius: 999px;
  background: rgba(176, 38, 255, 0.12);
  border: 1px solid rgba(176, 38, 255, 0.4);
  gap: 0.25rem;
}

.billing-btn {
  border: none;
  background: transparent;
  color: #e5d8ff;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.billing-btn.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.billing-save-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  letter-spacing: 0.03em;
}

.billing-btn.is-active .billing-save-tag {
  background: rgba(255, 255, 255, 0.25);
}

.billing-yearly-label {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: rgba(200, 180, 230, 0.6);
}

/* Yearly savings note on each card */
.scenario-yearly-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.yearly-perks-list .yearly-perk-check {
  color: #d8b4fe;
}



.yearly-perks-block {
  margin-top: 0.75rem;
  min-height: 10.5rem;
}

.yearly-perks-divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.yearly-perks-divider::before,
.yearly-perks-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(147, 197, 253, 0.35);
}

.yearly-perks-divider-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #93c5fd;
  white-space: nowrap;
}

.pricing-scenario-card.yearly-active {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pricing-scenario-card.featured.yearly-active {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.3), 0 24px 52px rgba(0, 0, 0, 0.45);
}


.yearly-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yearly-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(176, 38, 255, 0.1);
  color: rgba(237, 229, 255, 0.8);
  font-size: 0.93rem;
  line-height: 1.45;
}

.yearly-perks-list li:last-child {
  border-bottom: none;
}

.yearly-perks-list .yearly-perk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.35);
  font-size: 0.6rem;
  margin-top: 0.12rem;
}

/* 3-scenario pricing cards grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  align-items: stretch;
}

.pricing-scenario-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.75rem;
  overflow: visible;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-scenario-card:not(.featured):hover {
  transform: translateY(-4px);
  border-color: rgba(176, 38, 255, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.pricing-scenario-card.featured {
  border-color: rgba(176, 38, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(176, 38, 255, 0.25), 0 24px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-8px);
}

.pricing-scenario-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-scenario-card.featured:hover {
  transform: translateY(-12px);
}

.scenario-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(176, 38, 255, 0.95);
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.28);
  border-radius: 20px;
  padding: 0.18rem 0.65rem;
  margin-bottom: 0.75rem;
}

.scenario-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}

.scenario-desc {
  font-size: 0.92rem;
  color: #c8b8e8;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  min-height: 4.4rem;
}

.scenario-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}

.scenario-price-from {
  font-size: 0.82rem;
  color: #c0aade;
  margin-right: 0.1rem;
}

.scenario-price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.scenario-price-period {
  font-size: 1rem;
  font-weight: 500;
  color: #b09ad0;
}

.scenario-setup {
  font-size: 0.76rem;
  color: rgba(205, 185, 234, 0.55);
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(176, 38, 255, 0.14);
}

.scenario-features {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.4rem;
  flex: 1;
}

.scenario-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(176, 38, 255, 0.08);
  color: #ede5ff;
  font-size: 0.9rem;
  line-height: 1.45;
}

.scenario-features li:last-child {
  border-bottom: none;
}

.scenario-features .included-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(176, 38, 255, 0.14);
  border: 1px solid rgba(176, 38, 255, 0.38);
  font-size: 0.6rem;
  color: #c084fc;
  margin-top: 0.12rem;
}

.feature-note {
  font-size: 0.78rem;
  color: rgba(180, 155, 215, 0.6);
  font-weight: 400;
  display: block;
  margin-top: 0.1rem;
}

.pricing-bottom-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: rgba(200, 180, 230, 0.6);
}

.pricing .container {
  width: min(1280px, 96%);
}

.hosting-grid,
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */
.problem-card,
.solution-card,
.step-card,
.trust-item,
.card,
.hosting-card,
.setup-card,
.contact-info,
.contact-form {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.65rem;
  backdrop-filter: blur(6px);
}

.problem-card:hover,
.solution-card:hover,
.step-card:hover,
.trust-item:hover,
.card:hover,
.hosting-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 38, 255, 0.65);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.46);
  transition: all 0.25s ease;
}

.problem .container > h2 {
  margin-bottom: 1rem;
}

.problem .container > p {
  margin-bottom: 2rem;
}

.problem-card h3 {
  margin-bottom: 0.8rem;
}

.solution .container > h2 {
  margin-bottom: 1rem;
}

.solution .container > p {
  margin-bottom: 2rem;
}

.solution-card h3 {
  margin-bottom: 0.8rem;
}

.how-it-works .container > h2 {
  margin-bottom: 1rem;
}

.how-it-works .container > p {
  margin-bottom: 2rem;
}

.step-card h3 {
  margin-bottom: 0.85rem;
}

.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.setup-section {
  margin-bottom: 2rem;
  display: grid;
  place-items: center;
}

.setup-card {
  width: min(420px, 100%);
  text-align: center;
}

.setup-price {
  font-size: 2.7rem;
  margin: 0.7rem 0;
  color: #fff;
}

.pricing-note {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  background: rgba(176, 38, 255, 0.14);
  border: 1px solid rgba(176, 38, 255, 0.45);
  padding: 1.28rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.pricing .container > h2 {
  margin-bottom: 1rem;
}

.pricing .container > p {
  margin-bottom: 1.45rem;
}

.pricing-hero-copy {
  max-width: 820px;
  margin: 0 auto 1.8rem;
}

.plan-label {
  color: #e8dcff;
  font-size: 0.96rem;
}

.plan-toggle {
  margin: 0.8rem auto 0.65rem;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(176, 38, 255, 0.12);
  border: 1px solid rgba(176, 38, 255, 0.4);
  gap: 0.25rem;
}

.plan-toggle-btn {
  border: none;
  background: transparent;
  color: #e5d8ff;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.plan-toggle-btn.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.pricing-main-card {
  width: min(1020px, 100%);
  margin: 0 auto;
}

.included-title {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.hosting-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hosting-card.featured {
  border-color: rgba(176, 38, 255, 0.75);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(176, 38, 255, 0.45);
}

.hosting-price {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.hosting-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.hosting-subnote {
  margin-top: 0.25rem;
  margin-bottom: 0.2rem;
  font-size: 0.86rem;
  color: #cdb9ea;
}

.plan-savings-note {
  display: inline-block;
  margin: 0.3rem 0 0.6rem;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  letter-spacing: 0.01em;
}

.plan-setup-note {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  color: rgba(205, 185, 234, 0.65);
  letter-spacing: 0.01em;
}

.setup-features,
.hosting-card ul,
.card ul {
  list-style: none;
  margin-top: 0.8rem;
  text-align: left;
}

.setup-features li,
.hosting-card li,
.card li {
  padding: 0.5rem 0;
  color: var(--muted);
  border-bottom: 1px dashed rgba(176, 38, 255, 0.18);
}

.setup-features li:last-child,
.hosting-card li:last-child,
.card li:last-child {
  border-bottom: none;
}

.card-bottom {
  margin-top: auto;
}

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

/* Keep monthly/yearly cards visually balanced */
.pricing .grid .card,
.pricing .grid .hosting-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing .grid .card p,
.pricing .grid .hosting-card p {
  min-height: 46px;
}

.pricing .grid .card .plan-label {
  min-height: 0;
}

.pricing .grid .card ul,
.pricing .grid .hosting-card ul {
  flex: 1;
}

.pricing .grid .card .pricing-cta,
.pricing .grid .hosting-card .pricing-cta {
  margin-top: auto;
}

.hosting-grid .hosting-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hosting-grid .hosting-card .hosting-desc {
  min-height: 46px;
}

.hosting-grid .hosting-card ul {
  flex: 1;
}

.hosting-grid .hosting-card .pricing-cta {
  margin-top: auto;
}

.faq-item {
  margin-bottom: 12px;
}

.pricing-included .faq-item ul,
.pricing-how .faq-item ul {
  columns: 2;
  column-gap: 1.8rem;
  margin-top: 0.7rem;
}

.included-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.6rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.2rem;
  border-bottom: 1px solid rgba(176, 38, 255, 0.12);
  color: #f0e8ff;
  font-size: 0.97rem;
  line-height: 1.5;
}

.included-item:last-child {
  border-bottom: none;
}

.included-check {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #b026ff;
}

/* Yearly extras block */
.yearly-extras {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem 0.6rem;
  border-radius: 14px;
  border: 1px solid rgba(176, 38, 255, 0.35);
  background: linear-gradient(160deg, rgba(176, 38, 255, 0.1), rgba(120, 20, 200, 0.06));
}

.yearly-extras-title {
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 130, 255, 0.9) !important;
  margin-top: 0 !important;
  margin-bottom: 0.2rem !important;
}

.yearly-extra-item .included-check {
  color: #d07aff;
  font-size: 0.7rem;
}

.yearly-extras.is-hidden {
  display: none;
}

.pricing-how .faq-item p + p {
  margin-top: 0.65rem;
}

.pricing-faq-section {
  padding-top: 92px;
}

.pricing-faq-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.pricing-faq-lead {
  max-width: 680px;
  margin: 0.55rem auto 0;
  color: #e9ddff;
  font-size: 1rem;
}

.pricing-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
}

.pricing-faq-row {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.65rem 1.8rem;
  border-bottom: 1px solid rgba(176, 38, 255, 0.18);
  transition: background 0.22s ease;
  cursor: pointer;
  user-select: none;
}

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

.pricing-faq-row:hover {
  background: rgba(176, 38, 255, 0.07);
}

.pricing-faq-row:focus-visible {
  outline: 2px solid rgba(176, 38, 255, 0.6);
  outline-offset: -2px;
}

/* Chevron icon */
.pricing-faq-chevron {
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.22rem;
  color: rgba(176, 38, 255, 0.75);
  transition: transform 0.3s ease, color 0.2s ease;
  display: flex;
  align-items: center;
}

.pricing-faq-row.is-open .pricing-faq-chevron {
  transform: rotate(180deg);
  color: rgba(200, 100, 255, 0.95);
}

/* Answer wrapper — hidden by default */
.pricing-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease, margin-top 0.28s ease;
  margin-top: 0;
}

.pricing-faq-row.is-open .pricing-faq-answer {
  max-height: 1000px;
  opacity: 1;
  margin-top: 0.55rem;
}


.pricing-faq-num {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8d8ff;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(176, 38, 255, 0.22));
  border: 1px solid rgba(176, 38, 255, 0.45);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pricing-faq-body {
  flex: 1;
}

.pricing-faq-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #f5ecff;
  transition: color 0.2s ease;
}

.pricing-faq-row:hover .pricing-faq-body h3,
.pricing-faq-row.is-open .pricing-faq-body h3 {
  color: #fff;
}

.pricing-faq-body p {
  font-size: 0.97rem;
  color: #d8c8f2;
  line-height: 1.65;
  margin-top: 0;
}

.pricing-faq-body ul {
  margin-top: 0.65rem;
  margin-left: 0.1rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.pricing-faq-body ul li {
  padding: 0.26rem 0;
  border-bottom: none;
  color: #e4d5f8;
  font-size: 0.95rem;
}

.pricing-final-cta {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.pricing-final-cta .card {
  text-align: center;
}

.pricing-final-cta h2 {
  margin-bottom: 0.85rem;
}

.pricing-final-cta p {
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.booking-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.booking-panel-header {
  margin-bottom: 1rem;
  text-align: center;
}

.booking-panel-header h3 {
  margin-bottom: 0.35rem;
}

.booking-panel-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-cta {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0 0.25rem;
}

.booking-cta-note {
  margin: 0;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0b0812;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(176, 38, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(176, 38, 255, 0.3);
}

.team-emoji {
  font-size: 48px;
  margin-bottom: 20px;
}

.spaced-top {
  margin-top: 30px;
}

.spaced-bottom {
  margin-bottom: 20px;
}

.centered-map-block {
  text-align: center;
}

.map-intro {
  margin-bottom: 30px;
}

.map-placeholder {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About page polish */
.about-content .container > h2 {
  margin-bottom: 1rem;
}

.about-lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #f0e6ff;
}

.about-highlight p + p {
  margin-top: 0.8rem;
}

.about-values {
  margin-top: 1.15rem;
}

.mission-wrap {
  display: grid;
  place-items: center;
}

.mission-card {
  width: min(860px, 100%);
  text-align: left;
}

.mission-statement {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  color: #e8d8ff;
  border-left: 3px solid rgba(176, 38, 255, 0.7);
  padding-left: 1.1rem;
  margin-bottom: 1.2rem;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(176, 38, 255, 0.15);
}

.mission-pillar {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.mission-pillar-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: rgba(176, 38, 255, 0.85);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.mission-pillar strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f0e4ff;
  margin-bottom: 0.3rem;
}

.mission-pillar p {
  font-size: 0.85rem;
  color: rgba(210, 185, 245, 0.72);
  line-height: 1.55;
  margin: 0;
}

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

/* Services page polish */
.services-lead {
  max-width: 720px;
  margin: 0.35rem auto 0;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(176, 38, 255, 0.34);
  background: rgba(176, 38, 255, 0.1);
  color: #f2e9ff;
  text-align: center;
  font-size: 0.95rem;
}

.services-core .solution-grid {
  gap: 1.45rem;
}

.service-card {
  text-align: left;
  padding: 1.6rem;
}

.service-list-card {
  background: linear-gradient(165deg, rgba(176, 38, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.services-included .container > p {
  margin-bottom: 1.8rem;
}

.services-cta {
  margin-top: 1.8rem;
  text-align: center;
}

.who-we-work-with .container > h2 {
  margin-bottom: 1rem;
}

.who-grid {
  margin-top: 1rem;
}

.who-card {
  text-align: left;
  padding: 1.55rem;
  background: linear-gradient(165deg, rgba(176, 38, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.who-card h3 {
  margin-bottom: 0.65rem;
}

/* Footer */
.footer,
footer {
  margin-top: 0;
  border-top: none;
  background: linear-gradient(180deg, rgba(8, 2, 16, 0.99) 0%, rgba(4, 1, 10, 1) 100%);
  color: var(--muted);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(176, 38, 255, 0.55) 40%, rgba(200, 100, 255, 0.55) 60%, transparent 100%);
}

.footer {
  padding: 4rem 0 0;
}

footer {
  padding: 1.2rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 2.8rem;
  align-items: start;
  padding-bottom: 3rem;
  margin-bottom: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(200, 178, 235, 0.52);
  line-height: 1.65;
  max-width: 230px;
  margin-top: 0.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0;
}

.footer-links::before {
  content: 'Quick Links';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(176, 38, 255, 0.85);
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(210, 190, 245, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease, padding-left 0.18s ease;
  padding-left: 0;
}

.footer-links a:hover {
  color: #f0e6ff;
  padding-left: 5px;
}

.footer-contact {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.footer-contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(176, 38, 255, 0.85);
  margin-bottom: 0.65rem;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(210, 190, 245, 0.6);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-contact a:hover {
  color: #f0e6ff;
  text-decoration: none;
}

.footer-contact-meta {
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: rgba(180, 155, 215, 0.42);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-social-pill {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(176, 38, 255, 0.3);
  color: #fff;
  background: rgba(176, 38, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-social-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 38, 255, 0.65);
  background: rgba(176, 38, 255, 0.18);
  box-shadow: 0 8px 22px rgba(176, 38, 255, 0.22);
  text-decoration: none;
}

.social-logo {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 0;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

.social-linkedin .social-logo {
  background: transparent;
}

.social-instagram .social-logo {
  background: transparent;
}

.social-linkedin {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.32);
}

.social-linkedin:hover {
  background: rgba(10, 102, 194, 0.22);
  border-color: rgba(10, 102, 194, 0.6);
  box-shadow: 0 8px 22px rgba(10, 102, 194, 0.2);
}

.social-instagram {
  background: rgba(221, 42, 123, 0.1);
  border-color: rgba(221, 42, 123, 0.32);
}

.social-instagram:hover {
  background: rgba(221, 42, 123, 0.22);
  border-color: rgba(221, 42, 123, 0.6);
  box-shadow: 0 8px 22px rgba(221, 42, 123, 0.2);
}

.social-gmail {
  background: rgba(234, 67, 53, 0.1);
  border-color: rgba(234, 67, 53, 0.32);
}

.social-gmail:hover {
  background: rgba(234, 67, 53, 0.22);
  border-color: rgba(234, 67, 53, 0.6);
  box-shadow: 0 8px 22px rgba(234, 67, 53, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(176, 38, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(180, 155, 215, 0.42);
}

/* Animation */
.problem-card,
.solution-card,
.step-card,
.trust-item,
.card {
  opacity: 0;
  transform: translateY(18px);
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-scenario-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-scenario-card.featured:hover {
    transform: translateY(-6px);
  }

  .scenario-desc {
    min-height: 0;
  }

  .yearly-perks-block {
    min-height: 0;
  }

  .page-hero {
    padding: 88px 0 58px;
  }

  .hero {
    padding: 108px 0 80px;
  }

  .hero p {
    font-size: 1.03rem;
  }

  .problem-grid,
  .steps-grid,
  .solution-grid,
  .trust-grid,
  .feature-grid,
  .hosting-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .pricing .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-included .faq-item ul,
  .pricing-how .faq-item ul {
    columns: 1;
  }

}


@media (max-width: 768px) {
  section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 76px 0 48px;
  }

  .scenario-price-value {
    font-size: 2.5rem;
  }

  .pricing-hero-copy {
    font-size: 0.95rem;
  }

  .billing-toggle-wrap {
    margin-bottom: 1.8rem;
  }

  .brand-logo-wrap--nav {
    height: 52px;
    max-width: min(320px, 64vw);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(8, 2, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    transition: left 0.25s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .problem-grid,
  .solution-grid,
  .steps-grid,
  .trust-grid,
  .grid,
  .hosting-grid,
  .feature-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }

  .footer-contact {
    grid-column: auto;
    text-align: center;
  }

  .footer-contact p,
  .footer-contact-label {
    text-align: center;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  .footer-logo {
    display: none;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.5rem;
  }

  .footer-links::before {
    grid-column: 1 / -1;
    margin-bottom: 0.3rem;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .hero {
    padding: 96px 0 72px;
  }

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

  .pricing-faq-row {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.25rem 1.2rem;
  }

  .pricing-faq-num {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-container {
    width: min(1120px, 94%);
  }

  .page-hero {
    padding: 70px 0 42px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .hero p {
    font-size: 0.97rem;
    margin-bottom: 1.2rem;
  }

  .hero-seo-copy {
    font-size: 0.9rem;
    padding: 0.8rem 0.85rem;
  }

  .scenario-price-value {
    font-size: 2.2rem;
  }

  .scenario-title {
    font-size: 1.25rem;
  }

  .billing-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
  }

  .pricing-scenario-card {
    padding: 1.6rem 1.35rem 1.35rem;
  }

  .popular-badge {
    font-size: 0.74rem;
  }

  .pricing-faq-row {
    padding: 1.1rem 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }

  .pricing-final-cta .card {
    padding: 2rem 1.25rem !important;
  }
}
