/* Conversion page - additions on top of redesign/styles.css */

/* Article style top */
.article-hero {
  padding: 28px 22px 36px;
  text-align: left;
}

.article-hero .title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.article-hero .byline {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.article-hero .byline .author {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.article-hero .byline .author .name {
  font-weight: 600;
}

.article-hero .byline .author .role {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.65;
}

/* Section copy block */
.copy-block {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.copy-block strong {
  font-weight: 700;
}

.copy-block em {
  font-style: italic;
  font-family: var(--f-serif);
  font-size: 19px;
}

/* Pull quote / heavy framing */
.pull {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Video card placeholder */
.video {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hair-d);
  background:
    radial-gradient(60% 80% at 50% 40%, rgba(245, 242, 235, 0.04), rgba(245, 242, 235, 0) 70%),
    repeating-linear-gradient(135deg,
      rgba(245, 242, 235, 0.04) 0 8px,
      rgba(245, 242, 235, 0.01) 8px 16px);
}

.video .label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.6;
}

.video .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video .play .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hair-d2);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
}

.video .play .pill .tri {
  width: 0;
  height: 0;
  border-left: 8px solid var(--bone);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Compare blocks (old vs new) */
.compare-card {
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 124px;
  box-sizing: border-box;
}

.compare-card .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 16px;
  border: 1.5px solid currentColor;
}

.compare-card .body-w {
  flex: 1;
}

.compare-card .lbl {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compare-card .txt {
  margin-top: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.78;
}

.compare-bad {
  background: rgba(196, 74, 60, 0.18);
  color: #F5D9D2;
  border: 1px solid rgba(196, 74, 60, 0.45);
}

.compare-bad .ic {
  color: #E27A6A;
}

.compare-good {
  background: rgba(45, 122, 95, 0.20);
  color: #C8E8D6;
  border: 1px solid rgba(45, 122, 95, 0.45);
}

.compare-good .ic {
  color: #62C29A;
}

.compare-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  font-size: 18px;
  opacity: 0.5;
}

/* Final compare verdict */
.verdict {
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-transform: uppercase;
}

.verdict-bad {
  background: rgba(196, 74, 60, 0.85);
  color: #fff;
}

.verdict-good {
  background: rgba(45, 122, 95, 0.85);
  color: #fff;
}

/* Bullet list with X icons (problem) */
.bullet-x {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}

.bullet-x .icx {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  margin-top: 3px;
}

.bullet-x .icx-x {
  background: #E27A6A;
  color: var(--ink);
}

.bullet-x .icx-no {
  background: transparent;
  color: #E27A6A;
  border: 1.5px solid #E27A6A;
}

.bullet-x .body-w b {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
}

.bullet-x .body-w .desc {
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.78;
}

/* Option card */
.opt-card {
  border-radius: 22px;
  padding: 28px 22px 26px;
  border: 1px solid var(--hair-d);
  background: rgba(245, 242, 235, 0.02);
}

.opt-card .opt-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.opt-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 12px 0 0;
}

.opt-card .desc {
  margin-top: 18px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
}

.opt-card .row-line {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opt-card .opt-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.opt-card .row-line .k {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
}

.opt-card .row-line .v {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.78;
}

.opt-card ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.78;
}

.opt-card .scarcity {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.opt-card .scarcity .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E27A6A;
}

/* Donut & bars */
.chart-card {
  border: 1px solid var(--hair-d);
  border-radius: 18px;
  padding: 22px;
}

.chart-card h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}

.chart-card .sub {
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: 13px;
  opacity: 0.6;
}

.donut {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

.donut svg {
  display: block;
}

.legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.legend .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 13px;
}

