:root {
  --bg: #0c1210;
  --bg2: #13201c;
  --text: #e7f0eb;
  --muted: #9bb0a6;
  --accent: #3dba8b;
  --accent2: #c4a35a;
  --line: #24352f;
  --font-display: "Manrope", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 80% -10%, #1a3a30 0%, transparent 55%),
    radial-gradient(700px 400px at 0% 20%, #2a2818 0%, transparent 50%),
    var(--bg);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(12, 18, 16, 0.85);
  z-index: 20;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover { color: var(--text); }

.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      105deg,
      rgba(12, 18, 16, 0.96) 0%,
      rgba(12, 18, 16, 0.82) 38%,
      rgba(12, 18, 16, 0.45) 62%,
      rgba(12, 18, 16, 0.55) 100%
    ),
    linear-gradient(180deg, transparent 35%, rgba(12, 18, 16, 0.88) 100%),
    var(--hero-image, url("/assets/sofon-hero-bg.png"));
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 36rem;
}


.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  margin: 0.2rem 0;
  letter-spacing: -0.03em;
}

.eyebrow {
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin: 0;
}

.lead {
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn.primary {
  background: var(--accent);
  color: #062218;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.section {
  padding: 3.5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.section.alt {
  max-width: none;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.alt .grid,
.section.alt h2 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.grid article:not(.product-card) {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  background: rgba(0, 0, 0, 0.15);
}

.grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
}

.grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.note { color: var(--muted); }

.price-table {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.price-table span { color: var(--muted); }
.price-table strong { font-family: var(--font-display); }

.cta {
  text-align: center;
}

.links {
  margin-top: 1rem;
  color: var(--muted);
}

.links a { color: var(--accent); }

.footer {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a { color: var(--muted); }

/* Chat widget */
.sofon-launcher {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #062218;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.9rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sofon-panel {
  position: fixed;
  right: 1.1rem;
  bottom: 4.4rem;
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 6rem));
  background: #101816;
  border: 1px solid var(--line);
  border-radius: 16px;
  z-index: 50;
  display: none;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.sofon-panel.open { display: flex; }

.sofon-panel > header,
.sofon-panel > .sofon-messages,
.sofon-panel > .sofon-calendar,
.sofon-panel > .sofon-brief,
.sofon-panel > .sofon-form {
  border-radius: inherit;
}

.sofon-panel > header {
  border-radius: 16px 16px 0 0;
}

.sofon-panel > .sofon-form {
  border-radius: 0 0 16px 16px;
}

body.sofon-resizing {
  user-select: none;
}

.sofon-resize {
  position: absolute;
  z-index: 5;
  background: transparent;
  touch-action: none;
}

.sofon-resize-n {
  top: -6px;
  left: 12px;
  right: 12px;
  height: 12px;
  cursor: ns-resize;
}

.sofon-resize-s {
  bottom: -6px;
  left: 12px;
  right: 12px;
  height: 12px;
  cursor: ns-resize;
}

.sofon-resize-e {
  top: 12px;
  bottom: 12px;
  right: -6px;
  width: 12px;
  cursor: ew-resize;
}

.sofon-resize-w {
  top: 12px;
  bottom: 12px;
  left: -6px;
  width: 12px;
  cursor: ew-resize;
}

.sofon-resize-ne {
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  cursor: nesw-resize;
}

.sofon-resize-nw {
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  cursor: nwse-resize;
}

.sofon-resize-se {
  right: -6px;
  bottom: -6px;
  width: 18px;
  height: 18px;
  cursor: nwse-resize;
}

.sofon-resize-sw {
  left: -6px;
  bottom: -6px;
  width: 18px;
  height: 18px;
  cursor: nesw-resize;
}

.sofon-resize-se::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(61, 186, 139, 0.7);
  border-bottom: 2px solid rgba(61, 186, 139, 0.7);
}

.sofon-panel header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
}

.sofon-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sofon-bubble {
  max-width: 90%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  line-height: 1.45;
  font-size: 0.92rem;
}

.sofon-bubble.bot {
  align-self: flex-start;
  background: #18241f;
  border: 1px solid var(--line);
  white-space: normal;
}

.sofon-bubble.user {
  align-self: flex-end;
  background: #1d3a32;
  white-space: pre-wrap;
}

.sofon-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  padding: 0.7rem;
  border-top: 1px solid var(--line);
}

.sofon-form textarea {
  resize: none;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0c1210;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font: inherit;
}

