:root {
  --primary: #19647e;
  --primary-hover: #1f271b;
  --secondary: #28afb0;
  --secondary-light: #f4d35e;
  --accent-warm: #ee964b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text-heading: #1f271b;
  --text-body: #19647e;
  --border: #e2e8f0;
  --success: #22c55e;
  --error: #ef4444;
  --gradient: linear-gradient(135deg, #19647e, #28afb0);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(226, 232, 240, 0.95);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 5% 0%, rgba(25, 100, 126, 0.08), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(40, 175, 176, 0.08), transparent 30%),
    var(--bg);
  color: var(--text-body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 4.5rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(25, 100, 126, 0.12), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(40, 175, 176, 0.1), transparent 38%);
  pointer-events: none;
}

.section-light {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.82) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

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

.narrow {
  max-width: 760px;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0.8rem 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(226, 232, 240, 0.88);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0.8rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  top: 80px;
  left: 4%;
  right: 4%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.8rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav.active {
  display: flex;
}

.nav-link {
  color: var(--text-body);
  font-weight: 500;
  padding: 0.62rem 0.72rem;
  border-radius: 0.7rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(40, 175, 176, 0.12);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(40, 175, 176, 0.12);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--text-heading);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(25, 100, 126, 0.35);
  color: var(--primary);
  background: rgba(40, 175, 176, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 0.8rem;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(25, 100, 126, 0.28);
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(30, 64, 175, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  color: #fff;
}

.btn-sm {
  padding: 0.58rem 1rem;
  font-size: 0.95rem;
}

.nav-cta {
  width: 100%;
  margin-top: 0.35rem;
  gap: 0.4rem;
}

.nav-cta svg {
  width: 16px;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  background: #eef2ff;
  color: var(--secondary);
  border: 1px solid #ddd6fe;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

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

.lead {
  font-size: 1.1rem;
  max-width: 48ch;
}

.key-message {
  margin-top: 0.8rem;
  color: var(--text-heading);
  font-weight: 600;
}

.key-message-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 36ch;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(25, 100, 126, 0.35);
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.18),
    rgba(244, 211, 94, 0.22)
  );
  box-shadow: 0 10px 28px rgba(25, 100, 126, 0.12);
  font-size: 1.02rem;
  line-height: 1.45;
}

.key-message-highlight svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-top: 0.12rem;
}

.key-message-highlight strong {
  color: var(--text-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.key-message-highlight span {
  color: rgba(31, 39, 27, 0.92);
  font-weight: 600;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero-badge svg {
  width: 16px;
}

.hero-content .lead {
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-metrics {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.hero-metrics div {
  border: 1px solid var(--glass-border);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  color: var(--text-heading);
  font-size: 0.98rem;
  line-height: 1.2;
}

.hero-metrics span {
  color: var(--text-body);
  font-size: 0.88rem;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.4rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.hero-card h3 {
  margin-bottom: 1rem;
}

.hero-card {
  border-color: rgba(25, 100, 126, 0.28);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.78),
    rgba(230, 248, 248, 0.72)
  );
  box-shadow: 0 18px 36px rgba(30, 64, 175, 0.14);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-body);
}

.check-list svg {
  width: 18px;
  color: var(--success);
}

.hero-check-highlight {
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.2),
    rgba(244, 211, 94, 0.25)
  );
  border: 1px solid rgba(25, 100, 126, 0.32);
  border-radius: 0.75rem;
  color: var(--text-heading) !important;
  font-weight: 600;
  padding: 0.45rem 0.62rem;
}

.hero-check-highlight svg {
  color: var(--secondary) !important;
}

.hero-card-mobile-cta {
  width: 100%;
  margin-top: 0.9rem;
}

.section-head {
  margin-bottom: 2rem;
}

.domain-checker {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem;
}

.domain-checker-form {
  display: grid;
  gap: 0.9rem;
}

.domain-label {
  color: var(--text-heading);
  font-weight: 600;
}

.domain-input-row {
  display: grid;
  gap: 0.8rem;
}

.domain-input-row input {
  width: 100%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 0.8rem;
  padding: 0.8rem 0.9rem;
  color: var(--text-heading);
  font-size: 1rem;
  outline: none;
}

.domain-input-row input:focus {
  border-color: rgba(25, 100, 126, 0.4);
  box-shadow: 0 0 0 3px rgba(40, 175, 176, 0.16);
}

.tld-options {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  width: fit-content;
}

.tld-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.tld-options label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tld-options label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 0.44rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.tld-options label input:checked + span {
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.22),
    rgba(244, 211, 94, 0.26)
  );
  border-color: rgba(25, 100, 126, 0.35);
  color: var(--text-heading);
  box-shadow: 0 6px 14px rgba(25, 100, 126, 0.16);
}

