/* ═══════════════════════════════════════
   COMPONENTS — Cards, Forms, Features
   ═══════════════════════════════════════ */


/* ── Callouts (hero badges) ── */

.callouts {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.74rem;
  color: var(--text-ter);
}

.callouts span {
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.callouts .cd {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.callouts .cs {
  color: var(--border);
  user-select: none;
}


/* ── Hero text ── */

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 1.4rem;
  max-width: 360px;
  line-height: 1.6;
  font-weight: 300;
}

.h-points {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.6rem;
}

.h-points li {
  font-size: 0.8rem;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}

.h-points li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.36rem;
}


/* ── Infrastructure row ── */

.infra-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-l);
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.infra-ico {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  background: var(--accent-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.infra-val {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.1;
}

.infra-lbl {
  font-size: 0.58rem;
  color: var(--text-ter);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════
   CONFIGURATOR CARD
   ══════════════════════════════════════ */

.cfg-wrap {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 2;
}


/* ── Currency selector ── */

.cur-line {
  text-align: right;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-ter);
  position: relative;
  min-height: 1rem;
  transition: all var(--ease-med);
}

.cur-line.dm {
  color: var(--dark-tt);
}

.cur-line.hide {
  opacity: 0;
  pointer-events: none;
}

.cur-link {
  color: var(--text-sec);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.15);
  text-underline-offset: 2px;
  position: relative;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
}

.cur-link:hover {
  text-decoration-color: currentColor;
}

.cur-line.dm .cur-link {
  color: var(--dark-ts);
}

.cur-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: all 0.2s ease;
  min-width: 100px;
  z-index: 50;
}

.cur-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.co {
  padding: 0.38rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-sec);
  cursor: pointer;
  transition: background var(--ease);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.co:hover {
  background: var(--bg-left);
}

.co.active {
  font-weight: 600;
  color: var(--text);
}


/* ── The card surface ── */

.cfg-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  box-shadow: var(--shadow);
  display: grid;
  transition: box-shadow 0.5s ease,
              border-color 0.5s ease;
}

/* Dark sweep overlay — reveals from bottom-right when going to custom state */
.cfg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  clip-path: circle(0% at 100% 100%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.15, 1);
}

.cfg-card.dark::after {
  clip-path: circle(150% at 100% 100%);
}

/* Ensure card content sits above the sweep when visible */
.cfg-card > .st-std,
.cfg-card > .st-cst {
  position: relative;
  z-index: 2;
}

/* Contact page card — subtler, wider feel */
.cfg-card--contact {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-l);
}

.cfg-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 10;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(58, 58, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-ter);
  transition: opacity var(--ease), background var(--ease);
  opacity: 0;
  pointer-events: none;
}

.cfg-close.vis {
  opacity: 1;
  pointer-events: auto;
}

.cfg-close:hover {
  background: rgba(58, 58, 58, 0.12);
}

.cfg-card.dark .cfg-close {
  background: rgba(255, 255, 255, 0.06);
  color: var(--dark-ts);
}

.cfg-card.dark .cfg-close:hover {
  background: rgba(255, 255, 255, 0.12);
}


/* ── Card content states — grid stacked ──
   All states sit in the same grid cell.
   The card sizes to whichever is active.
   Inactive states collapse to zero height. */

.cfg-card > .st-std,
.cfg-card > .st-cst {
  grid-row: 1;
  grid-column: 1;
  min-width: 0;
}

.st-std {
  opacity: 1;
  pointer-events: auto;
  max-height: 600px;
  transition: opacity 0.25s ease,
              max-height 0.35s cubic-bezier(0.4, 0, 0.15, 1);
}

.st-std.hid {
  opacity: 0;
  pointer-events: none;
}

/* Collapse height only after animation settles */
.st-std.hid.settled {
  max-height: 0;
  overflow: hidden;
}

.panels {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
}

.p-left {
  padding: 1.5rem 1.4rem;
  background: transparent;
  border-right: 1px solid var(--border-l);
}

.p-left-title {
  font-family: var(--font-d);
  font-size: 1.08rem;
  margin-bottom: 0.08rem;
}

