:root {
  --bg: #fff7f1;
  --bg-elevated: #ffffff;
  --ink: #1a1520;
  --muted: #6b6170;
  --line: rgba(26, 21, 32, 0.08);
  --accent: #ff6a1a;
  --accent-2: #ff9d2e;
  --accent-soft: rgba(255, 106, 26, 0.14);
  --shadow: 0 18px 50px rgba(255, 106, 26, 0.10);
  --radius: 22px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 8% -8%, rgba(255, 154, 46, 0.38), transparent 58%),
    radial-gradient(780px 480px at 96% 4%, rgba(255, 90, 40, 0.22), transparent 52%),
    radial-gradient(700px 420px at 70% 18%, rgba(255, 214, 102, 0.28), transparent 55%),
    radial-gradient(560px 360px at 18% 42%, rgba(255, 122, 162, 0.14), transparent 60%),
    radial-gradient(640px 400px at 88% 72%, rgba(64, 196, 255, 0.12), transparent 58%),
    linear-gradient(180deg, #fff3e8 0%, #fff8f2 35%, #fff5ec 70%, #ffefe4 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.ec-shell { min-height: 100vh; display: flex; flex-direction: column; }
.ec-container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.ec-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 247, 241, 0.78);
  border-bottom: 1px solid var(--line);
}
.ec-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.ec-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.ec-brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.ec-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}
.ec-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.ec-nav-links a:hover { color: var(--ink); }
.ec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ec-btn:hover { transform: translateY(-1px); }
.ec-btn-primary {
  background: linear-gradient(135deg, #ff9a3c, #ff5a1f);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.32);
}
.ec-btn-primary:hover {
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.4);
}
.ec-btn-secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--line);
}
.ec-btn-chrome {
  background: linear-gradient(135deg, #ffb347, #ff6a1a 55%, #ff4d6d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 106, 26, 0.3);
}
.ec-btn-lg { padding: 1rem 1.45rem; font-size: 1rem; }

.ec-hero {
  padding: 3.5rem 0 2rem;
  animation: ecFadeUp .7s ease both;
}
.ec-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}
.ec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ec-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 14ch;
}
.ec-rotate {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  text-align: left;
  overflow: hidden;
  height: 1.05em;
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.ec-rotate-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  color: var(--accent);
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.ec-rotate-word.is-visible {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ec-rotate-word.is-hidden {
  opacity: 0;
  transform: translateY(-110%);
}
.ec-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ec-hero p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 38ch;
}
.ec-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.ec-hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.ec-hero-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -50px;
  background: radial-gradient(circle, rgba(255,106,26,.28), transparent 70%);
}
.ec-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.2rem;
  position: relative;
}
.ec-stat {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
}
.ec-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}
.ec-stat span { color: var(--muted); font-size: 0.82rem; font-weight: 600; }

.ec-section { padding: 1.5rem 0 4rem; }
.ec-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.ec-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}
.ec-section-head p { margin: 0.35rem 0 0; color: var(--muted); }

.ec-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}
.ec-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: .2s ease;
}
.ec-chip:hover, .ec-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.ec-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: ecFadeUp .55s ease both;
}
.ec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.ec-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(255,154,46,.12), rgba(255,90,40,.10)),
    #fff1e6;
  overflow: hidden;
  position: relative;
}
.ec-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.ec-card:hover .ec-card-media img { transform: scale(1.04); }
.ec-card-body { padding: 1.1rem 1.15rem 1.25rem; }
.ec-card-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.ec-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.ec-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ec-card-foot span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.ec-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
}

.ec-detail-hero {
  padding: 2.4rem 0 1rem;
  animation: ecFadeUp .6s ease both;
}
.ec-breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.ec-breadcrumb a:hover { color: var(--accent); }
.ec-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.ec-gallery {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ec-gallery-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  aspect-ratio: 16 / 10;
  background: #fff1e6;
  scrollbar-width: none;
}
.ec-gallery-track::-webkit-scrollbar { display: none; }
.ec-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.ec-gallery-slide img,
.ec-gallery-slide iframe,
.ec-gallery-video,
.ec-gallery-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
.ec-gallery-video {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
}
.ec-gallery-empty {
  display: grid;
  place-items: center;
  height: 100%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}
.ec-gallery-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a3c, #ff5a1f);
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease;
}
.ec-gallery-play:hover { transform: scale(1.06); }
.ec-gallery-play span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.ec-gallery-nav {
  position: absolute;
  top: 0;
  bottom: 78px;
  margin-block: auto;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
}
.ec-gallery-prev { left: 12px; }
.ec-gallery-next { right: 12px; }
.ec-gallery-nav:hover { background: #fff; }
.ec-thumbs {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ec-thumb {
  position: relative;
  width: 78px;
  height: 56px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex: 0 0 auto;
  opacity: 0.75;
  background: #eee;
}
.ec-thumb.is-active, .ec-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}
.ec-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ec-thumb-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.ec-thumb-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.ec-detail-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.ec-detail-panel .ec-kicker { margin-bottom: 0.7rem; }
.ec-detail-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.ec-detail-panel .lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.ec-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}
.ec-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.ec-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.ec-meta strong { color: var(--ink); }

