:root {
  --ink: #102c2a;
  --green: #146b54;
  --green-dark: #0b493b;
  --mint: #dff6eb;
  --mint-bright: #7de0b3;
  --cream: #fbfaf5;
  --line: #dce6e2;
  --muted: #657774;
  --gold: #e39b34;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 3%, rgba(125,224,179,.18), transparent 27rem),
    var(--cream);
  font-family: "DM Sans", sans-serif;
}
button { font: inherit; }
main { width: min(1240px, calc(100% - 40px)); margin: auto; }

.hero {
  padding: 48px 0 28px;
}
.eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font: 800 clamp(38px, 5vw, 62px)/1.02 "Manrope";
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--green); font-style: normal; }

.always-included {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-bottom: 26px;
  padding: 14px 18px;
  border-radius: 13px;
  color: #49605b;
  background: #eaf8f1;
  font-size: 12px;
}
.always-included > strong { color: var(--green); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.always-included div { white-space: nowrap; }
.always-included div span { color: var(--green); font-weight: 800; }
.free-domain-cta {
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(480px, 100%);
  margin: 0 auto 25px;
  padding: 10px 12px;
  border: 1px solid #e7b75d;
  border-radius: 12px;
  color: #4b3510;
  background: linear-gradient(110deg, #fff8df, #ffe9ad);
  box-shadow: 0 8px 22px rgba(165,108,26,.1);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.free-domain-cta:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(165,108,26,.16); }
.mini-address {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid #d6c8a8;
  border-radius: 6px;
  color: #61706c;
  background: white;
  font-size: 9px;
  white-space: nowrap;
}
.mini-address i { color: var(--green); font-size: 6px; font-style: normal; }
.free-domain-copy { flex: 1; min-width: 0; }
.free-domain-copy strong { display: block; font: 800 14px "Manrope"; }
.free-domain-copy small { display: block; margin-top: 2px; color: #866b3f; font-size: 9px; }
.free-domain-arrow { color: #a85b1d; font-size: 18px; font-weight: 800; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 370px));
  align-items: stretch;
  justify-content: center;
  gap: 22px;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 510px;
  padding: 29px 25px 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 45px rgba(28,66,58,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-card.offer-focus {
  animation: offerPulse 1.5s ease;
}
@keyframes offerPulse {
  0%, 100% { box-shadow: 0 14px 45px rgba(28,66,58,.07); }
  35% { border-color: #e0a641; box-shadow: 0 0 0 5px rgba(227,155,52,.2), 0 22px 55px rgba(28,66,58,.16); }
}
.plan-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: #9fc6b8;
  box-shadow: 0 24px 60px rgba(28,66,58,.15);
}
.plan-card.complete:hover { border-color: var(--mint-bright); box-shadow: 0 25px 65px rgba(11,73,59,.24); }
.plan-card.complete { color: white; border-color: var(--ink); background: var(--ink); }
.plan-card.complete::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("eezix-logo.png") right -55px bottom -80px / 260px auto no-repeat;
  opacity: .035;
  pointer-events: none;
}
.plan-card > * { position: relative; z-index: 1; }
.best-value {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 18px 0 12px;
  padding: 7px 11px;
  color: white;
  background: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.best-value { color: var(--ink); background: var(--mint-bright); }
.plan-number { color: #9fb0ac; font: 800 10px "Manrope"; }
.plan-top h2 { margin: 16px 0 0; font: 800 28px "Manrope"; letter-spacing: -.045em; }
.price-block { margin: 18px 0 15px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.complete .price-block { border-color: rgba(255,255,255,.14); }
.price-caption {
  display: block;
  min-height: auto;
  margin: 0 0 2px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.complete .price-caption { color: var(--mint-bright); }
.monthly-price { display: flex; align-items: baseline; gap: 5px; }
.monthly-price strong { font: 800 35px "Manrope"; letter-spacing: -.055em; }
.monthly-price span { color: var(--muted); font-size: 12px; }
.complete .monthly-price span { color: #b5c6c2; }
.annual-price {
  width: max-content;
  margin-top: 5px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--ink);
  background: #edf4f1;
  font-size: 12px;
  font-weight: 800;
}
.annual-price span {
  margin-left: 3px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.complete .annual-price {
  color: white;
  background: rgba(255,255,255,.12);
}
.complete .annual-price span { color: var(--mint-bright); }
.price-block del { color: #95a29f; font-weight: 500; }
.domain-free-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: -3px 0 15px;
  padding: 13px 12px;
  border: 2px solid #edae41;
  border-radius: 10px;
  color: #382606;
  background: linear-gradient(120deg, #fff4c7, #ffe092);
  box-shadow: 0 7px 18px rgba(185,116,17,.18);
}
.domain-free-offer span { display: block; font-size: 12px; font-weight: 800; }
.domain-free-offer small { color: #806134; font-size: 8px; }
.domain-free-offer > div:last-child { text-align: right; }
.domain-free-offer del { display: block; color: #8c7048; font-size: 9px; }
.domain-free-offer strong { color: #b84d11; font: 800 23px "Manrope"; }
.included-upgrades {
  display: grid;
  gap: 6px;
  margin: 0 0 13px;
}
.included-upgrades > span {
  color: var(--mint-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.included-upgrades > div {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 7px;
  color: #dce8e5;
  background: rgba(255,255,255,.06);
  font-size: 9px;
}
.included-upgrades i {
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint-bright);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.domain-package:not(.complete) .included-upgrades > span { color: var(--green); }
.domain-package:not(.complete) .included-upgrades > div { color: #425b56; background: #f1f8f5; }
.domain-package:not(.complete) .included-upgrades i { color: white; background: var(--green); }
.package-notes {
  margin: 11px auto 0;
  color: #7c8c88;
  text-align: center;
}
.package-notes p { margin: 0; font-size: 9px; line-height: 1.45; }
.package-notes strong { color: #657773; font-weight: 700; }
.storage-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 12px;
  margin: -5px 0 16px;
  padding: 13px;
  border: 1px solid #c8e6d9;
  border-radius: 11px;
  color: var(--green);
  background: #effaf5;
}
.storage-highlight span { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.storage-highlight strong { grid-row: 1 / span 2; grid-column: 2; font: 800 26px "Manrope"; letter-spacing: -.04em; }
.storage-highlight small { color: var(--muted); font-size: 9px; }
.base-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 18px;
}
.base-features > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 9px;
  color: var(--green);
  background: #f0f8f4;
}
.base-features i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 9px;
  font-style: normal;
}
.base-features b, .base-features small { display: block; }
.base-features b { font-size: 10px; }
.base-features small { margin-top: 2px; color: var(--muted); font-size: 7px; }
.plan-card ul { display: grid; gap: 11px; margin: 0 0 19px; padding: 0; list-style: none; font-size: 12px; }
.plan-card li { display: flex; gap: 8px; align-items: flex-start; }
.plan-card li span { color: var(--green); font-weight: 800; }
.complete li span { color: var(--mint-bright); }
.plan-card button, .mobile-cta button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--ink);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: .2s ease;
}
.plan-card .breakdown-button {
  justify-content: space-between;
  width: 100%;
  margin: 0 0 9px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 1px 3px;
  color: var(--green);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  text-align: left;
}
.breakdown-button b {
  font-size: 13px;
  font-weight: 500;
  transition: transform .2s ease;
}
.breakdown-button[aria-expanded="true"] b { transform: rotate(180deg); }
.inline-breakdown {
  display: grid;
  gap: 0;
  margin: -1px 0 9px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fbfdfc;
  animation: revealBreakdown .2s ease both;
}
.inline-breakdown[hidden] { display: none; }
.inline-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #e7eeeb;
  font-size: 9px;
}
.inline-breakdown > div:last-child { border-bottom: 0; }
.inline-breakdown span { color: var(--muted); }
.inline-breakdown strong { color: var(--ink); }
.inline-breakdown .inline-total { font-weight: 800; }
.inline-breakdown .inline-total span { color: var(--ink); }
.inline-breakdown .inline-total strong { color: var(--green); font-size: 12px; }
.inline-breakdown.dark {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.inline-breakdown.dark > div { border-color: rgba(255,255,255,.11); }
.inline-breakdown.dark span { color: #b8c8c4; }
.inline-breakdown.dark strong { color: white; }
.inline-breakdown.dark .inline-total span { color: white; }
.inline-breakdown.dark .inline-total strong { color: var(--mint-bright); }
@keyframes revealBreakdown {
  from { opacity: 0; transform: translateY(-5px); }
}
.plan-card .breakdown-button:hover { color: var(--ink); background: transparent; transform: none; }
.plan-card .breakdown-button.light {
  border-top-color: rgba(255,255,255,.16);
  color: var(--mint-bright);
}
.plan-card .breakdown-button.light:hover { color: white; background: transparent; }
.plan-card button:hover { transform: translateY(-1px); background: #f0faf5; }
.complete button { border-color: var(--mint-bright); background: var(--mint-bright); }
.plan-card button span { font-size: 16px; }

.package-difference {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .6fr);
  align-items: center;
  gap: 15px;
  margin: 38px 0;
  padding: 22px 25px;
  border-radius: 16px;
  background: #eaf8f1;
}
.package-difference h2 { margin: 7px 0 0; font: 800 25px/1.15 "Manrope"; letter-spacing: -.04em; }
.package-difference > div:not(:first-child) { padding: 12px; border-radius: 10px; background: white; text-align: center; }
.package-difference b { display: block; color: var(--green); font-size: 12px; }
.package-difference div > span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }

.comparison { margin: 0 0 90px; border: 1px solid var(--line); border-radius: 15px; background: white; overflow: hidden; }
.comparison summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 20px;
  cursor: pointer;
  list-style: none;
}
.comparison summary::-webkit-details-marker { display: none; }
.comparison summary small { display: block; color: var(--muted); font-size: 9px; }
.comparison summary strong { display: block; margin-top: 2px; font-size: 14px; }
.comparison summary > b { color: var(--green); font-size: 10px; }
.comparison summary i { margin-left: 5px; font-style: normal; font-size: 16px; }
.comparison[open] summary i { display: inline-block; transform: rotate(45deg); }
.comparison-content { padding: 4px 20px 20px; border-top: 1px solid var(--line); }
.comparison-heading { margin-bottom: 17px; }
.comparison h2 { margin: 7px 0 0; font: 800 30px "Manrope"; letter-spacing: -.04em; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: white; }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 12px; }
th, td { padding: 15px 17px; border-bottom: 1px solid #edf1ef; text-align: center; }
th:first-child, td:first-child { text-align: left; }
th { color: var(--green); background: #f1faf6; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:last-child td { border-bottom: 0; }
td:last-child { background: #f5fcf8; }
.tax-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 10px; }
.mobile-cta { display: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  transform: translate(-50%, 80px);
  opacity: 0;
  padding: 12px 18px;
  border-radius: 30px;
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  transition: .25s ease;
  font-size: 12px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1020px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
  }
  .plan-card {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  main { width: min(100% - 24px, 1240px); }
  .hero { display: block; padding: 25px 2px 22px; }
  .hero h1 { font-size: 38px; }
  .always-included { justify-content: flex-start; gap: 9px 16px; padding: 12px; }
  .always-included > strong { flex-basis: 100%; }
  .always-included div { font-size: 10px; }
  .free-domain-cta {
    gap: 8px;
    margin-bottom: 17px;
    padding: 9px;
  }
  .mini-address { padding: 4px 6px; font-size: 8px; }
  .free-domain-copy strong { font-size: 12px; }
  .free-domain-copy small { font-size: 8px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 11px; }
  .plan-card:hover { transform: translateY(-3px); }
  .package-notes { padding: 0 6px; text-align: left; }
  .plan-card { padding: 19px 18px 17px; border-radius: 16px; }
  .plan-top { padding-right: 0; }
  .complete .plan-top { padding-right: 72px; }
  .plan-top h2 { font-size: 24px; }
  .price-block { margin: 15px 0 13px; padding-bottom: 12px; }
  .price-block strong { font-size: 27px; }
  .plan-card ul { grid-template-columns: 1fr 1fr; gap: 9px 12px; margin-bottom: 16px; font-size: 10px; }
  .base-features { gap: 5px; }
  .base-features > div { padding: 8px; }
  .package-difference { grid-template-columns: 1fr; gap: 8px; margin: 28px 0; padding: 19px 16px; }
  .package-difference h2 { font-size: 23px; }
  .package-difference > div:not(:first-child) { display: flex; justify-content: space-between; text-align: left; padding: 9px 11px; }
  .package-difference div > span { margin: 0; }
  .comparison { margin-bottom: 30px; }
  .comparison summary { padding: 14px; }
  .comparison summary > b { font-size: 9px; }
  .comparison-content { padding: 2px 10px 14px; }
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    min-height: 65px;
    padding: 9px 12px;
    color: white;
    background: var(--ink);
    box-shadow: 0 -8px 25px rgba(0,0,0,.16);
  }
  .mobile-cta small { display: block; color: var(--mint-bright); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-cta strong { display: block; margin-top: 2px; font-size: 12px; }
  .mobile-cta button { width: auto; margin: 0; gap: 14px; border: 0; background: var(--mint-bright); padding: 10px 12px; }
}