.tld-options label:hover span {
  border-color: rgba(25, 100, 126, 0.3);
}

.domain-status {
  margin-top: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--glass-border);
  color: var(--text-body);
}

.domain-status.success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #14532d;
}

.domain-status.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #7f1d1d;
}

.domain-status.warning {
  background: rgba(244, 211, 94, 0.2);
  border-color: rgba(238, 150, 75, 0.4);
  color: #78350f;
}

.domain-results {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.domain-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.72rem 0.85rem;
}

.domain-result-item strong {
  color: var(--text-heading);
  font-size: 0.98rem;
}

.domain-result-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

.domain-result-meta {
  display: grid;
  justify-items: end;
  gap: 0.12rem;
}

.domain-renewal-info {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(31, 39, 27, 0.66);
}

.domain-result-item.is-available .domain-result-status {
  color: #15803d;
}

.domain-result-item.is-taken .domain-result-status {
  color: #991b1b;
}

.domain-result-item.is-unknown .domain-result-status {
  color: #92400e;
}

.domain-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: rgba(31, 39, 27, 0.7);
}

.domain-status.compact {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  padding: 0.6rem 0.75rem;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.apply-modal.is-open {
  display: block;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.58),
    rgba(25, 100, 126, 0.35)
  );
  backdrop-filter: blur(5px);
}

.apply-modal-panel {
  position: relative;
  width: min(760px, 92vw);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  margin: 4vh auto;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95),
    rgba(238, 250, 248, 0.9)
  );
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.apply-modal-panel::-webkit-scrollbar {
  display: none;
}

.apply-close {
  position: sticky;
  top: 0.5rem;
  margin-left: auto;
  border: 1px solid var(--glass-border);
  border-radius: 0.65rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  color: var(--text-heading);
  z-index: 3;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.apply-close:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 100, 126, 0.32);
}

.apply-tag {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--secondary);
  border: 1px solid rgba(40, 175, 176, 0.35);
  background: rgba(40, 175, 176, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.apply-modal-panel h3 {
  margin-top: 0.7rem;
}

.apply-selected-plan {
  margin-top: 0.35rem;
}

.apply-selected-plan strong {
  color: var(--text-heading);
}

.apply-progress {
  margin: 1rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.apply-progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(31, 39, 27, 0.72);
}

.apply-progress span svg {
  width: 14px;
  height: 14px;
}

.apply-progress span.is-active {
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.2),
    rgba(244, 211, 94, 0.24)
  );
  border-color: rgba(25, 100, 126, 0.4);
  color: var(--text-heading);
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(25, 100, 126, 0.14);
}

.apply-form {
  display: grid;
}

.apply-step {
  display: none;
}

.apply-step.is-active {
  display: block;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-grid label,
.domain-apply-grid label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-heading);
  font-weight: 500;
}

.form-grid input,
.form-grid textarea,
.domain-apply-grid input,
.domain-apply-grid select {
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-heading);
  font: inherit;
  padding: 0.72rem 0.8rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus,