.p-left-desc {
  font-size: 0.72rem;
  color: var(--text-ter);
  margin-bottom: 1rem;
}

.lbl {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ter);
  margin-bottom: 0.35rem;
  display: block;
}


/* ── Location cards ── */

.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.loc-c {
  border: 1.5px solid var(--border-l);
  border-radius: var(--r-md);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.loc-c:hover {
  border-color: var(--border);
}

.loc-c.active {
  border-color: var(--accent);
  background: var(--accent-sub);
}

.lf {
  font-size: 1.05rem;
  flex-shrink: 0;
}

.lt {
  display: flex;
  flex-direction: column;
}

.ln {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
}

.ld {
  font-size: 0.62rem;
  color: var(--text-ter);
}

.lk {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  font-size: 0;
  color: #fff;
}

.loc-c.active .lk {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.44rem;
}

.loc-note {
  font-size: 0.62rem;
  color: var(--text-ter);
  min-height: 1rem;
  padding: 0.08rem 0;
}


/* ── Storage expander ── */

.stor-sec {
  border-top: 1px solid var(--border-l);
  margin-top: 0.15rem;
}

.stor-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  cursor: pointer;
  user-select: none;
}

.stor-main {
  font-size: 0.76rem;
  font-weight: 500;
}

.stor-sub {
  font-size: 0.62rem;
  color: var(--text-ter);
}

.stor-chev {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-left);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  color: var(--text-ter);
  transition: all var(--ease);
  border: 1px solid var(--border-l);
}

.stor-sec.open .stor-chev {
  transform: rotate(180deg);
  background: var(--accent-sub);
  color: var(--accent);
  border-color: var(--accent-sub);
}

.stor-exp {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  opacity: 0;
}

.stor-sec.open .stor-exp {
  max-height: 80px;
  opacity: 1;
}

.stor-sl-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.4rem;
}

.stor-sl {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}

.stor-sl::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2.5px solid var(--bg-card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.stor-sl::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2.5px solid var(--bg-card);
}

.stor-val {
  font-size: 0.78rem;
  font-weight: 600;
  min-width: 40px;
  text-align: right;
}

.stor-note {
  font-size: 0.6rem;
  color: var(--text-ter);
  margin-top: 0.1rem;
}


/* ── Price panel (right) ── */

.p-right {
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
}

.p-right-in {
  padding: 1.5rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pr-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}

.pr-hero {
  display: flex;
  align-items: baseline;
}

.pr-cur {
  font-size: 1.05rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.45rem;
  margin-right: 0.02rem;
}

.pr-amt {
  font-family: var(--font-d);
  font-size: 2.8rem;
  line-height: 1;
  transition: all 0.15s ease;
  letter-spacing: -0.02em;
}

.pr-amt.upd {
  opacity: 0.3;
  transform: translateY(-2px);
}

.pr-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.1rem;
}

.pr-pill-btn {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-ter);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-l);
  border-radius: 100px;
  padding: 0.15rem 0.55rem 0.15rem 0.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: all var(--ease);
  line-height: 1.3;
}

.pr-pill-btn:hover {
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.05);
}

.pr-pill-btn .pchev {
  font-size: 0.38rem;
  color: var(--text-ter);
  transition: transform var(--ease);
}

.pr-pill.open .pchev {
  transform: rotate(180deg);
}

.pr-pill-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: all 0.2s ease;
  min-width: 110px;
  z-index: 50;
}

.pr-pill.open .pr-pill-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.pr-pill-o {
  padding: 0.4rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-sec);
  cursor: pointer;
  transition: background var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  border: none;
  background: none;
  width: 100%;
}

.pr-pill-o:hover {
  background: var(--bg-left);
}

.pr-pill-o.active {
  color: var(--text);
  font-weight: 600;
}

.pr-sub {
  font-size: 0.66rem;
  color: var(--text-ter);
  margin-top: 0.18rem;
  min-height: 0.8rem;
  line-height: 1.3;
}

.bsv {
  font-size: 0.6rem;
  color: var(--green);
  background: var(--green-sub);
  padding: 0.08rem 0.35rem;
  border-radius: 100px;
  font-weight: 500;
}