.sofon-form button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #062218;
  font-weight: 700;
  padding: 0 0.9rem;
  cursor: pointer;
}

.sofon-bubble.bot h2 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.sofon-bubble.bot h2:first-child { margin-top: 0; }

.sofon-bubble.bot h3 {
  margin: 0.45rem 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.sofon-bubble.bot h3:first-child { margin-top: 0; }

.sofon-bubble.bot p {
  margin: 0.35rem 0;
}

.sofon-bubble.bot p:first-child { margin-top: 0; }
.sofon-bubble.bot p:last-child { margin-bottom: 0; }

.sofon-bubble.bot ul,
.sofon-bubble.bot ol {
  margin: 0.4rem 0;
  padding-left: 1.15rem;
}

.sofon-bubble.bot li {
  margin: 0.2rem 0;
  line-height: 1.45;
}

.sofon-bubble.bot li::marker {
  color: var(--accent);
}

.sofon-calendar {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.65rem 0.7rem;
  max-height: 280px;
  overflow: auto;
  flex-shrink: 0;
}

.sofon-crm-cal {
  display: grid;
  gap: 0.45rem;
}

.sofon-crm-head {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 0.35rem;
}

.sofon-crm-head button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 8px;
  height: 30px;
  cursor: pointer;
  font-size: 1.1rem;
}

.sofon-crm-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.sofon-crm-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
}

.sofon-crm-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.sofon-crm-day {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 8px;
  min-height: 28px;
  font: inherit;
  font-size: 0.78rem;
  cursor: default;
}

.sofon-crm-day.empty {
  background: transparent;
  border: 0;
}

.sofon-crm-day.has-slots {
  color: var(--text);
  border-color: rgba(61, 186, 139, 0.4);
  background: rgba(61, 186, 139, 0.12);
  cursor: pointer;
}

.sofon-crm-day.has-slots:hover {
  border-color: var(--accent);
}

.sofon-crm-day.is-selected {
  background: rgba(61, 186, 139, 0.35);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.sofon-crm-day:disabled {
  opacity: 0.45;
  cursor: default;
}

.sofon-crm-times-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.sofon-crm-times-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sofon-crm-times-row button {
  border: 1px solid rgba(61, 186, 139, 0.45);
  background: rgba(61, 186, 139, 0.12);
  color: var(--text);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.sofon-crm-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.sofon-cal-day {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  background: rgba(0, 0, 0, 0.18);
}

.sofon-cal-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.sofon-cal-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sofon-cal-times button,
.sofon-cal-skip {
  border: 1px solid rgba(61, 186, 139, 0.45);
  background: rgba(61, 186, 139, 0.12);
  color: var(--text);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.sofon-cal-skip {
  width: 100%;
  border-radius: 10px;
  margin-top: 0.15rem;
}

.sofon-brief {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sofon-brief a,
.sofon-brief button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  nav a:not(.nav-cta) { display: none; }
}

.btn, .nav-cta, .sofon-launcher {
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover, .nav-cta:hover, .sofon-launcher:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.btn:active, .nav-cta:active, .sofon-launcher:active {
  transform: scale(0.97);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-lead {
  color: var(--muted);
  margin: -0.4rem 0 1.25rem;
  max-width: 36rem;
}

/* About underlay */
.about-band {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 4rem 1.5rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  z-index: 0;
}

.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12, 18, 16, 0.94) 0%,
    rgba(12, 18, 16, 0.78) 42%,
    rgba(12, 18, 16, 0.45) 100%
  );
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.about-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.85rem;
}

.about-text {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.05rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.stages-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.35rem;
  color: var(--accent2);
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  background: rgba(8, 14, 12, 0.55);
  backdrop-filter: blur(6px);
  display: grid;
  overflow: hidden;
}

.step-thumb {
  height: 88px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  color: var(--accent2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.9rem 0.15rem;
  text-transform: uppercase;
}

.step-label {
  font-size: 0.98rem;
  line-height: 1.35;
  padding: 0 0.9rem 0.9rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Products band */
.products-band {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.35;
}

.products-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 16, 0.88) 0%,
    rgba(12, 18, 16, 0.94) 100%
  );
}

.products-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.products-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.step-label {
  font-size: 0.98rem;
  line-height: 1.35;
}

/* Product cards + overlay */
.product-card {
  position: relative;
  isolation: isolate;
  min-height: 210px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.product-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 12, 0.35), rgba(8, 14, 12, 0.88));
}