.domain-apply-grid input:focus,
.domain-apply-grid select:focus {
  border-color: rgba(25, 100, 126, 0.4);
  box-shadow: 0 0 0 3px rgba(40, 175, 176, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.domain-choice {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.domain-choice p {
  width: 100%;
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.domain-choice label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.7rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.domain-choice label:hover {
  border-color: rgba(25, 100, 126, 0.32);
  transform: translateY(-1px);
}

.domain-choice-segmented {
  gap: 0.6rem;
}

.domain-choice-segmented label {
  border: 0;
  background: transparent;
  padding: 0;
}

.domain-choice-segmented label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.domain-choice-segmented label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.46rem 0.85rem;
  transition: all 0.2s ease;
}

.payment-choice.domain-choice-segmented label span {
  min-width: 165px;
}

.domain-choice-segmented label input:checked + span {
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.22),
    rgba(244, 211, 94, 0.26)
  );
  border-color: rgba(25, 100, 126, 0.35);
  box-shadow: 0 6px 14px rgba(25, 100, 126, 0.16);
}

.domain-choice-segmented label:hover span {
  border-color: rgba(25, 100, 126, 0.32);
}

.domain-apply-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.lk-domain-fields {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.8rem;
}

.lk-domain-fields.is-hidden {
  display: none;
}

.lk-domain-fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-heading);
  font-weight: 500;
}

.lk-domain-fields input {
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-heading);
  font: inherit;
  padding: 0.72rem 0.8rem;
  outline: none;
}

.lk-domain-fields input:focus {
  border-color: rgba(25, 100, 126, 0.4);
  box-shadow: 0 0 0 3px rgba(40, 175, 176, 0.16);
}

.new-domain-actions {
  margin-top: 0.9rem;
}

.new-domain-actions.is-hidden {
  display: none;
}

.domain-charge-info {
  margin-top: 0.8rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.8rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(234, 247, 245, 0.76)
  );
  padding: 0.7rem 0.8rem;
  font-size: 0.92rem;
  color: rgba(31, 39, 27, 0.85);
}

.domain-charge-info strong {
  color: var(--text-heading);
}

.payment-receipt {
  margin-top: 0.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(245, 252, 251, 0.85)
  );
  padding: 0.9rem;
}

.payment-receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.payment-receipt-head h4 {
  margin: 0;
  color: var(--text-heading);
}

.payment-receipt-tag {
  font-size: 0.78rem;
  border: 1px dashed rgba(25, 100, 126, 0.42);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  color: var(--primary);
  background: rgba(40, 175, 176, 0.12);
}

.receipt-rows {
  display: grid;
  gap: 0.4rem;
}

.receipt-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(31, 39, 27, 0.85);
}

.receipt-row strong {
  color: var(--text-heading);
}

.receipt-row.total {
  margin-top: 0.25rem;
  border-top: 1px dashed rgba(25, 100, 126, 0.3);
  padding-top: 0.5rem;
  font-size: 1rem;
}

.receipt-note {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: rgba(31, 39, 27, 0.72);
}

.payment-panel {
  border: 1px solid var(--glass-border);
  border-radius: 0.85rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  margin-top: 0.8rem;
  display: none;
}

.payment-panel h4 {
  margin-bottom: 0.45rem;
}

.payment-panel ul {
  margin-left: 1rem;
  color: var(--text-body);
  font-size: 0.94rem;
  margin-bottom: 0.65rem;
}

.payment-panel.is-open {
  display: block;
}

.apply-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.apply-actions.between {
  justify-content: space-between;
}

.apply-summary {
  margin-top: 0.7rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.85rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.92),
    rgba(241, 252, 250, 0.84)
  );
  padding: 0.85rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.apply-summary strong {
  color: var(--text-heading);
}

.submit-alert {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 6;
  padding: 1rem;
  border-radius: 1rem;
}

.submit-alert.is-open {
  display: flex;
}

.submit-alert-card {
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(237, 250, 247, 0.92)
  );
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.25);
  text-align: center;
  padding: 1.2rem 1rem;
}

.submit-alert-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.submit-alert-icon svg {
  width: 26px;
  height: 26px;
  color: #16a34a;
}

.submit-alert-card h4 {
  margin-bottom: 0.35rem;
}

.submit-alert-card p {
  color: rgba(31, 39, 27, 0.78);
  margin-bottom: 0.95rem;
}

.review-note {
  color: rgba(31, 39, 27, 0.75);
}

.grid-3,
.grid-5 {
  display: grid;
  gap: 1rem;
}