.legend .row .l {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.legend .row .sw {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend .row .v {
  font-weight: 600;
  font-family: var(--f-mono);
  font-size: 12px;
}

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 13px;
}

.bar-row .top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.bar-row .top .name {
  font-weight: 500;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-row .top .v {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.bar-row .track {
  height: 6px;
  border-radius: 6px;
  background: rgba(245, 242, 235, 0.08);
  overflow: hidden;
}

.bar-row .fill {
  height: 100%;
  border-radius: 6px;
}

/* Data card with big numerals */
.data-card {
  border: 1px solid var(--hair-d);
  border-radius: 18px;
  padding: 26px 22px;
}

.data-card .hdr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.data-card .hdr .mark {
  width: 4px;
  height: 18px;
  border-radius: 2px;
}

.data-card .hdr h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}

.data-card .sub {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.data-card .data-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--hair-d);
}

.data-card .data-row:first-of-type {
  border-top: none;
}

.data-card .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.data-card .lbl {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.78;
}

/* Process step card (numbered) */
.proc-card {
  border: 1px solid var(--hair-d);
  border-radius: 22px;
  padding: 32px 28px 30px;
  background: rgba(245, 242, 235, 0.015);
  position: relative;
}

.proc-card .n {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 5vw, 80px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  -webkit-text-stroke: 1.4px var(--bone);
  color: transparent;
}

.proc-card h4 {
  margin: 18px 0 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.proc-card p {
  margin: 12px 0 0;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  opacity: 0.72;
}

.result-card {
  border-radius: 18px;
  padding: 22px;
  background: rgba(45, 122, 95, 0.22);
  border: 1px solid rgba(45, 122, 95, 0.45);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.result-card .ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #62C29A;
  border: 1.5px solid currentColor;
  margin-top: 2px;
  font-size: 13px;
}

.result-card h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #C8E8D6;
}

.result-card p {
  margin: 8px 0 0;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: #C8E8D6;
  opacity: 0.85;
}

/* Math / cost card */
.math-card {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(196, 74, 60, 0.45);
  background: rgba(196, 74, 60, 0.12);
}

.math-card h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #F5D9D2;
}

.math-card p {
  margin: 10px 0 0;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: #F5D9D2;
  opacity: 0.95;
}

.math-card strong {
  font-weight: 700;
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--hair-d);
  cursor: pointer;
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--hair-d);
}

/* hide the default <details> ▶ marker */
.faq-item>summary {
  list-style: none;
}

.faq-item>summary::-webkit-details-marker {
  display: none;
}

.faq-item>summary::marker {
  display: none;
}

/* the summary IS the row - question + toggle side by side */
.faq-item>summary {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .q {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.3;
  flex: 1;
}

.faq-item .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hair-d2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 14px;
  transition: transform 0.2s;
}

.faq-item[open] .toggle {
  transform: rotate(45deg);
}

.faq-item>.copy-block {
  padding-bottom: 22px;
}

/* Brand strip marquee */
.brand-strip {
  background: var(--ink);
  border-top: 1px solid var(--hair-d);
  border-bottom: 1px solid var(--hair-d);
  padding: 26px 0;
  overflow: hidden;
}

.brand-strip .row {
  display: block;
  overflow: hidden;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

.brand-strip .row .track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: brandScroll 28s linear infinite;
  will-change: transform;
}

.brand-strip:hover .row .track {
  animation-play-state: paused;
}

.brand-strip .row .it {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
}

.brand-strip .row .mono {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-strip .row .track {
    animation: none;
  }
}

/* Sources list */
.sources {
  padding: 24px 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.55;
  word-break: break-all;
}

.sources b {
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Sticky bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: calc(100% - 32px);
  margin: 0;
  padding: 14px 18px 14px 22px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  z-index: 200;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5), 0 4px 12px -4px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
  z-index: 5;
}

.sticky-cta .arr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Popup form (shown statically as last "slide") */
.popup-wrap {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 22px 32px;
}

.popup {
  background: var(--bone);
  color: var(--ink);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.popup .popup-top {
  padding: 26px 24px 18px;
  background: var(--mist);
}

.popup .top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.popup .ic-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 13px;
}

.popup .close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
}