/* ── Included list ── */

.inc-list {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border-l);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.5rem;
  flex: 1;
}

.inc-list li {
  font-size: 0.7rem;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.inc-list .ic {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 700;
}


/* ── CTA area ── */

.p-right-cta {
  padding: 0 1.4rem 1.4rem;
}

.btn-go {
  width: 100%;
  padding: 0.65rem;
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  background: var(--accent);
}

.btn-go:hover {
  background: var(--accent-l);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(39, 98, 132, 0.2);
}

.fn {
  text-align: center;
  font-size: 0.62rem;
  color: var(--text-ter);
  margin-top: 0.3rem;
}


/* ══════════════════════════════════════
   CUSTOM STATE (dark card)
   ══════════════════════════════════════ */

.st-cst {
  opacity: 0;
  pointer-events: none;
  max-height: 600px;
  transition: opacity 0.25s ease,
              max-height 0.35s cubic-bezier(0.4, 0, 0.15, 1);
}

/* Collapse height when settled (not mid-transition) */
.st-cst.settled {
  max-height: 0;
  overflow: hidden;
}

.st-cst.act {
  opacity: 1;
  pointer-events: auto;
  max-height: 600px;
  overflow: visible;
}

.cfg-card.dark {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--dark-bor);
}

.cst-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr;
  min-height: 100%;
}

.cst-l {
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cst-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--dark-t);
  margin-bottom: 0.05rem;
}

.cst-desc {
  font-size: 0.72rem;
  color: var(--dark-ts);
  margin-bottom: 0.85rem;
}

.cl {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-tt);
  margin-bottom: 0.3rem;
  display: block;
}

.cl-locs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.cl-loc {
  flex: 1;
  border: 1.5px solid var(--dark-bor);
  border-radius: var(--r-md);
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--dark-t);
}

.cl-loc:hover {
  border-color: var(--dark-tt);
}

.cl-loc.active {
  border-color: var(--dark-acc);
  background: rgba(77, 163, 204, 0.07);
}

.cl-loc .ln {
  color: var(--dark-t);
  font-size: 0.72rem;
}

.cl-loc .ld {
  color: var(--dark-tt);
  font-size: 0.56rem;
}

.cl-loc .lk {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  transform: none;
  border-color: var(--dark-bor);
  background: transparent;
}

.cl-loc.active .lk {
  background: var(--dark-acc);
  border-color: var(--dark-acc);
}

.cl-toggles {
  display: flex;
  background: var(--dark-card);
  border-radius: var(--r-sm);
  border: 1px solid var(--dark-bor);
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.cl-to {
  flex: 1;
  padding: 0.48rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--dark-tt);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
  border-right: 1px solid var(--dark-bor);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
}

.cl-to:last-child {
  border-right: none;
}

.cl-to.active {
  background: rgba(77, 163, 204, 0.1);
  color: var(--dark-acc);
}

.cl-addons {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cl-ao {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--dark-bor);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--ease);
}

.cl-ao:hover {
  border-color: var(--dark-tt);
}

.cl-ao.chk {
  border-color: var(--dark-acc);
  background: rgba(77, 163, 204, 0.05);
}

.cl-aoc {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.5px solid var(--dark-bor);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: #fff;
  transition: all var(--ease);
}

.cl-ao.chk .cl-aoc {
  background: var(--dark-acc);
  border-color: var(--dark-acc);
  font-size: 0.48rem;
}

.cl-aon {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--dark-t);
}

.cl-aod {
  font-size: 0.6rem;
  color: var(--dark-tt);
}


/* ── Custom middle (extra fields) ── */

.cst-m {
  padding: 1.5rem 1.3rem;
  border-left: 1px solid var(--dark-bor);
  display: flex;
  flex-direction: column;
}

.cst-m .cl {
  margin-top: 0.3rem;
}

.cr-field {
  margin-bottom: 0.6rem;
}

.cr-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-tt);
  margin-bottom: 0.2rem;
}