.solution-section .section-head {
  max-width: 760px;
  margin-inline: auto;
}

.solution-kicker {
  display: inline-flex;
  border: 1px solid rgba(40, 175, 176, 0.35);
  border-radius: 999px;
  background: rgba(40, 175, 176, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.55rem;
}

.solution-section .feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.solution-section .feature-card::before {
  content: "";
  position: absolute;
  inset: auto -25% -45% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 175, 176, 0.18), transparent 70%);
  pointer-events: none;
}

.feature-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 0.85rem;
  background: rgba(40, 175, 176, 0.13);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.solution-section .feature-card h3 {
  margin-bottom: 0.45rem;
}

.solution-section .feature-card p {
  color: rgba(31, 39, 27, 0.8);
}

.landing-page-nav-preview {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.landing-page-nav-preview li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 100, 126, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-heading);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.34rem 0.62rem;
}

.feature-chip {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(25, 100, 126, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.24rem 0.62rem;
}

.mini-card {
  text-align: center;
  padding: 1.1rem 0.9rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 175, 176, 0.15), transparent 70%);
  pointer-events: none;
}

.mini-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.28rem;
}

.mini-card p {
  font-size: 0.86rem;
  color: rgba(31, 39, 27, 0.75);
  line-height: 1.45;
}

.mini-card-highlight {
  border-color: rgba(25, 100, 126, 0.45);
  background: linear-gradient(
    145deg,
    rgba(40, 175, 176, 0.2),
    rgba(244, 211, 94, 0.22)
  );
  box-shadow: 0 16px 28px rgba(25, 100, 126, 0.16);
}

.mini-card-highlight h3 {
  color: var(--text-heading);
  font-weight: 600;
}

.mini-card svg {
  color: var(--secondary);
  margin-bottom: 0.62rem;
  width: 20px;
  height: 20px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.5rem;
}

.pricing-grid {
  align-items: stretch;
}

.price-head h3 {
  margin-bottom: 0.35rem;
}

.plan-meta {
  font-size: 0.9rem;
  color: rgba(31, 39, 27, 0.7);
}

.price-card .price {
  color: var(--text-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-card .price span {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0.2rem 0 0.8rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-body);
}

.plan-features li svg {
  width: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-highlight {
  background: linear-gradient(
    135deg,
    rgba(40, 175, 176, 0.2),
    rgba(244, 211, 94, 0.25)
  );
  border: 1px solid rgba(25, 100, 126, 0.32);
  border-radius: 0.75rem;
  color: var(--text-heading) !important;
  font-weight: 600;
  padding: 0.48rem 0.62rem;
}

.feature-highlight svg {
  color: var(--secondary) !important;
}

.feature-subpages {
  align-items: flex-start !important;
  flex-direction: column;
  gap: 0.55rem !important;
  background: rgba(234, 247, 245, 0.76);
  border: 1px solid rgba(40, 175, 176, 0.35);
  border-radius: 0.8rem;
  padding: 0.7rem 0.75rem;
}

.feature-subpages > i {
  margin-right: 0.4rem;
}

.subpage-list {
  list-style: none;
  width: 100%;
  margin-left: 1.5rem;
  display: grid;
  gap: 0.32rem;
}

.subpage-list li {
  position: relative;
  color: rgba(31, 39, 27, 0.86);
  font-size: 0.92rem;
  padding-left: 0.85rem;
}

.subpage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--secondary);
}

.plan-tag {
  display: inline-block;
  width: fit-content;
  background: var(--gradient);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(25, 100, 126, 0.24);
}

.featured {
  border-color: rgba(25, 100, 126, 0.36);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.82),
    rgba(223, 244, 244, 0.72)
  );
}

.plan-btn {
  margin-top: auto;
  width: 100%;
}

.custom-package-builder {
  margin-top: 1.4rem;
  padding: 1.2rem;
}

.builder-head h3 {
  margin-bottom: 0.35rem;
}

.builder-head p {
  color: rgba(31, 39, 27, 0.75);
  font-size: 0.94rem;
}

.builder-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.85rem;
}

.builder-field {
  display: grid;
  gap: 0.45rem;
}