.product-card-body {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.product-card p {
  margin: 0;
  color: #c5d5cc;
  line-height: 1.4;
  font-size: 0.95rem;
}

.product-more {
  margin-top: 0.7rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
}

.product-overlay:not([hidden]) {
  display: grid;
}

.product-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 7, 0.72);
}

.product-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  height: min(560px, 84vh);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101816;
  transform: scale(0.86);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.product-overlay.is-open .product-overlay-panel {
  transform: scale(1);
  opacity: 1;
}

.overlay-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  z-index: 3;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
}

.overlay-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.overlay-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.overlay-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 12, 0.62), rgba(8, 14, 12, 0.94));
}

.overlay-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  padding: clamp(0.9rem, 2vh, 1.25rem) clamp(1rem, 2.2vw, 1.45rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.35rem, 1vh, 0.6rem);
  justify-content: flex-start;
}

.overlay-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vh, 1.55rem);
  margin: 0;
  line-height: 1.2;
  padding-right: 2.2rem;
}

.overlay-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.metric-chip {
  border: 1px solid rgba(61, 186, 139, 0.35);
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
  background: rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.1rem;
}

.metric-chip strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vh, 1.15rem);
  color: var(--accent);
  line-height: 1.15;
}

.metric-chip span {
  font-size: clamp(0.68rem, 1.3vh, 0.78rem);
  color: var(--muted);
  line-height: 1.2;
}

.overlay-body {
  margin: 0;
  font-size: clamp(0.82rem, 1.55vh, 0.95rem);
  line-height: 1.4;
  color: #d7e4dc;
}

.overlay-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.75rem 1rem;
  flex: 1;
  min-height: 0;
}

.overlay-copy h4 {
  margin: 0 0 0.3rem;
  font-size: clamp(0.75rem, 1.35vh, 0.88rem);
  color: var(--accent2);
  letter-spacing: 0.03em;
}

.overlay-copy ul {
  margin: 0;
  padding-left: 1rem;
  color: #c5d5cc;
  line-height: 1.32;
  font-size: clamp(0.74rem, 1.4vh, 0.88rem);
}

.overlay-copy li + li {
  margin-top: 0.18rem;
}

.overlay-note {
  margin: auto 0 0;
  font-size: clamp(0.68rem, 1.2vh, 0.78rem);
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .overlay-metrics {
    grid-template-columns: 1fr;
  }

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

/* Pricing premium */
.pricing-band {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}

.pricing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 16, 0.9), rgba(12, 18, 16, 0.96));
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.price-groups {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.price-group h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--accent2);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: rgba(10, 16, 14, 0.72);
  min-height: 140px;
}

.price-card--sla {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  min-height: 168px;
}

.price-card--sla .price-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--sla-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.price-card--sla .price-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 12, 0.45), rgba(8, 14, 12, 0.9));
}

.price-card--sla .price-card-body {
  position: relative;
  z-index: 1;
  padding: 1rem 1.05rem;
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.price-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.price-badge {
  font-size: 0.72rem;
  color: #062218;
  background: var(--accent2);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.price-range {
  margin: 0.55rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.calculator {
  margin-top: 2rem;
  padding: 1.35rem 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(22, 36, 31, 0.95), rgba(10, 16, 14, 0.92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.calc-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.calc-label {
  margin: 1rem 0 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.calc-chips,
.calc-sla-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calc-chip {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.calc-chip:hover {
  border-color: var(--accent);
}

.calc-chip.is-on,
.calc-chip[aria-pressed="true"] {
  background: var(--accent);
  color: #062218;
  border-color: var(--accent);
}

.sla-comment {
  min-height: 2.8rem;
  margin: 0.75rem 0 0;
  color: #c5d5cc;
  font-size: 0.95rem;
  line-height: 1.45;
}

.calc-months-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(0, 0, 0, 0.25);
}

.stepper button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #1d3a32;
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
}

.stepper input {
  width: 48px;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.calc-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 0.5rem;
}

.calc-result > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: rgba(0, 0, 0, 0.22);
}

.calc-result span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.calc-result strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.calc-cta {
  justify-content: center;
  margin-top: 1rem;
}

/* CTA centered with bot */
.cta {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cta-bot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(61, 186, 139, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}

.cta-actions {
  justify-content: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.55rem;
}

.cta p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.1rem;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .calc-result {
    grid-template-columns: 1fr;
  }

  .product-overlay-panel {
    height: min(620px, 86vh);
  }
}