.cr-field input,
.cr-field select {
  width: 100%;
  padding: 0.45rem 0.55rem;
  font-size: 0.74rem;
  border: 1px solid var(--dark-bor);
  border-radius: var(--r-sm);
  background: var(--dark-card);
  color: var(--dark-t);
  outline: none;
  transition: border-color var(--ease);
}

.cr-field input:focus,
.cr-field select:focus {
  border-color: var(--dark-acc);
}

.cr-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}


/* ── Custom summary (right col) ── */

.cst-r {
  padding: 1.5rem 1.3rem;
  border-left: 1px solid var(--dark-bor);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.cst-r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 40, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 0;
}

.cst-r > * {
  position: relative;
  z-index: 1;
}

.cr-title {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-tt);
  margin-bottom: 0.5rem;
}

.cr-sum {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
  flex: 1;
}

.cr-ln {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--dark-ts);
  padding: 0.14rem 0;
}

.cr-v {
  font-weight: 500;
  color: var(--dark-t);
}

.cr-div {
  height: 1px;
  background: var(--dark-bor);
  margin: 0.25rem 0;
}

.cr-note {
  font-size: 0.62rem;
  color: var(--dark-tt);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.btn-go.dark {
  background: var(--dark-acc);
}

.btn-go.dark:hover {
  background: #5bb5dd;
}


/* ══════════════════════════════════════
   CONTACT PAGE — Sidebar & Form
   ══════════════════════════════════════ */

/* ── Contact sidebar (left panel) ── */

.ct-sidebar-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-l);
}

.ct-sidebar-method {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.ct-sidebar-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ct-sidebar-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.05rem;
}

.ct-sidebar-value {
  font-size: 0.72rem;
  color: var(--text-sec);
  line-height: 1.3;
}

a.ct-sidebar-value {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(39, 98, 132, 0.3);
  text-underline-offset: 2px;
}

a.ct-sidebar-value:hover {
  text-decoration-color: currentColor;
}

.ct-sidebar-hours {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-l);
}

.ct-sidebar-hours h3 {
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.ct-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  font-size: 0.72rem;
  color: var(--text-sec);
}

.ct-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ct-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-sec);
}

.ct-trust-ico {
  font-size: 0.8rem;
}


/* ── Contact form card ── */

.ct-inner {
  padding: 2rem 2.2rem;
}

.ct-head {
  margin-bottom: 1.5rem;
}

.ct-head-title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.ct-head-desc {
  font-size: 0.84rem;
  color: var(--text-sec);
  line-height: 1.55;
  max-width: 420px;
}

.ct-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.7rem 1rem;
}

.ct-form-wrap .full {
  grid-column: 1 / -1;
}

.ct-form-wrap .span2 {
  grid-column: span 2;
}

.ct-form-wrap label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-ter);
  margin-bottom: 0.2rem;
}

.ct-form-wrap input,
.ct-form-wrap textarea,
.ct-form-wrap select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  border: 1.5px solid var(--border-l);
  border-radius: var(--r-sm);
  background: var(--bg-left);
  color: var(--text);
  outline: none;
  transition: all var(--ease);
}

.ct-form-wrap input:focus,
.ct-form-wrap textarea:focus,
.ct-form-wrap select:focus {
  border-color: var(--accent);
  background: #fff;
}

.ct-form-wrap textarea {
  resize: vertical;
  min-height: 70px;
}

.ct-form-wrap select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}


/* ── Customer toggle ── */

.ct-toggle-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  margin-bottom: 0.15rem;
}

.ct-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
  background: none;
}

.ct-toggle:hover {
  border-color: var(--border);
}

.ct-toggle.active {
  border-color: var(--accent);
  background: var(--accent-sub);
}

.ct-tgl-box {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: var(--bg-card);
  transition: all var(--ease);
  flex-shrink: 0;
}

.ct-toggle.active .ct-tgl-box {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.48rem;
}

.ct-tgl-text {
  font-size: 0.74rem;
  font-weight: 500;
}

.ct-extra {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.7rem 1rem;
}

.ct-extra.vis {
  display: grid;
}

.ct-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.3rem;
}