.builder-field span {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.builder-field input[type="number"] {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-heading);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  width: 72px;
  padding: 0.45rem 0.2rem;
  outline: none;
  -moz-appearance: textfield;
}

.builder-field input[type="number"]::-webkit-outer-spin-button,
.builder-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mail-count-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  width: fit-content;
  padding: 0.28rem;
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(25, 100, 126, 0.22);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stepper-btn svg {
  width: 15px;
  height: 15px;
}

.stepper-btn:hover {
  background: rgba(40, 175, 176, 0.16);
  border-color: rgba(25, 100, 126, 0.35);
}

.stepper-btn:active {
  transform: scale(0.96);
}

.builder-field input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.builder-storage-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.builder-storage-values strong {
  color: var(--text-heading);
  font-size: 0.93rem;
}

.builder-storage-values span {
  color: rgba(31, 39, 27, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
}

.period-choice {
  width: fit-content;
}

.builder-receipt {
  margin-top: 0.95rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.9rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.9),
    rgba(241, 252, 250, 0.83)
  );
  padding: 0.85rem;
}

.builder-receipt h4 {
  margin-bottom: 0.55rem;
}

.builder-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(31, 39, 27, 0.82);
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(25, 100, 126, 0.14);
}

.builder-row strong {
  color: var(--text-heading);
}

.builder-row.total {
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(25, 100, 126, 0.3);
  border-bottom: 0;
  font-size: 1rem;
}

.steps-grid {
  position: relative;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 175, 176, 0.18), transparent 70%);
  pointer-events: none;
}

.step-card .step-no {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(40, 175, 176, 0.3), rgba(244, 211, 94, 0.35));
  color: var(--primary);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(25, 100, 126, 0.3);
}

.step-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.step-card p {
  color: rgba(31, 39, 27, 0.8);
}

.step-meta {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(25, 100, 126, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0.25rem 0.6rem;
}

.step-meta svg {
  width: 14px;
  color: var(--secondary);
}

.step-meta small {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.76rem;
}

.quote-card h4 {
  margin-top: 1rem;
}

.quote-card span {
  font-size: 0.9rem;
}

.faq-section .section-head {
  max-width: 760px;
  margin-inline: auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0.95rem 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 0;
  background: transparent;
  color: var(--text-heading);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.22s ease;
}

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

.faq-answer p {
  color: rgba(31, 39, 27, 0.78);
  font-size: 0.94rem;
}

.cta-section {
  background: var(--gradient);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -5%, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .narrow {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem;
  backdrop-filter: blur(8px);
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  margin-top: 1.1rem;
}

.cta-section .btn:hover {
  color: #fff;
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.site-footer {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.84),
    rgba(234, 247, 245, 0.78)
  );
  border-top: 1px solid rgba(25, 100, 126, 0.16);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.2rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  max-width: 28ch;
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 0.6rem;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.footer-col a,
.footer-col p {
  color: rgba(31, 39, 27, 0.8);
  font-size: 0.95rem;
}

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

.footer-cta {
  width: fit-content;
}

.socials {
  display: flex;
  gap: 0.8rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-heading);
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-bottom {
  margin-top: 0.9rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(31, 39, 27, 0.66);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    padding: 0.35rem;
    gap: 0.3rem;
    left: auto;
    right: auto;
    top: auto;
  }

  .nav-link {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
    margin-left: 0.3rem;
    border-radius: 999px;
    padding-inline: 1rem;
  }

  .cta-section .narrow {
    padding: 2.2rem 2rem;
  }

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

  .hero-card-mobile-cta {
    display: none;
  }

  .domain-input-row {
    grid-template-columns: 1fr auto;
  }

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

  .domain-apply-grid {
    grid-template-columns: 1fr 150px;
  }

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

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

  .builder-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: end;
  }

  .builder-field.full {
    grid-column: 1 / -1;
  }

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

  .steps-grid::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(25, 100, 126, 0.35), rgba(40, 175, 176, 0.4));
    z-index: 0;
  }

  .steps-grid .step-card {
    z-index: 1;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    align-items: start;
  }
}