.popup .eyebrow-pop {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.popup .title-pop {
  margin-top: 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.popup .desc-pop {
  margin-top: 12px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
}

.popup .step-bd {
  padding: 22px 24px 26px;
  background: var(--bone);
}

.popup .step-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

.popup .step-q {
  margin-top: 6px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.popup .input-row {
  margin-top: 14px;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--hair-l2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.popup .input-row .prefix {
  padding: 14px 14px;
  font-family: var(--f-mono);
  font-size: 13px;
  background: var(--mist);
  color: rgba(10, 10, 10, 0.55);
  border-right: 1px solid var(--hair-l2);
}

.popup .input-row input {
  flex: 1;
  border: none;
  padding: 14px;
  font-family: var(--f-body);
  font-size: 14px;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.popup .progress {
  margin-top: 14px;
  display: flex;
  gap: 6px;
}

.popup .progress .pip {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: var(--hair-l);
}

.popup .progress .pip.on {
  background: var(--ink);
}

.popup .reassure {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  opacity: 0.75;
}

.popup .reassure .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D7A5F;
}

/* circular icon row */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--hair-d);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
}

.cta-secondary .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair-d2);
  font-size: 13px;
  font-family: var(--f-mono);
  font-weight: 600;
}

.cta-secondary .right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE: kill the phone frame, become a fluid landing page
   ────────────────────────────────────────────────────────────── */
body {
  background: var(--ink);
}

.stage {
  padding: 0 !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.stage-meta {
  display: none !important;
}

.phone {
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--ink);
}

.phone>section.ink-bg:first-child .status {
  display: none;
}

/* Section padding - fluid horizontal padding, NO column centering.
   Content width is controlled per-section via .dx-narrow / .dx-wide / .dx-xwide wrappers. */
.phone>section {
  padding-left: clamp(22px, 5vw, 80px);
  padding-right: clamp(22px, 5vw, 80px);
}

.section {
  padding-top: clamp(56px, 8vw, 128px);
  padding-bottom: clamp(64px, 9vw, 144px);
}

.article-hero {
  padding-top: clamp(28px, 5vw, 80px) !important;
  padding-bottom: clamp(36px, 6vw, 96px) !important;
}