.ct-submit-row .btn-go {
  width: auto;
  padding: 0.65rem 2rem;
}

.ct-submit-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.66rem;
  color: var(--text-ter);
}

.ct-submit-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ct-sm-ico {
  font-size: 0.7rem;
}


/* ── Mini card (below configurator) ── */

.mini {
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  transition: opacity 0.2s ease,
              transform 0.25s cubic-bezier(0.4, 0, 0.15, 1),
              max-height 0.25s cubic-bezier(0.4, 0, 0.15, 1),
              margin-top 0.25s cubic-bezier(0.4, 0, 0.15, 1),
              padding 0.25s cubic-bezier(0.4, 0, 0.15, 1),
              border-color 0.2s ease,
              box-shadow 0.25s ease;
  margin-top: 0.6rem;
  max-height: 80px;
  box-shadow: var(--shadow);
}

.mini:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.mini h3 {
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 0.02rem;
}

.mini p {
  font-size: 0.66rem;
  color: var(--text-ter);
  line-height: 1.3;
}

.btn-mn {
  padding: 0.35rem 0.85rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-mn:hover {
  background: var(--text);
  color: var(--bg-left);
  border-color: var(--text);
}

.mini.hid {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: translateY(-10px);
}


/* ══════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════ */

.feat {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 3rem;
}

.feat-hdr {
  margin-bottom: 2.5rem;
}

.feat-hdr h2 {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.feat-hdr p {
  font-size: 0.95rem;
  color: var(--text-sec);
  max-width: 420px;
  font-weight: 300;
}

/* Feature grid — first two cards are "featured" (wider) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.fc {
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: var(--r-md);
  padding: 1.3rem;
  transition: all var(--ease);
  cursor: default;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
}

.fc:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  transform: translateY(-2px);
}

.fc.vis {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Featured cards — span wider, accent background hint */
.fc-featured {
  grid-column: span 1;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, #f0f6f9 100%);
  border-color: rgba(39, 98, 132, 0.12);
}

.fc-featured:hover {
  border-color: rgba(39, 98, 132, 0.25);
}

.fc-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.fc-featured .fc-ico {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent-sub) 0%, #c8e0ec 100%);
}

.fc h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.fc p {
  font-size: 0.75rem;
  color: var(--text-sec);
  line-height: 1.55;
}


/* ══════════════════════════════════════
   BOTTOM CTA — Two-column split
   Mirrors contact page layout so the
   right card can morph into the contact
   form card and the left into the panel.
   ══════════════════════════════════════ */

.cta-split {
  padding: 0 3rem 4.5rem;
}

.cta-split-inner {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
}

/* Left panel — stats/reasons */
.cta-left {
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  border-right: none;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.cta-left h2 {
  font-family: var(--font-d);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.cta-left-desc {
  font-size: 0.82rem;
  color: var(--text-sec);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  max-width: 320px;
  font-weight: 300;
}

.cta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-l);
}

.cta-stat {
  display: flex;
  flex-direction: column;
}

.cta-stat-val {
  font-family: var(--font-d);
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--accent);
}

.cta-stat-lbl {
  font-size: 0.64rem;
  color: var(--text-ter);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

.cta-left-points {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-left-points li {
  font-size: 0.78rem;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}

.cta-left-points li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.36rem;
}

/* Right panel — dark CTA card */
.cta-right {
  background: var(--dark);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  display: flex;
  align-items: center;
}

.cta-right-inner {
  padding: 2rem 2.2rem;
  width: 100%;
}

.cta-right h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-right > .cta-right-inner > p {
  color: var(--dark-ts);
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-right-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.9rem;
  margin-bottom: 1.4rem;
}

.cta-right-points li {
  font-size: 0.72rem;
  color: var(--dark-tt);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cta-right-points li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dark-acc);
}

.cta-right-btn {
  background: var(--dark-acc);
  max-width: 260px;
}

.cta-right-btn:hover {
  background: #5bb5dd;
}


/* ── Below fold visibility ── */

.below-fold {
  transition: opacity 0.35s ease, max-height 0.5s ease;
}

.below-fold.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}