:root {
  --ink: #1c1f26;
  --ink-soft: #5b6270;
  --line: #e4e7ec;
  --bg: #f7f8fa;
  --card: #ffffff;
  --accent: #2f6f4f;
  --accent-soft: #eaf3ee;
  --accent-2: #3a5a9b;
  --accent-2-soft: #eaeff8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
.wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%);
}
.blob-2 {
  width: 360px;
  height: 360px;
  top: 35%;
  right: -150px;
  background: radial-gradient(circle at 70% 70%, var(--accent-2), transparent 70%);
}
.blob-3 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: -80px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}
.shape-3d-outer {
  position: absolute;
  width: 90px;
  height: 90px;
  will-change: transform;
}
.shape-3d-outer.shape-2 { width: 60px; height: 60px; }
.shape-3d-outer.shape-3 { width: 72px; height: 72px; }
.shape-3d-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.16;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transform: perspective(800px) rotateX(35deg) rotateY(35deg) rotateZ(10deg);
}
.shape-1 { top: 12%; right: 10%; }
.shape-2 { top: 58%; left: 6%; }
.shape-3 { bottom: 10%; right: 18%; }
@media (max-width: 720px) {
  .blob-1, .blob-2, .blob-3 { opacity: 0.22; }
  .shape-3d-outer { display: none; }
}
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
}
.lang-switch a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
}
.lang-switch a.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.lang-switch a:hover { background: #eef0f2; }
header {
  text-align: center;
  margin-bottom: 48px;
}
header h1 {
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
header p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}
section {
  margin-bottom: 48px;
}
h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-weight: 600;
}
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.setup-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.setup-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}
.setup-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  min-height: 60px;
}
.price {
  font-size: 20px;
  font-weight: 700;
}
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.plan h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.plan .tagline {
  color: var(--ink-soft);
  font-size: 13px;
  margin-bottom: 20px;
}
.plan .amount {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 2px;
}
.plan .amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.plan .yearly {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.plan li:first-child { border-top: none; }
.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.overage {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 16px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.info-card h3 {
  font-size: 14px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot.domain { background: var(--accent-2); }
.dot.fine { background: var(--accent); }
.dot.pay { background: #b5812f; }
.info-card p, .info-card ul {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  padding-left: 18px;
}
.info-card li { margin-bottom: 6px; }
.note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.feature-card h3 {
  font-size: 17px;
  margin: 0 0 4px;
}
.fit-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.feature-card.custom .fit-tag {
  background: var(--accent-2-soft);
  color: var(--accent-2);
}
.feature-card dl {
  margin: 0;
}
.feature-card dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 14px;
}
.feature-card dt:first-child { margin-top: 0; }
.crit-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.feature-card dd {
  margin: 4px 0 0;
  font-size: 14px;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.radio-group {
  display: flex;
  gap: 20px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}
.submit-btn:hover { opacity: 0.92; }
table.fees {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13.5px;
}
table.fees th, table.fees td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
table.fees th {
  background: #fbfbfc;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
}
table.fees tr:last-child td { border-bottom: none; }
table.fees td.rec {
  color: var(--accent);
  font-weight: 600;
}
footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 40px;
}
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.hero .sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { opacity: 0.92; }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: #fff; }
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}
.trust-strip span { display: flex; align-items: center; gap: 6px; }
.trust-strip .tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.pain-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
.pain-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}
.fix-line {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 16px;
}
.journey-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}
.journey-section .eyebrow {
  margin-bottom: 14px;
}
.journey-section h2 {
  font-size: 28px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 44px;
}
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.journey-step {
  position: relative;
  padding: 0 24px;
}
.journey-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  z-index: 2;
}
.journey-icon-wrap svg {
  width: 34px;
  height: 34px;
}
.journey-num {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--card);
}
.journey-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 38px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 1;
}
.journey-step h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.journey-step p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 240px;
}
.why-grid {
  display: grid;
  gap: 14px;
}
.why-item {
  display: flex;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.why-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item p {
  margin: 0;
  font-size: 14px;
}
.why-item strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  display: inline-block;
  width: 16px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq details[open] summary::before { transform: rotate(45deg); }
.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-panel-inner {
  will-change: transform;
}
.faq p {
  margin: 10px 0 0 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.faq table.fees {
  margin: 12px 0;
  font-size: 12.5px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.tier-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  position: relative;
}
.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.tier-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
}
.tier-card .fit-tag {
  margin-bottom: 10px;
}
.tier-card.featured .fit-tag {
  margin-top: 6px;
}
.tier-price-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tier-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.tier-price-value {
  font-size: 20px;
  font-weight: 700;
}
.tier-price-value span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}
.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tier-card li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  display: flex;
  gap: 8px;
}
.tier-card li:first-child { border-top: none; }
@media (max-width: 720px) {
  .setup-grid, .plans, .info-grid, .feature-grid, .form-row, .pain-grid, .tier-grid, .journey { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; padding: 32px 0; }
  .hero h1 { font-size: 36px; }
  .hero .sub { font-size: 16px; }
  table.fees { font-size: 12px; }
  table.fees th, table.fees td { padding: 8px 10px; }
  .journey-section { padding: 32px 20px; }
  .journey-section h2 { font-size: 22px; margin-bottom: 8px; }
  .journey-step { padding: 0; margin-bottom: 32px; }
  .journey-step:last-child { margin-bottom: 0; }
  .journey-step::before { display: none; }
  .journey-step p { max-width: none; }
}