.brand-strip {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

/* Content width wrappers - drop these around section content to opt into a width */
.dx-narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.dx-wide {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.dx-xwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* IMPORTANT: styles.css are `.phone > section > * { max-width: 720px }` (specificitate 0,1,1) care
   bate `.dx-xwide` (0,1,0) și prinde toate wrapper-ele la 720px. Le scopăm la nivel de secțiune
   (0,2,1) ca să câștige, și le unificăm la 960px (cât hero-ul). */
.phone>section>.dx-narrow,
.phone>section>.dx-wide,
.phone>section>.dx-xwide {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Default: direct children of .phone > section get .dx-narrow behavior (preserves the article-style read for any
   section that didn't get a wrapper). This is the safety net. */
.phone>section>*:not(.dx-narrow):not(.dx-wide):not(.dx-xwide):not(.nav):not(.status):not(.hair-d) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* the nav-only top section (status + nav) MUST be full-bleed - kill all section padding,
   then nav handles its own edge-aligned padding so logo is at viewport left, RO/EN at viewport right */
.phone>section:first-child,
.phone>section:first-of-type {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

.phone>section:first-child>.nav,
.phone>section:first-of-type>.nav {
  padding: clamp(14px, 1.6vw, 24px) clamp(22px, 5vw, 48px) !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.phone>section:first-child>.hair-d,
.phone>section:first-of-type>.hair-d {
  margin: 0 clamp(22px, 5vw, 48px) !important;
  max-width: none !important;
}

.phone>section:first-child>.status,
.phone>section:first-of-type>.status {
  display: none !important;
}

/* footer block: keep edge-to-edge, content centers itself */
footer.ink-bg,
.phone>section.ink-bg:last-of-type {
  padding-left: clamp(22px, 5vw, 64px) !important;
  padding-right: clamp(22px, 5vw, 64px) !important;
}

/* fluid type - bigger on desktop, but capped sensibly so words don't overflow narrow columns */
.article-hero .title {
  font-size: clamp(38px, 4.5vw, 80px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em;
}

.copy-block {
  font-size: clamp(16px, 1.15vw, 19px) !important;
  line-height: 1.55 !important;
}

.pull {
  font-size: clamp(22px, 2.4vw, 38px) !important;
  line-height: 1.2 !important;
}

.h1 {
  font-size: clamp(40px, 4.8vw, 80px) !important;
  line-height: 1.02 !important;
}

.h2 {
  font-size: clamp(32px, 3.6vw, 56px) !important;
  line-height: 1.05 !important;
}

.h3 {
  font-size: clamp(22px, 2.2vw, 32px) !important;
}

/* nav layout & logo size grow with viewport */
.nav {
  padding: clamp(14px, 1.6vw, 24px) clamp(22px, 5vw, 64px);
}

.nav .logo img {
  height: clamp(26px, 2.2vw, 32px);
}

/* brand strip animates across full width (marquee - no horizontal padding) */

/* sticky CTA on desktop sits centered, narrower */
@media (min-width: 720px) {
  .sticky-cta {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    max-width: 520px;
    width: calc(100% - 48px);
  }
}

/* ── tablet ≥ 720px ──────────────────────────────────────────── */
@media (min-width: 720px) {

  /* stats grid stays 2x2 but bigger */
  .phone>section .num-cell .num {
    font-size: clamp(72px, 8.5vw, 100px) !important;
  }
}

/* ── desktop ≥ 1024px ────────────────────────────────────────── */
@media (min-width: 1024px) {

  /* stats grid → 2x2 (2 rânduri × 2 coloane) */
  .phone>section[style*="row-gap"]>div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* two-options side by side */
  .phone>section>div[style*="flex-direction: column"][style*="gap: 18px"] {
    flex-direction: row !important;
    gap: 18px !important;
  }

  .opt-card {
    flex: 1 1 0;
  }

  /* compare side-by-side (vechea metoda + metoda noastra) */
  .compare-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* process / proc-card grid 2-up */
  .phone>section>div[style*="flex-direction: column"][style*="gap: 14px"]:has(> .proc-card) {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px !important;
  }

  /* flower bigger */
  .phone>section svg[width="320"] {
    width: 420px;
    height: 420px;
  }

  /* testimonial card wider */
  /* FAQ details narrower readable column */
}

/* ── ultra-wide ≥ 1440px ─────────────────────────────────────── */
/* Cap-urile per-element pe ultra-wide (880px / 1200px) au fost eliminate ca să unificăm
   width-ul tuturor secțiunilor pe .dx-xwide nativ (1280px). */

/* Excepție pentru secțiunile cu layout 2-coloane (compare-pair = Vechea metodă vs
   Arhitectura Conversiei, opt-grid = Două Opțiuni, stats-cards = Statistici 2026):
   primesc padding lateral mai mic pe desktop ȘI max-width mai mare (1440px) ca să
   depășească limita .dx-xwide (1280px) și să aibă loc pentru cele 2 coloane fără
   să se înghesuie. */
/* Hero la 960px - exact același breakpoint (720px) și lățime ca video-ul, ca să fie identice și aliniate */
@media (min-width: 720px) {
  .article-hero .hero-grid {
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   MENU OVERLAY - full-screen ink panel with bone nav items
   ────────────────────────────────────────────────────────────── */
.dx-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bone);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-y: auto;
}

.dx-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.dx-menu-inner {
  width: 100%;
  max-width: 1280px;
  padding: clamp(20px, 3vw, 40px) clamp(22px, 5vw, 64px) clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.dx-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dx-menu-top .logo img {
  display: block;
}

.dx-menu-close {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--hair-d2);
  color: var(--bone);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dx-menu-close span {
  position: absolute;
  width: 18px;
  height: 1.6px;
  background: var(--bone);
  border-radius: 2px;
}

.dx-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.dx-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.dx-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.dx-menu-nav li {
  border-top: 1px solid var(--hair-d);
}

.dx-menu-nav li:last-child {
  border-bottom: 1px solid var(--hair-d);
}

.dx-menu-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 2.4vw, 28px) 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s, padding-left 0.2s;
}

.dx-menu-nav a:hover {
  opacity: 0.7;
  padding-left: 8px;
}

.dx-menu-nav .t {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.0;
}

.dx-menu-nav .d {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.dx-menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hair-d);
  font-family: var(--f-body);
}

.dx-menu-footer .col .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
}

.dx-menu-footer .col .v {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.dx-menu-footer .col .v a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.dx-menu-footer .col .v a:hover {
  opacity: 1;
}

.dx-menu-footer .col .v .active {
  font-weight: 700;
}

.dx-menu-footer .col .v .slash {
  opacity: 0.35;
  margin: 0 4px;
}

@media (max-width: 600px) {
  .dx-menu-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ──────────────────────────────────────────────────────────────
   DESKTOP LAYOUT - multi-column reorganizations at ≥1024px
   ────────────────────────────────────────────────────────────── */

/* video → real 16:9 hero on desktop, centered, 960px (cât hero-ul și restul secțiunilor) */
@media (min-width: 720px) {
  .video {
    height: auto !important;
    aspect-ratio: 16 / 9;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* tablet ≥ 720px: bigger stats numbers */
@media (min-width: 720px) {
  .num-cell .num {
    font-size: clamp(72px, 8.5vw, 100px) !important;
  }
}

/* ── DESKTOP ≥ 1024px ───────────────────────────────────────── */
@media (min-width: 1024px) {

  /* STATS GRID → 2x2 (2 rânduri × 2 coloane) */
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 48px 40px !important;
  }

  .stats-grid .num-cell .num {
    font-size: clamp(80px, 7.5vw, 120px) !important;
  }

  /* ── All other multi-column splits DISABLED - content stays single column on desktop ── */
  .problem-grid,
  .whonot-grid,
  .build-grid,
  .faq-grid {
    display: block !important;
    grid-template-columns: none !important;
  }

  /* compare-pair STAYS 2 columns on desktop (vechea metoda + Arhitectura Conversiei side-by-side) */
  .compare-pair {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    align-items: start !important;
  }

  /* on desktop the columns are side-by-side - no top push needed */
  .compare-col-new {
    margin-top: 0 !important;
  }

  .problem-bullets,
  .whonot-bullets,
  .proc-grid,
  .cost-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    grid-template-columns: none !important;
  }

  /* TWO OPTIONS: side-by-side on desktop, equal height, BUTTONS aligned at the same Y */
  .opt-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    align-items: stretch !important;
    flex-direction: initial !important;
  }

  .opt-grid>.opt-card {
    display: flex !important;
    flex-direction: column !important;
  }

  /* The .opt-footer wraps button + (optional) scarcity. It's pushed to the bottom of the card.
     The button sits at the TOP of the footer, so cards with and without scarcity both have their
     button at the same Y position. The scarcity (if present) sits below the button. */
  .opt-grid>.opt-card>.opt-footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Tighter padding inside opt-card buttons so longer Romanian copy fits comfortably.
     The arrow pill is sized so its right edge plus padding is at least half the button
     height - guarantees the circle never visually breaks out of the pill's rounded edge. */
  .opt-grid>.opt-card .btn {
    padding: 12px 14px 12px 20px !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    align-items: center !important;
  }

  .opt-grid>.opt-card .btn .arr {
    width: 22px !important;
    height: 22px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .problem-grid .problem-head,
  .whonot-grid .whonot-head,
  .build-grid .build-head,
  .faq-grid .faq-head {
    position: static !important;
    margin-bottom: 36px;
  }

  /* bullets re-gain their default top margin since they're no longer in a grid */
  .problem-bullets .bullet-x,
  .whonot-bullets .bullet-x {
    margin-top: 0 !important;
  }

  /* bullet icons bump for desktop - they were 22px which looks tiny next to the bigger type */
  .bullet-x .icx {
    width: 36px !important;
    height: 36px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    margin-top: 2px !important;
  }

  .bullet-x .icx-no {
    border-width: 2px !important;
  }

  .bullet-x {
    gap: 18px !important;
  }

  .bullet-x .body-w b {
    font-size: clamp(16px, 1.2vw, 19px);
  }

  .bullet-x .body-w .desc {
    font-size: clamp(14px, 1.05vw, 16px);
    margin-top: 8px;
  }

  /* TESTIMONIAL: bigger pad, bigger quote */
  .testimonial-card {
    padding: 56px 56px !important;
    max-width: 1024px !important;
  }

  .testimonial-card>span:first-child {
    font-size: 48px !important;
  }

  /* FLOWER DIAGRAM: bigger SVG - scales fluidly with viewport */
  .flower-wrap svg {
    width: clamp(540px, 55vw, 800px) !important;
    height: clamp(540px, 55vw, 800px) !important;
  }

  /* STATISTICS - chart cards in a 2-col masonry-style grid on desktop */
  .stats-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
    flex-direction: initial !important;
  }

  .stats-cards .chart-card,
  .stats-cards .data-card {
    padding: 32px 28px;
  }

  .stats-cards .data-card h4,
  .stats-cards .chart-card h4 {
    font-size: 22px;
  }

  .stats-cards .data-card .num {
    font-size: 32px;
  }

  .stats-cards .donut svg {
    width: 220px;
    height: 220px;
  }

  /* Last card (odd one out) spans the full grid width */
  .stats-cards> :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* ARTICLE HERO: stay stacked - title gets full container width to breathe; byline sits below left-aligned */
  .hero-grid {
    display: block;
  }

  .hero-grid .hero-title-block {
    max-width: none;
  }

  .hero-grid .byline {
    margin-top: 36px;
  }

  /* INTRO COPY: stacked single column on all widths - pull quote large above, body below */
  .intro-grid {
    display: block;
  }

  .intro-grid>.copy-block+.copy-block {
    margin-top: 32px;
  }

  /* GUARANTEE: text aliniat la stânga (ca restul secțiunilor),
     butoanele CENTRATE pe lățimea ecranului */
  .guarantee-wrap {
    text-align: left;
  }

  .guarantee-wrap .eyebrow {
    display: flex;
  }

  .guarantee-wrap h2 {
    text-align: left;
  }

  .guarantee-wrap p {
    text-align: left;
  }

  .guarantee-wrap .btn-block {
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
  }

  .guarantee-wrap .cta-stack {
    max-width: 480px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* All major page-level CTAs (btn-block directly inside .dx-narrow, .dx-wide or the section itself) capped + centered.
     Does NOT affect buttons inside cards (opt-card, proc-card, etc.) - those keep their full-width footer behavior.
     display:flex is required: .btn is inline-flex, and auto margins don't center inline-level boxes. */
  .dx-narrow>.btn-block,
  .dx-wide>.btn-block,
  .phone>section>.btn-block {
    display: flex !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Secondary contact rows under a page-level CTA: same cap, same center */
  .dx-narrow>.cta-stack,
  .dx-wide>.cta-stack,
  .phone>section>.cta-stack {
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Make sure section padding doesn't squeeze our wide wrappers */
  .phone>section {
    padding-left: clamp(40px, 5vw, 80px);
    padding-right: clamp(40px, 5vw, 80px);
  }
}

/* ── ULTRA-WIDE ≥ 1440px ────────────────────────────────────── */
@media (min-width: 1440px) {
  .phone>section {
    padding-left: clamp(64px, 6vw, 120px);
    padding-right: clamp(64px, 6vw, 120px);
  }

  .testimonial-card {
    max-width: 1120px !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   MED REVIEW SWIPER - horizontal scroll-snap carousel
   (dark cards on ink-bg, 3 visible on desktop, 1 on mobile)
   ────────────────────────────────────────────────────────────── */
.med-review-swiper {
  max-width: none !important;
}

.med-review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* break out of section padding so the track touches viewport edges */
  margin-left: calc(clamp(22px, 5vw, 80px) * -1);
  margin-right: calc(clamp(22px, 5vw, 80px) * -1);
  padding: 4px clamp(22px, 5vw, 80px);
}

.med-review-track::-webkit-scrollbar {
  display: none;
}

.med-review-card.med-review-slide {
  flex: 0 0 calc(100% - clamp(22px, 5vw, 80px) * 2);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-width: 0;
  border: 1px solid var(--hair-d);
  border-radius: 18px;
  padding: 32px 28px 28px;
  background: rgba(245, 242, 235, 0.02);
  display: flex;
  flex-direction: column;
}

@media (min-width: 720px) {
  .med-review-card.med-review-slide {
    flex-basis: min(540px, 70%);
    scroll-snap-align: start;
  }
}

@media (min-width: 1024px) {
  .med-review-card.med-review-slide {
    flex-basis: calc((100% - clamp(22px, 5vw, 80px) * 2 - 36px) / 3);
    padding: 36px 32px 32px;
  }
}

.med-review-card .quote-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--bone);
}

.med-review-card .quote-body {
  margin-top: 18px;
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245, 242, 235, 0.65);
  flex: 1;
}

.med-review-card .person {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.med-review-card .person .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 242, 235, 0.08);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.med-review-card .person .name {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--bone);
}

.med-review-card .person .role {
  margin-top: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 235, 0.55);
}

.med-review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.med-review-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bone);
  opacity: 0.25;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.med-review-dots .dot:hover {
  opacity: 0.7;
}

.med-review-dots .dot.on {
  opacity: 1;
  transform: scale(1.2);
}

/* ──────────────────────────────────────────────────────────────
   FOOTER (same as /redesign) - capped so "Digital Interaction"
   never overflows the viewport horizontally
   ────────────────────────────────────────────────────────────── */
.dx-footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  border-top: 1px solid var(--hair-d);
}

.dx-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.dx-footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair-d);
}