.ec-content {
  margin-top: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem 1.6rem;
}
.ec-content h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.ec-content-body {
  color: #2d3642;
  line-height: 1.7;
  font-size: 1.02rem;
}
.ec-content-body p { margin: 0 0 1rem; }
.ec-content-body ul { padding-left: 1.2rem; }

.ec-related { margin-top: 2.5rem; }

.ec-page {
  padding: 3rem 0 4rem;
}
.ec-page-card {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 820px;
}
.ec-page-card.ec-legal {
  max-width: 920px;
}
.ec-legal-body h2 {
  margin: 1.6rem 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ec-legal-body p {
  margin: 0 0 .85rem;
  color: #2d3642;
  line-height: 1.7;
}
.ec-legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #2d3642;
  line-height: 1.7;
}
.ec-legal-body li { margin-bottom: .35rem; }
.ec-legal-updated {
  color: var(--muted) !important;
  font-size: .95rem;
}
.ec-page-card h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.ec-form { display: grid; gap: 0.9rem; }
.ec-form label { font-weight: 700; font-size: 0.9rem; }
.ec-form input, .ec-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fff;
}
.ec-form textarea { min-height: 140px; resize: vertical; }
.ec-char-count {
  margin-top: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}
.ec-char-count.is-limit { color: #dc2626; }
.ec-captcha-wrap { display: grid; gap: .55rem; }
.ec-captcha-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.ec-captcha-image {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff7f1;
  height: 52px;
  width: 160px;
  object-fit: cover;
}
.ec-alert {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--accent-soft);
  color: #c2410c;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ec-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0 1.5rem;
}
.ec-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.ec-footer h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.ec-footer p, .ec-footer a { color: var(--muted); }
.ec-footer a:hover { color: var(--ink); }
.ec-footer-links { display: grid; gap: 0.45rem; }
.ec-copy {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes ecFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .ec-hero-grid,
  .ec-detail-grid,
  .ec-footer-grid,
  .ec-grid { grid-template-columns: 1fr 1fr; }
  .ec-detail-panel { position: static; }
  .ec-nav-links .hide-sm { display: none; }
}
@media (max-width: 680px) {
  .ec-hero-grid,
  .ec-detail-grid,
  .ec-footer-grid,
  .ec-grid,
  .ec-stat-row { grid-template-columns: 1fr; }
  .ec-hero { padding-top: 2rem; }
  .ec-nav-links { gap: 0.8rem; }
}

/* —— Product pricing plans —— */
.ec-pricing {
  padding: 3.5rem 0 1rem;
}
.ec-pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.ec-pricing-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.ec-pricing-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ec-pricing-sub {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.02rem;
}
.ec-pricing-sub strong { color: var(--ink); font-weight: 700; }

.ec-pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(26, 21, 32, 0.05);
}
.ec-pricing-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.ec-pricing-toggle-btn.is-active {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.ec-pricing-save-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.ec-pricing-toggle-btn.is-active .ec-pricing-save-pill {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.ec-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}
.ec-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.1);
  border-radius: 28px;
  padding: 1.75rem 1.45rem 1.45rem;
  box-shadow: 0 14px 40px rgba(26, 21, 32, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ec-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(26, 21, 32, 0.08);
}
.ec-plan-card.is-featured {
  border-color: #2563eb;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.12);
  padding-top: 2.1rem;
}
.ec-plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #2563eb;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}
.ec-plan-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ec-plan-tagline {
  margin: 0.35rem 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.ec-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}
.ec-plan-currency {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}
.ec-plan-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.ec-plan-period {
  margin-left: 0.25rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}
.ec-plan-save {
  min-height: 1.25rem;
  margin: 0 0 1.25rem;
  color: #15803d;
  font-size: 0.85rem;
  font-weight: 700;
}
.ec-plan-save.is-hidden,
.ec-plan-save.is-spacer { visibility: hidden; }

.ec-plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}
.ec-plan-features li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}
.ec-plan-check {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: #dbeafe;
  position: relative;
}
.ec-plan-check::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.28rem;
  width: 0.32rem;
  height: 0.55rem;
  border: solid #2563eb;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ec-plan-card.is-featured .ec-plan-check {
  background: #2563eb;
}
.ec-plan-card.is-featured .ec-plan-check::after {
  border-color: #fff;
}

.ec-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 21, 32, 0.14);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ec-plan-cta:hover {
  border-color: rgba(26, 21, 32, 0.28);
  transform: translateY(-1px);
}
.ec-plan-cta.is-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}
.ec-plan-cta.is-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.ec-pricing-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.ec-pricing-guarantee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex: 0 0 auto;
}
.ec-related-wrap { padding: 2.5rem 0 1rem; }

@media (max-width: 960px) {
  .ec-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .ec-plan-card.is-featured { order: -1; }
}