@media (min-width: 720px) {
  .dx-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (min-width: 1024px) {
  .dx-footer-cols {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.dx-footer-cols .brand-col img {
  height: 44px;
  display: block;
  filter: invert(1);
  margin-bottom: 24px;
}

.dx-footer-cols .brand-col p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.6;
  max-width: 280px;
  margin: 0;
}

.dx-footer-cols .col h5 {
  margin: 0 0 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
}

.dx-footer-cols .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dx-footer-cols .col ul li {
  font-family: var(--f-body);
  font-size: 14px;
  opacity: 0.9;
}

.dx-footer-cols .col ul li a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s;
}

.dx-footer-cols .col ul li a:hover {
  opacity: 0.6;
}

/* Big wordmark - sized so "Digital Interaction" fits viewport on all widths.
   19 chars * ~0.5 em per char ≈ 9.5em wide. To fit in 100vw: font-size ≤ ~10vw.
   Use 9.5vw with a sensible mobile floor and ultra-wide ceiling. */
.dx-footer-wordmark {
  margin-top: 56px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 200px);
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-align: center;
  white-space: nowrap;
  /* no overflow:hidden - let it render fully on every viewport */
}

.dx-footer-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: center;
}

.dx-footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s;
}

.dx-footer-bottom a:hover {
  opacity: 1;
}

@media (min-width: 720px) {
  .dx-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Sticky CTA fades out when footer enters viewport (JS toggles .is-hidden) */
.sticky-cta {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}